/* ========================================
   YENİ KONFİGÜRATÖR - ANA STILLER
   3 Kutulu Layout: Sol (Seçimler) | Orta (Aktif Adım) | Sağ (Fiyat)
   Tema: Krem (#fef7ed) + Kırmızı (#dc3545)
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: auto;
}

/* Noktalı Arka Plan Animasyonu (Footer ile aynı) */
.konfigurator-wrapper {
    width: 100%;
    min-height: 100vh;
    background: #fef7ed;
    padding: 40px 0;
    position: relative;
    overflow-x: hidden;
}

.konfigurator-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #c41e3a 3px, transparent 3px);
    background-size: 60px 60px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

@keyframes dotMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

/* ========================================
   ÜST BAR - İlerleme + Navigasyon
   ======================================== */

.ust-bar {
    max-width: 1800px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.ilerleme-container {
    flex: 1;
}

.ilerleme-bar-wrapper {
    position: relative;
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    border: 3px solid rgba(220, 53, 69, 0.3);
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ilerleme-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #dc3545 0%, #ff4757 50%, #dc3545 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    border-radius: 30px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    min-width: 60px;
    box-shadow: 0 0 25px rgba(220, 53, 69, 0.6);
}

@keyframes gradientShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.ilerleme-yuzde {
    font-size: 16px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.ilerleme-adim-isim {
    display: none;
}

/* Navigasyon Butonları - Orta kutu içinde */
.orta-kutu .navigasyon-butonlar {
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
    padding: 0 20px;
    background: white;
    border-radius: 15px;
    justify-content: center;
}

.nav-btn {
    padding: 10px 18px;
    border: 2px solid #dc3545;
    background: white;
    color: #dc3545;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.1);
}

.nav-btn i {
    font-size: 14px;
}

.nav-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #dc3545 0%, #c41e3a 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.nav-btn:active:not(:disabled) {
    transform: translateY(0);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #999;
}

/* ========================================
   3 KUTULU CONTAINER
   ======================================== */

.konfigurator-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr 340px;
    gap: 20px;
    min-height: 650px;
    position: relative;
    z-index: 1;
}

/* ========================================
   SOL KUTU - Seçimler Özeti
   ======================================== */

.sol-kutu {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    border: 3px solid rgba(220, 53, 69, 0.25);
    padding: 25px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    height: fit-content;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.sol-kutu:hover {
    box-shadow: 0 15px 50px rgba(220, 53, 69, 0.2);
}

/* ========================================
   ORTA KUTU - Ana Seçim Alanı (GENİŞ)
   ======================================== */

.orta-kutu {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    border: 3px solid rgba(220, 53, 69, 0.25);
    padding: 35px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    min-height: 600px;
}

/* ========================================
   SAĞ KUTU - Fiyat Detayları
   ======================================== */

.sag-kutu {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    border: 3px solid rgba(220, 53, 69, 0.25);
    padding: 25px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    height: fit-content;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.sag-kutu:hover {
    box-shadow: 0 15px 50px rgba(220, 53, 69, 0.2);
}

/* ========================================
   KUTU BAŞLIKLARI
   ======================================== */

.kutu-baslik {
    font-size: 19px;
    font-weight: 800;
    color: #dc3545;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 3px solid rgba(220, 53, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kutu-baslik i {
    font-size: 22px;
}

/* Orta kutu başlığı - ortala */
.orta-kutu .kutu-baslik {
    justify-content: center;
    margin-bottom: 18px;
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
}

/* ========================================
   SEÇİM ÖZETİ (Sol Kutu İçeriği)
   ======================================== */

.secim-ozeti {
    font-size: 14px;
}

.bos-mesaj {
    text-align: center;
    color: #999;
    padding: 50px 15px;
}

.bos-mesaj i {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.4;
    color: #dc3545;
}

.bos-mesaj p {
    font-size: 14px;
    line-height: 1.6;
}

.secim-item {
    padding: 12px 15px;
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.08),
        rgba(220, 53, 69, 0.03)
    );
    border-radius: 12px;
    margin-bottom: 12px;
    border-left: 4px solid #dc3545;
    transition: all 0.3s ease;
    animation: slideIn 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.secim-item.secim-baslik {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-left: none;
    padding: 10px 15px;
    margin-top: 15px;
}

.secim-item.secim-baslik:first-child {
    margin-top: 0;
}

.secim-item.secim-baslik .secim-item-label {
    color: white;
    font-size: 13px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secim-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.15);
}

