        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f9f9f9;
        }

        .Kapsayici {
            max-width: 75%;
            margin: 0 auto;
            padding: 30px;
            padding-bottom: 0;
            margin-bottom: 30px;
            width: 100%;
        }

        .SepetBaslik {
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 25px;
            color: #555;
        }

        .SepetSayi {
            font-size: 20px;
            color: #777;
            margin-left: 8px;
            font-weight: 500;
        }

        .SepetIcerik {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .SepetUrunler {
            flex: 5;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            padding: 20px 40px;
            min-height: 400px;
        }

        .SepetOzeti {
            flex: 2;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            padding: 35px;
            position: sticky;
            top: 20px;
            height: fit-content;
            min-height: auto;
            overflow: hidden;
        }

        .SepetUrun {
            display: flex;
            border-bottom: 1px solid #f0f0f0;
            padding: 20px 0;
            position: relative;
        }

        .SepetUrun:last-child {
            border-bottom: none;
        }

        .UrunResim {
            width: 120px;
            height: 120px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 25px;
            border: 1px solid #f0f0f0;
            background-color: #f9f9f9;
        }

        .UrunBilgi {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .UrunAd {
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 15px;
            color: #444;
            line-height: 1.4;
        }

        .UrunAd a {
            color: #444;
            text-decoration: none;
            transition: color 0.2s;
        }

        .UrunAd a:hover {
            color: #208FD4;
        }

        .UrunOzellikler {
            font-size: 13px;
            margin-bottom: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .UrunOzellik {
            display: inline-flex;
            align-items: center;
            background-color: #f5f8fa;
            border-radius: 6px;
            padding: 4px 10px;
            color: #666;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.2s;
        }

        .UrunOzellik:hover {
            background-color: #eef4f9;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
        }

        .UrunOzellik i {
            margin-right: 5px;
            color: #208FD4;
            font-size: 12px;
        }

        .UrunOzellik strong {
            margin-right: 5px;
            font-weight: 600;
            color: #208FD4;
        }

        .UrunAltBilgi {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .UrunAdet {
            display: flex;
            align-items: center;
        }

        .UrunFiyat {
            font-weight: 500;
            font-size: 17px;
            color: #208FD4;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .EskiFiyat {
            text-decoration: line-through;
            color: #aaa;
            font-size: 13px;
            margin-bottom: -3px;
            font-weight: normal;
        }

        .IndirimYuzde {
            display: none;
        }

        .AktifFiyat {
            display: none;
        }

        .AdetBtn {
            width: 30px;
            height: 30px;
            background-color: #f7f7f7;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            color: #666;
        }

        .AdetBtn.SilBtn {
            color: #d35d51;
        }

        .AdetBtn:hover {
            background-color: #f0f0f0;
        }

        .AdetBtn.SilBtn:hover {
            background-color: #fae9e8;
        }

        .AdetInput {
            width: 40px;
            height: 30px;
            border: 1px solid #eaeaea;
            margin: 0 5px;
            border-radius: 8px;
            text-align: center;
            color: #444;
        }

        .OzetBaslik {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 25px;
            color: #555;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 15px;
        }

        .OzetSatir {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .OzetEtiket {
            font-size: 15px;
            color: #777;
        }

        .OzetDeger {
            font-weight: 500;
            font-size: 15px;
            color: #444;
        }

        .OzetToplam {
            border-top: 1px solid #f0f0f0;
            padding-top: 15px;
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
            font-weight: 500;
            font-size: 18px;
            color: #555;
        }

        .PromosyonKodu {
            margin: 25px 0;
            overflow: hidden;
        }

        .PromosyonBaslik {
            font-size: 14px;
            margin-bottom: 10px;
            color: #777;
            display: flex;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .PromosyonBaslik i {
            margin-right: 8px;
            color: #777;
        }

        .PromosyonBaslik .fa-chevron-down {
            margin-left: auto;
            transition: transform 0.3s;
        }

        .PromosyonBaslik.active .fa-chevron-down {
            transform: rotate(180deg);
        }

        .PromosyonGiris {
            display: none;
            margin-top: 10px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .PromosyonGiris.active {
            display: flex;
            max-height: 45px;
            opacity: 1;
        }

        .PromosyonInput {
            flex: 1;
            padding: 12px;
            border: 1px solid #eaeaea;
            border-radius: 8px 0 0 8px;
            font-size: 14px;
            color: #555;
        }

        .PromosyonBtn {
            background-color: #208FD4;
            color: white;
            border: none;
            padding: 0 15px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: all 0.2s;
            font-weight: 500;
        }

        .PromosyonBtn:hover {
            background-color: #1a78b3;
        }

        .TamamlaBtn {
            width: 100%;
            padding: 15px;
            background-color: #208FD4;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 25px;
            letter-spacing: 0.5px;
        }

        .TamamlaBtn:hover {
            background-color: #1a78b3;
        }

        .SepetAltButonlar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }

        .BosBtn {
            text-align: center;
            padding: 12px;
            color: #208FD4;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }

        .BosBtn:hover {
            color: #1a78b3;
            text-decoration: underline;
        }

        .SepetiBosaltBtn {
            padding: 10px 20px;
            background-color: #f9f9f9;
            color: #d35d51;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }

        .SepetiBosaltBtn:hover {
            background-color: #fce8e6;
            color: #c53b2c;
        }

        .BosSepet {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 50px 0;
            text-align: center;
            height: 300px;
        }

        @media (max-width: 768px) {
            .SepetIcerik {
                flex-direction: column;
            }

            .SepetUrunler,
            .SepetOzeti {
                flex: 1 1 100%;
                padding: 20px;
            }

            .UrunResim {
                width: 80px;
                height: 80px;
            }

            .Kapsayici {
                padding: 15px;
                max-width: 100%;
            }

            .UrunAltBilgi {
                flex-direction: column;
                align-items: flex-start;
            }

            .UrunFiyat {
                margin-top: 12px;
                align-items: flex-start;
            }

            .SepetAltButonlar {
                flex-direction: column;
                gap: 15px;
            }

            .SepetiBosaltBtn {
                width: 100%;
            }

            .UrunAd {
                font-size: 14px;
            }

            .UrunOzellikler {
                flex-wrap: wrap;
                gap: 5px;
                margin-bottom: 15px;
            }

            .UrunOzellik {
                font-size: 12px;
                padding: 3px 8px;
            }

            .TamamlaBtn {
                padding: 12px;
                font-size: 15px;
            }

            .AdetBtn {
                width: 28px;
                height: 28px;
            }

            .AdetInput {
                width: 35px;
                height: 28px;
            }

            .OzetBaslik {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .OzetSatir,
            .OzetDeger,
            .OzetEtiket {
                font-size: 14px;
            }

            .OzetToplam {
                font-size: 16px;
            }
        }

        @media (max-width: 1366px) {
            .Kapsayici {
                max-width: 95%;
            }
        }

        @media (max-width: 992px) {
            .Kapsayici {
                max-width: 98%;
                padding: 20px;
            }

            .SepetUrunler,
            .SepetOzeti {
                padding: 25px;
            }
        }

        /* Ödeme Süreci Stilleri */
        .OdemeSureci {
            width: 100%;
            margin-top: -30px;
            max-width: 75%;
            margin-left: auto;
            margin-right: auto;
        }

        .OdemeSureciContainer {
            display: flex;
            gap: 30px;
        }

        .IlerlemeCubuguDisYapi {
            width: 280px;
            flex-shrink: 0;
        }

        .IlerlemeCubugu {
            display: flex;
            flex-direction: column;
            position: relative;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            padding: 25px 15px;
            position: sticky;
            top: 20px;
        }

        .IlerlemeCubugu::before {
            content: '';
            position: absolute;
            top: 40px;
            bottom: 40px;
            left: 30px;
            width: 2px;
            background-color: #e0e0e0;
            z-index: 1;
        }

        .IlerlemeAdim {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
            padding: 15px 0;
            transition: all 0.3s;
        }

        .AdimNumara {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            border: 2px solid #e0e0e0;
            color: #aaa;
            font-weight: 600;
            margin-right: 15px;
            transition: all 0.3s;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .AdimIcerik {
            text-align: left;
        }

        .AdimBaslik {
            font-size: 14px;
            color: #777;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 4px;
        }

        .AdimAciklama {
            font-size: 12px;
            color: #999;
            transition: all 0.3s;
        }

        .IlerlemeAktif {
            cursor: pointer;
        }

        .IlerlemeAktif .AdimNumara {
            background-color: #208FD4;
            border-color: #208FD4;
            color: white;
            box-shadow: 0 4px 10px rgba(32, 143, 212, 0.25);
        }

        .IlerlemeAktif .AdimBaslik {
            color: #208FD4;
            font-weight: 600;
        }

        .IlerlemeAktif .AdimAciklama {
            color: #777;
        }

        .IlerlemeTamamlandi .AdimNumara {
            background-color: #4CAF50;
            border-color: #4CAF50;
            color: white;
            box-shadow: 0 4px 10px rgba(76, 175, 80, 0.25);
        }

        .IlerlemeTamamlandi .AdimBaslik {
            color: #4CAF50;
            font-weight: 500;
        }

        .IlerlemeTamamlandi .AdimAciklama {
            color: #777;
        }

        .OdemeIcerikAlani {
            flex: 1;
        }

        /* Adres Seçimi Stilleri */
        .OdemeAdim {
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            padding: 35px 40px;
            margin-bottom: 30px;
        }

        .OzetBaslik {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 30px;
            color: #333;
            position: relative;
            padding-bottom: 16px;
        }

        .OzetBaslik:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #208FD4;
            border-radius: 3px;
        }

        .AdreslerListesi {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .AdresKutu {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
            position: relative;
            cursor: pointer;
        }

        .AdresKutu:hover {
            border-color: #b0b0b0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
            transform: translateY(-3px);
        }

        .AdresKutu.Secili {
            border-color: #208FD4;
            box-shadow: 0 10px 25px rgba(32, 143, 212, 0.15);
        }

        .AdresKutu.TeslimatSecili {
            border-color: #4CAF50;
            box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
        }

        .AdresKutu.FaturaSecili {
            border-color: #ff9800;
            box-shadow: 0 10px 25px rgba(255, 152, 0, 0.15);
        }

        .AdresKutu h3 {
            font-size: 17px;
            margin-bottom: 12px;
            color: #333;
        }

        .AdresKutu p {
            margin: 5px 0;
            color: #555;
            font-size: 14px;
            line-height: 1.5;
        }

        .FarkliAdresBtn {
            background-color: #f9fafc;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            padding: 12px 15px;
            margin-top: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 500;
            color: #555;
        }

        .FarkliAdresBtn i {
            margin-right: 8px;
            color: #ff9800;
        }

        .FarkliAdresBtn:hover {
            background-color: #f0f8ff;
            border-color: #d0e5f7;
            color: #208FD4;
        }

        .FarkliAdresBtn.Aktif {
            background-color: #fff3e0;
            border-color: #ffe0b2;
            color: #f57c00;
        }

        .FarkliAdresBtn.Aktif i {
            color: #f57c00;
        }

        .FaturaAdresleri {
            margin-top: 30px;
            display: none;
        }

        .FaturaAdresleri.Aktif {
            display: block;
        }

        .FaturaAdresBaslik {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #555;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }

        .FaturaAdresBaslik i {
            margin-right: 10px;
            color: #ff9800;
        }

        .YeniAdresKutu {
            background-color: #f8f9fa;
            border: 2px dashed #ddd;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 200px;
            text-align: center;
        }

        .YeniAdresKutu .AdresBilgi {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px 15px;
            flex: 1;
        }

        .YeniAdresKutu h3 {
            font-size: 18px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .YeniAdresKutu h3 i {
            margin-right: 10px;
            color: #208FD4;
            font-size: 22px;
        }

        .YeniAdresEkleBtn {
            background-color: #f1f1f1;
            border: none;
            padding: 15px;
            border-radius: 0 0 10px 10px;
            cursor: pointer;
            transition: all 0.3s;
            color: #555;
            font-weight: 500;
            width: 100%;
            font-size: 15px;
        }

        .YeniAdresEkleBtn:hover {
            background-color: #208FD4;
            color: white;
        }

        .YeniAdresForm {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        }

        .YeniAdresForm h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #333;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .FormSatir {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .FormGrup {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .KucukFormGrup {
            flex: 0.5;
        }

        .FormGrup label {
            margin-bottom: 10px;
            font-size: 14px;
            color: #555;
            font-weight: 500;
        }

        .FormGrup input,
        .FormGrup select,
        .FormGrup textarea {
            padding: 14px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.2s;
        }

        .FormGrup input:focus,
        .FormGrup select:focus,
        .FormGrup textarea:focus {
            outline: none;
            border-color: #208FD4;
            box-shadow: 0 0 0 3px rgba(32, 143, 212, 0.1);
        }

        .FormButonlar {
            display: flex;
            justify-content: flex-end;
            margin-top: 30px;
            gap: 15px;
        }

        .FormIptalBtn {
            background-color: #f5f5f5;
            color: #666;
            border: 1px solid #ddd;
            padding: 14px 24px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
            font-size: 15px;
        }

        .FormIptalBtn:hover {
            background-color: #e8e8e8;
        }

        .FormKaydetBtn {
            background-color: #208FD4;
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s;
            font-size: 15px;
        }

        .FormKaydetBtn:hover {
            background-color: #1a7dba;
            box-shadow: 0 5px 15px rgba(32, 143, 212, 0.2);
        }

        .AdresButonlar {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            gap: 20px;
        }

        .AdresButonlar .GeriBtn,
        .AdresButonlar .DevamBtn,
        .AdresButonlar .TamamlaBtn {
            flex: 0.35;
            padding: 16px 20px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            background-color: #f9f9f9;
            color: #555;
            border: 1px solid #e0e0e0;
            height: 61px;
            margin-top: 25px;
        }

        .AdresButonlar .GeriBtn {
            background-color: #f9f9f9;
            color: #555;
            border: 1px solid #e0e0e0;
        }

        .AdresButonlar .GeriBtn:hover {
            background-color: #f0f0f0;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
        }

        .AdresButonlar .GeriBtn i {
            margin-right: 10px;
        }

        .AdresButonlar .DevamBtn,
        .AdresButonlar .TamamlaBtn {
            flex: 0.65;
            padding: 16px 20px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            background-color: #208FD4;
            color: white;
            border: none;
            font-weight: 600;
            height: 61px;
        }

        .AdresButonlar .DevamBtn i {
            margin-left: 10px;
        }

        .AdresButonlar .TamamlaBtn i {
            margin-right: 10px;
        }

        .AdresButonlar .DevamBtn:hover,
        .AdresButonlar .TamamlaBtn:hover {
            background-color: #1a7dba;
            box-shadow: 0 5px 15px rgba(32, 143, 212, 0.2);
        }

        /* Düğmeler için temel stiller */
        .GeriBtn,
        .DevamBtn,
        .TamamlaBtn {
            cursor: pointer;
            transition: all 0.2s;
        }

        /* Eski buton stil sınıfı - kod tutarlılığı için korundu */

        /* Ödeme Yöntemleri Stilleri */
        .OdemeYontemleri {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 35px;
        }

        .OdemeYontemi {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            position: relative;
            cursor: pointer;
            margin-bottom: 15px;
        }

        .OdemeYontemi:hover {
            border-color: #d0d0d0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transform: translateY(-2px);
        }

        .OdemeYontemi.Secili {
            border-color: #208FD4;
            border-width: 2px;
            box-shadow: 0 8px 20px rgba(32, 143, 212, 0.15);
            background-color: #f0f8ff;
            transform: translateY(-3px);
        }

        .OdemeYontemi.Secili .YontemIkon {
            color: #208FD4;
        }

        .OdemeYontemi.Secili .YontemBilgi h3 {
            color: #208FD4;
            font-weight: 600;
        }

        .OdemeYontemi.Secili:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 15px;
            right: 15px;
            color: #208FD4;
            font-size: 18px;
            background-color: #e6f4ff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(32, 143, 212, 0.15);
        }

        .OdemeYontemiLabel {
            display: flex;
            padding: 25px;
            cursor: pointer;
            user-select: none;
            position: relative;
            width: 100%;
        }

        .OdemeYontemi input[type="radio"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .OdemeYontemiCheckmark {
            display: none;
        }

        .YontemIkon {
            font-size: 24px;
            color: #208FD4;
            margin-right: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            width: 50px;
            justify-content: center;
        }

        .YontemBilgi {
            flex: 1;
        }

        .YontemBilgi h3 {
            font-size: 17px;
            margin-bottom: 8px;
            color: #333;
        }

        .YontemBilgi p {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        .OdemeDetay {
            padding: 0 25px 25px;
            border-top: 1px solid #f0f0f0;
            background-color: #f9fafc;
        }



        .BankaHesaplari {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .BankaHesap {
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            border: 1px solid #eaeaea;
        }

        .BankaHesap h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .BankaHesap h4:before {
            content: '\f19c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-right: 10px;
            color: #208FD4;
        }

        .BankaHesap p {
            margin: 8px 0;
            font-size: 14px;
            color: #555;
        }

        .HavaleNot {
            background-color: #e8f4fd;
            padding: 15px 20px;
            border-radius: 10px;
            font-size: 14px;
            color: #208FD4;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
        }

        .HavaleNot i {
            margin-right: 10px;
            font-size: 16px;
            margin-top: 2px;
        }

        /* Sipariş Onayı Stilleri */
        .SiparisOnayIcerik {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 35px;
        }

        .SiparisOnayBilgi {
            border: 1px solid #eaeaea;
            border-radius: 12px;
            padding: 25px;
            background-color: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        }

        .SiparisOnayBilgi h3 {
            font-size: 17px;
            margin-bottom: 20px;
            color: #333;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }

        .OnayAdres p,
        .OnayOdeme p {
            margin: 8px 0;
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }

        .OnayUrunler {
            display: flex;
            flex-direction: column;
        }

        .OnayUrun {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            font-size: 14px;
            color: #555;
            border-bottom: 1px solid #f0f0f0;
        }

        .OnayUrun:last-of-type {
            border-bottom: none;
        }

        .OnayAltToplam,
        .OnayKargo,
        .OnayToplam {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            font-size: 14px;
            border-top: 1px solid #f0f0f0;
        }

        .OnayToplam {
            font-weight: 600;
            color: #208FD4;
            font-size: 17px;
            padding-top: 15px;
        }

        .UcretsizKargo {
            color: #4CAF50;
            font-weight: 500;
        }

        .OnayCheckbox {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            padding: 12px 15px;
            background-color: #f9fafc;
            border-radius: 8px;
            border: 1px solid #eaeaea;
        }

        .OnayCheckbox input {
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .OnayCheckbox label {
            font-size: 14px;
            color: #444;
            line-height: 1.5;
        }

        .OnayCheckbox a {
            color: #208FD4;
            text-decoration: none;
            font-weight: 500;
        }

        .OnayCheckbox a:hover {
            text-decoration: underline;
        }

        .OnayError {
            border-color: #f44336;
            background-color: #ffebee;
        }

        .OnayError label {
            color: #d32f2f;
        }

        /* Sipariş Tamamlandı Stilleri */
        .SiparisTamamlandi {
            text-align: center;
            padding: 60px 30px;
        }

        .TamamlandiIkon {
            font-size: 90px;
            color: #4CAF50;
            margin-bottom: 25px;
        }

        .SiparisTamamlandi h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
        }

        .SiparisNo {
            font-size: 18px;
            color: #208FD4;
            margin-bottom: 25px;
            background-color: #f0f8ff;
            display: inline-block;
            padding: 12px 25px;
            border-radius: 10px;
        }

        .SiparisTesekkur {
            font-size: 16px;
            color: #555;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .SiparisTakip {
            background-color: #f9fafc;
            padding: 25px;
            border-radius: 15px;
            max-width: 600px;
            margin: 0 auto 40px;
            border: 1px solid #eaeaea;
            text-align: left;
        }

        .SiparisTakip h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #444;
            display: flex;
            align-items: center;
        }

        .SiparisTakip h3:before {
            content: '\f05a';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-right: 10px;
            color: #208FD4;
        }

        .SiparisTakip p {
            font-size: 15px;
            color: #555;
            line-height: 1.5;
        }

        .SiparisTakip a {
            color: #208FD4;
            text-decoration: none;
            font-weight: 500;
        }

        .SiparisTakip a:hover {
            text-decoration: underline;
        }

        .TamamlandiButonlar {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .AnasayfaBtn,
        .SiparislerimBtn {
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
        }

        .AnasayfaBtn i,
        .SiparislerimBtn i {
            margin-right: 8px;
        }

        .AnasayfaBtn {
            background-color: #f5f5f5;
            color: #555;
            border: 1px solid #ddd;
        }

        .SiparislerimBtn {
            background-color: #208FD4;
            color: white;
        }

        .AnasayfaBtn:hover {
            background-color: #e9e9e9;
        }

        .SiparislerimBtn:hover {
            background-color: #1a7dba;
            box-shadow: 0 5px 15px rgba(32, 143, 212, 0.2);
        }

        /* Responsive Düzenlemeler */
        @media (max-width: 992px) {
            .OdemeSureci {
                max-width: 98%;
            }

            .AdreslerListesi {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .OdemeSureciContainer {
                flex-direction: column;
            }

            .IlerlemeCubuguDisYapi {
                width: 100%;
                margin-bottom: 30px;
            }

            .IlerlemeCubugu {
                flex-direction: row;
                padding: 15px;
                overflow-x: auto;
            }

            .IlerlemeCubugu::before {
                top: auto;
                bottom: auto;
                left: 40px;
                right: 40px;
                width: auto;
                height: 2px;
                top: 25px;
            }

            .IlerlemeAdim {
                flex-direction: column;
                padding: 10px;
                width: 25%;
                min-width: 90px;
                align-items: center;
            }

            .AdimNumara {
                margin-right: 0;
                margin-bottom: 10px;
                width: 36px;
                height: 36px;
                font-size: 14px;
            }

            .AdimIcerik {
                text-align: center;
            }

            .AdimBaslik {
                font-size: 12px;
            }

            .AdimAciklama {
                display: none;
            }

            .AdreslerListesi,
            .SiparisOnayIcerik {
                grid-template-columns: 1fr;
            }

            .FormSatir {
                flex-direction: column;
                gap: 10px;
            }

            .OdemeYontemiLabel {
                flex-direction: column;
                padding: 20px;
            }

            .YontemIkon {
                margin-bottom: 15px;
                margin-right: 0;
                width: auto;
            }

            .TamamlandiButonlar {
                flex-direction: column;
            }

            .OdemeAdim {
                padding: 25px 20px;
            }

            .AdresTuruSecim {
                flex-direction: column;
                gap: 10px;
            }

            .AdresTuruBox {
                padding: 10px;
            }

            .AdresSecim {
                padding-top: 12px;
            }

            .AdresKutu {
                padding: 20px;
            }

            .AdresButonlar {
                flex-direction: column;
                gap: 15px;
            }

            .AdresButonlar .GeriBtn,
            .AdresButonlar .DevamBtn,
            .AdresButonlar .TamamlaBtn {
                width: 100%;
                padding: 15px;
                font-size: 15px;
            }
        }

        @media (max-width: 576px) {
            .AdresTuruBox label {
                font-size: 13px;
            }

            .OzetBaslik {
                font-size: 18px;
            }

            .AdresKutu h3 {
                font-size: 16px;
            }

            .AdresKutu p {
                font-size: 13px;
            }

            .OnayAdres p,
            .OnayFatura p,
            .OnayOdeme p,
            .OnayUrun {
                font-size: 13px;
            }
        }

        /* Bildirim Sistemi */
        .Bildirim {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            padding: 20px;
            z-index: 1000;
            max-width: 350px;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
        }

        .Bildirim.Goster {
            transform: translateY(0);
            opacity: 1;
        }

        .Bildirim.Basarili {
            border-left: 5px solid #4CAF50;
        }

        .Bildirim.Hata {
            border-left: 5px solid #f44336;
        }

        .Bildirim.Uyari {
            border-left: 5px solid #ff9800;
        }

        .Bildirim.Bilgi {
            border-left: 5px solid #2196F3;
        }

        .BildirimIkon {
            margin-right: 15px;
            font-size: 24px;
            flex-shrink: 0;
        }

        .Bildirim.Basarili .BildirimIkon {
            color: #4CAF50;
        }

        .Bildirim.Hata .BildirimIkon {
            color: #f44336;
        }

        .Bildirim.Uyari .BildirimIkon {
            color: #ff9800;
        }

        .Bildirim.Bilgi .BildirimIkon {
            color: #2196F3;
        }

        .BildirimIcerik {
            flex: 1;
        }

        .BildirimBaslik {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }

        .BildirimMesaj {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        .BildirimKapat {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 16px;
            color: #aaa;
            cursor: pointer;
            transition: all 0.2s;
        }

        .BildirimKapat:hover {
            color: #666;
        }

        @media (max-width: 768px) {
            .Bildirim {
                bottom: 20px;
                right: 20px;
                left: 20px;
                max-width: none;
            }
        }