.secim-item.secim-baslik:hover {
    transform: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.secim-item-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.secim-item-value {
    font-weight: 700;
    color: #2d3748;
    font-size: 15px;
    flex: 1;
}

/* ========================================
   ADIM PANELLERİ
   ======================================== */

.adim-icerik {
    position: relative;
    min-height: 450px;
    overflow-x: hidden;
    overflow-y: visible;
    margin-top: 5px;
}

.adim-panel {
    display: none;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.adim-panel.aktif {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SEÇİM GRID
   ======================================== */

.secim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    overflow: visible;
    padding-top: 10px;
}

.secim-grid-buyuk {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.secim-grid-kucuk {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.secim-grid-kucuk .secim-kart {
    padding: 15px;
}

.secim-grid-kucuk .kart-resim {
    font-size: 36px;
    margin-bottom: 12px;
}

.secim-grid-kucuk .kart-resim img {
    height: 100px;
}

.secim-grid-kucuk .kart-baslik {
    font-size: 14px;
}

.secim-grid-kucuk .kart-fiyat {
    font-size: 16px;
    margin-top: 8px;
}

/* ========================================
   SEÇİM KARTLARI
   ======================================== */

.secim-kart {
    background: white;
    border: 3px solid rgba(220, 53, 69, 0.25);
    border-radius: 15px;
    padding: 30px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.secim-kart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(220, 53, 69, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.secim-kart:hover::before {
    left: 100%;
}

.secim-kart:hover {
    border-color: #dc3545;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.35);
    z-index: 10;
}

.secim-kart.secili {
    border-color: #dc3545;
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.12),
        rgba(220, 53, 69, 0.06)
    );
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.3);
    z-index: 5;
}

.secim-kart.secili::after {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.5);
    animation: checkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Disabled kart (Kale Fit gibi kısıtlamalı modeller için) */
.secim-kart-disabled {
    background: #f8f9fa !important;
    border: 3px solid #dee2e6 !important;
    cursor: not-allowed !important;
    position: relative;
}

.secim-kart-disabled:hover {
    border-color: #dc3545 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.2) !important;
}

.secim-kart-disabled::before {
    display: none !important;
}

/* İstemiyorum kartı özel stili */
.istemiyorum-kart {
    border: 2px dashed #999 !important;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%) !important;
}

.istemiyorum-kart:hover {
    border-color: #666 !important;
    transform: translateY(-3px) !important;
}

.istemiyorum-kart .no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 20px;
    color: #666;
}

.istemiyorum-kart .no-image-placeholder i {
    font-size: 60px;
    opacity: 0.5;
}

.istemiyorum-kart .no-image-placeholder span {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.kart-uyari-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #e05448 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.5);
    animation: pulseBadge 2s infinite;
    z-index: 10;
    border: 3px solid white;
}

@keyframes pulseBadge {
    0%,
    100% {
        transform: scale(1) !important;
        opacity: 1;
    }
    50% {
        transform: scale(1.1) !important;
        opacity: 0.8;
    }
}

@keyframes checkPop {
    0% {
        transform: scale(0) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

.kart-resim {
    font-size: 56px;
    color: #dc3545;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.secim-kart:hover .kart-resim {
    transform: scale(1.15);
}

.kart-resim img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.secim-kart:hover .kart-resim img {
    transform: scale(1.05);
}

.kart-baslik {
    font-size: 17px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kart-alt-baslik {
    font-size: 13px;
    font-weight: 600;
    color: #dc3545;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.kart-aciklama {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.kart-fiyat {
    font-size: 20px;
    font-weight: 800;
    color: #dc3545;
    margin-top: 12px;
}

.kart-fiyat-ucretsiz {
    font-size: 18px;
    font-weight: 800;
    color: #28a745;
    margin-top: 12px;
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.1),
        rgba(40, 167, 69, 0.05)
    );
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
}

/* Varyasyonlu fiyatlar için küçük font */
.kart-fiyat.fiyat-varyasyon {
    font-size: 16px;
}

/* ========================================
   YÜKLENİYOR DURUMU
   ======================================== */

.yuklenici {
    text-align: center;
    padding: 80px 20px;
    font-size: 17px;
    color: #999;
}

.yuklenici i {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
    color: #dc3545;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   FİYAT DETAYI (Sağ Kutu İçeriği)
   ======================================== */

.fiyat-detay {
    font-size: 15px;
}

.fiyat-bos-mesaj {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.fiyat-bos-mesaj i {
    font-size: 36px;
    display: block;
    margin-bottom: 15px;
    color: #dc3545;
    opacity: 0.4;
}

.fiyat-bos-mesaj p {
    font-size: 13px;
    line-height: 1.6;
}

.fiyat-grup-baslik {
    font-size: 14px;
    font-weight: 700;
    color: #dc3545;
    padding: 12px 0;
    margin-top: 15px;
    border-bottom: 2px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fiyat-grup-baslik:first-child {
    margin-top: 0;
}

.fiyat-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fiyat-satir:hover {
    background: rgba(220, 53, 69, 0.03);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.fiyat-label {
    color: #666;
    font-weight: 600;
    font-size: 14px;
}

.fiyat-deger {
    font-weight: 700;
    color: #2d3748;
    font-size: 14px;
    text-align: right;
}

.fiyat-toplam {
    margin-top: 25px;
    padding: 10px 10px 10px 10px;
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.15),
        rgba(220, 53, 69, 0.08)
    );
    border-radius: 15px;
    border: 3px solid rgba(220, 53, 69, 0.3);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.2);
}

.toplam-satir,
.indirim-satir,
.odenecek-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.toplam-label,
.indirim-label {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toplam-deger {
    font-size: 15px;
    font-weight: 700;
    color: #2d3748;
}

.indirim-satir {
    border-top: 1px solid rgba(220, 53, 69, 0.2);
    margin-top: 8px;
    padding-top: 12px;
}

.indirim-label {
    color: #28a745;
}

.indirim-deger {
    font-size: 15px;
    font-weight: 700;
    color: #28a745;
}

.odenecek-satir {
    border-top: 2px solid rgba(220, 53, 69, 0.4);
    margin-top: 12px;
    padding-top: 15px;
}

.odenecek-label {
    font-size: 15px;
    font-weight: 800;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.odenecek-deger {
    font-size: 15px;
    font-weight: 900;
    color: #dc3545;
}

.aksesuar-grup {
    border-left: 4px solid #dc3545;
    padding-left: 15px !important;
    background: rgba(220, 53, 69, 0.03);
}

.aksesuar-fiyatlar {
    margin-top: 8px;
}

.aksesuar-fiyat-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

/* ========================================
   AKSESUAR LİSTESİ
   ======================================== */

.aksesuar-liste {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.aksesuar-liste::-webkit-scrollbar {
    width: 8px;
}

.aksesuar-liste::-webkit-scrollbar-track {
    background: rgba(220, 53, 69, 0.1);
    border-radius: 10px;
}

.aksesuar-liste::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 10px;
}

.aksesuar-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: white;
    border: 3px solid rgba(220, 53, 69, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aksesuar-item:hover {
    border-color: #dc3545;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2);
}

.aksesuar-item.secili {
    border-color: #dc3545;
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.08),
        rgba(220, 53, 69, 0.03)
    );
}

.aksesuar-checkbox {
    width: 26px;
    height: 26px;
    cursor: pointer;
    accent-color: #dc3545;
}

.aksesuar-bilgi {
    flex: 1;
}

.aksesuar-baslik {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    font-size: 15px;
}

.aksesuar-aciklama {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.aksesuar-fiyat {
    font-weight: 800;
    color: #dc3545;
    font-size: 17px;
}

/* ========================================
   BUTONLAR
   ======================================== */

.devam-btn,
.tamamla-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #dc3545 0%, #c41e3a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.devam-btn:hover,
.tamamla-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
    background: linear-gradient(135deg, #c41e3a 0%, #a01628 100%);
}

.devam-btn:active,
.tamamla-btn:active {
    transform: translateY(-1px);
}

/* ========================================
   SON KONTROL
   ======================================== */

.son-kontrol {
    text-align: center;
    padding: 30px;
}

.son-kontrol h3 {
    color: #dc3545;
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: 900;
    text-transform: uppercase;
}

.son-kontrol h3 i {
    font-size: 32px;
    margin-right: 10px;
    color: #28a745;
}

.ozet-detay {
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.08),
        rgba(220, 53, 69, 0.03)
    );
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 35px;
    text-align: left;
    border: 3px solid rgba(220, 53, 69, 0.2);
}

.son-butonlar {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tekrar-btn {
    padding: 18px 35px;
    background: white;
    color: #dc3545;
    border: 3px solid #dc3545;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-transform: uppercase;
}

.tekrar-btn:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

/* ========================================
   RESPONSIVE TASARIM
   ======================================== */

@media (max-width: 1400px) {
    .konfigurator-container {
        grid-template-columns: 280px 1fr 340px;
        gap: 25px;
        padding: 0 30px;
    }

    .secim-grid-buyuk {
        grid-template-columns: repeat(2, 1fr);
    }

    .ust-bar {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .konfigurator-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .sol-kutu {
        position: static;
        order: 3;
    }

    .orta-kutu {
        order: 1;
    }

    .sag-kutu {
        position: static;
        order: 2;
    }

    .ust-bar {
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }

    .navigasyon-butonlar {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .konfigurator-wrapper {
        padding: 20px 0;
    }

    .ust-bar {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .ilerleme-container {
        width: 100%;
    }

    .ilerleme-bar-wrapper {
        height: 50px;
        width: 100%;
    }

    .ilerleme-bar {
        min-width: 70px;
        padding: 0 10px;
    }

    .ilerleme-yuzde {
        font-size: 15px;
    }

    .secim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .secim-grid-buyuk {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .secim-grid-kucuk {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .secim-kart {
        padding: 15px 0;
    }

    .kart-resim {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .kart-resim img {
        height: 120px;
    }

    .kart-baslik {
        font-size: 13px;
    }

    .kart-fiyat {
        font-size: 16px;
    }

    .kart-fiyat.fiyat-varyasyon {
        font-size: 13px;
    }

    .nav-btn {
        font-size: 11px;
        padding: 8px 14px;
    }

    .orta-kutu {
        padding: 20px;
        padding-top: 30px;
        min-height: auto;
    }

    .adim-icerik {
        min-height: auto;
        padding-top: 15px;
    }

    .kutu-baslik {
        font-size: 16px;
    }

    .orta-kutu .kutu-baslik {
        margin-bottom: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .toplam-deger {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .ust-bar {
        flex-direction: column;
        padding: 0 10px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .ilerleme-container {
        width: 100%;
    }

    .konfigurator-container {
        padding: 0 10px;
    }

    .orta-kutu {
        padding: 15px;
        padding-top: 25px;
    }

    .adim-icerik {
        padding-top: 10px;
    }

    .ilerleme-bar-wrapper {
        height: 45px;
        width: 100%;
        border-width: 2px;
    }

    .ilerleme-bar {
        min-width: 60px;
        padding: 0 8px;
    }

    .ilerleme-yuzde {
        font-size: 14px;
    }

    .kutu-baslik {
        font-size: 15px;
    }

    .orta-kutu .kutu-baslik {
        margin-bottom: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .secim-grid,
    .secim-grid-buyuk,
    .secim-grid-kucuk {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .secim-kart {
        padding: 12px 0;
    }

    .kart-resim {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .kart-resim img {
        height: 100px;
    }

    .kart-baslik {
        font-size: 12px;
    }

    .kart-fiyat {
        font-size: 14px;
    }

    .kart-fiyat.fiyat-varyasyon {
        font-size: 12px;
    }

    .son-butonlar {
        flex-direction: column;
    }
}

/* ========================================
   10. ADIM - BUTON HOVERLERİ
   ======================================== */
button[onclick='siparisOzetSayfasi()']:hover {
    background: #c82333 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4) !important;
}

button[onclick='direktPdfIndir()']:hover {
    background: #218838 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
}

button[onclick='siparisOzetSayfasi()']:active,
button[onclick='direktPdfIndir()']:active {
    transform: translateY(0);
}

/* ========================================
   SWEETALERT2 ÖZEL STİLLER
   ======================================== */

/* SweetAlert2 Özel Stil */
.swal-wide {
    max-width: 600px !important;
}

.swal2-popup {
    border-radius: 15px !important;
    font-family: 'Arial', sans-serif !important;
    margin: 0 15px !important;
    max-width: calc(100vw - 30px) !important;
    width: auto !important;
}

.swal2-title {
    font-size: 24px !important;
    color: #2c3e50 !important;
    line-height: 1.2 !important;
}

.swal2-html-container {
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 0 5px !important;
}

.swal2-confirm {
    background: linear-gradient(45deg, #e74c3c, #c0392b) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    padding: 12px 24px !important;
    min-width: 120px !important;
}

.swal2-cancel {
    background: linear-gradient(45deg, #27ae60, #229954) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: bold !important;
    padding: 12px 24px !important;
    min-width: 120px !important;
}

.swal2-actions {
    gap: 15px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .swal2-popup {
        margin: 0 10px !important;
        max-width: calc(100vw - 20px) !important;
        width: calc(100vw - 20px) !important;
        padding: 20px 15px !important;
    }

    .swal2-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .swal2-html-container {
        font-size: 14px !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
    }

    .swal2-confirm,
    .swal2-cancel {
        padding: 10px 16px !important;
        font-size: 14px !important;
        min-width: 100px !important;
        flex: 1 !important;
        max-width: 140px !important;
    }

    .swal2-actions {
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .swal-wide {
        max-width: calc(100vw - 20px) !important;
    }
}

/* Çok Küçük Ekranlar */
@media (max-width: 480px) {
    .swal2-popup {
        margin: 0 5px !important;
        max-width: calc(100vw - 10px) !important;
        width: calc(100vw - 10px) !important;
        padding: 15px 10px !important;
    }

    .swal2-title {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .swal2-html-container {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    .swal2-confirm,
    .swal2-cancel {
        padding: 8px 12px !important;
        font-size: 13px !important;
        min-width: 80px !important;
    }

    .swal2-actions {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .swal2-confirm,
    .swal2-cancel {
        width: 100% !important;
        max-width: none !important;
    }
}

/* ========================================
   MODERN ÇIKIŞ POPUP STİLLERİ
   ======================================== */

.modern-cikis-popup {
    background: #ffffff !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    padding: 30px !important;
    max-width: 420px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.modern-cikis-popup .swal2-title {
    color: #333 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}

.modern-cikis-popup .swal2-html-container {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.modern-confirm-btn {
    background: #856404 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin: 0 8px !important;
}

.modern-confirm-btn:hover {
    background: #6f5203 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(133, 100, 4, 0.4) !important;
}

.modern-cancel-btn {
    background: #ffc107 !important;
    color: #212529 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin: 0 8px !important;
}

.modern-cancel-btn:hover {
    background: #e0a800 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4) !important;
}

/* Uyarı ikonu renklendirmesi */
.modern-cikis-popup .swal2-icon.swal2-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}

.modern-cikis-popup .swal2-icon.swal2-warning .swal2-icon-content {
    color: #ffc107 !important;
    font-weight: bold !important;
    font-size: 48px !important;
}
