@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --iap-primary: #E31E24;
    --iap-primary-dark: #c91a1f;
    --iap-primary-darker: #a8161a;
    --iap-primary-light: #ff4d4d;
    --iap-primary-glow: rgba(227,30,36,0.25);

    --iap-success: #16a34a;
    --iap-success-dark: #15803d;
    --iap-warning: #F59E0B;
    --iap-warning-dark: #D97706;
    --iap-info: #2563EB;
    --iap-info-dark: #1D4ED8;

    --iap-text-primary: #111;
    --iap-text-secondary: #374151;
    --iap-text-muted: #6B7280;
    --iap-text-light: #9CA3AF;

    --iap-bg-page: #fff;
    --iap-bg-card: #fff;
    --iap-bg-surface: #F9FAFB;

    --iap-border: #E5E7EB;
    --iap-border-light: #F3F4F6;
    --iap-border-dark: #D1D5DB;

    --iap-wizard-max-w: 680px;
    --iap-wizard-px: 16px;
    --iap-cta-h: 72px;

    --iap-radius-sm: 8px;
    --iap-radius-md: 12px;
    --iap-radius-lg: 16px;
    --iap-radius-xl: 20px;

    --iap-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --iap-shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --iap-shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --iap-shadow-cta: 0 -4px 20px rgba(0,0,0,0.08);

    --iap-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --iap-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --iap-duration-fast: 200ms;
    --iap-duration-normal: 300ms;

    --iap-z-stepper: 100;
    --iap-z-cta: 100;
    --iap-z-modal: 9999;
}

/* ============================================================
   INSTAGRAM İLAN VER — PREMIUM MOBILE-FIRST REDESIGN
   Brand: MotoPazar Red (#E31E24)
   ============================================================ */

/* ==================== STEPPER (Desktop) ==================== */
.iap-stepper {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.iap-stepper__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.iap-stepper__progress {
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 0;
}

.iap-stepper__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E31E24, #ff4d4d);
    border-radius: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.iap-stepper__steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.iap-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.iap-step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.3s ease;
}

.iap-step__num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.iap-step__label {
    letter-spacing: 0.3px;
}

.iap-step.active {
    color: #fff;
}

.iap-step.active::after {
    background: #E31E24;
}

.iap-step.active .iap-step__num {
    background: #E31E24;
    border-color: #E31E24;
    color: #fff;
    box-shadow: 0 0 12px rgba(227,30,36,0.4);
}

.iap-step.completed {
    color: rgba(255,255,255,0.7);
}

.iap-step.completed .iap-step__num {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.iap-step:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 991px) {
    .iap-stepper {
        display: none;
    }
}

/* ==================== MOBILE STEPPER ==================== */
.iap-mobile-stepper {
    background: #fff;
    border-bottom: 1px solid #E5E7EB;
    cursor: pointer;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.iap-mobile-stepper__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    position: relative;
}

.iap-mobile-stepper__info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
}

.iap-mobile-stepper__badge {
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    color: #fff;
    padding: 0.2rem 0.625rem;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.iap-mobile-stepper__title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.iap-mobile-stepper__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #F3F4F6;
}

.iap-mobile-stepper__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E31E24, #ff4d4d);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.iap-mobile-stepper__arrow {
    color: #9CA3AF;
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Mobile Stepper Modal */
.mobile-stepper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.mobile-stepper-modal.show {
    display: block;
    opacity: 1;
}

.mobile-stepper-modal .modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    max-height: 75vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.mobile-stepper-modal .modal-header {
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-stepper-modal .modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.btn-close-modal {
    background: #F3F4F6;
    border: none;
    font-size: 1.1rem;
    color: #6B7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    background: #E31E24;
    color: #fff;
}

.mobile-step-list {
    padding: 0.75rem 1rem 1rem;
}

.mobile-step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: #F9FAFB;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    border: 1.5px solid transparent;
}

.mobile-step-item.active {
    background: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 100%);
    color: #E31E24;
    border-color: rgba(227,30,36,0.2);
    font-weight: 600;
}

.mobile-step-item.completed {
    background: #F0FDF4;
    color: #166534;
    border-color: rgba(22,101,52,0.15);
}

.mobile-step-item .badge {
    background: #E5E7EB;
    color: #6B7280;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.mobile-step-item.active .badge {
    background: #E31E24;
    color: #fff;
}

.mobile-step-item.completed .badge {
    background: #16a34a;
    color: #fff;
}

.mobile-step-item__text {
    display: flex;
    align-items: center;
}

/* ==================== STEP HEADER ==================== */
.iap-step-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.iap-step-header__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E31E24 0%, #c91a1f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(227,30,36,0.25);
}

.iap-step-header__icon--success {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 12px rgba(22,163,74,0.25);
}

.iap-step-header--success {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #BBF7D0;
}

.iap-step-header__content {
    flex: 1;
    min-width: 0;
}

.iap-step-header__title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.iap-step-header__desc {
    font-size: 13.5px;
    color: #6B7280;
    margin: 0;
    line-height: 1.55;
}

.iap-step-header .photo-counter {
    font-size: 20px;
    font-weight: 700;
    color: #E31E24;
    flex-shrink: 0;
    align-self: center;
}

/* ==================== TRUST BAR ==================== */
.iap-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    flex-wrap: wrap;
}

.iap-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12.5px;
    font-weight: 600;
    color: #4B5563;
    white-space: nowrap;
}

.iap-trust-bar__item i {
    font-size: 15px;
    color: #E31E24;
}

/* ==================== INFO BANNER ==================== */
.iap-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-size: 13px;
    line-height: 1.6;
    color: #1E40AF;
}

.iap-info-banner--compact {
    margin-top: 0;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
}

.iap-info-banner--success {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #BBF7D0;
    color: #166534;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.iap-info-banner__icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.iap-info-banner__content {
    flex: 1;
}

.iap-info-banner__content strong {
    display: inline;
}

/* ================================================================ */
/* REV-081 — PAKET SEÇİMİ: stacked-mobile + 2/3-col adaptive grid    */
/* ================================================================ */
/* Namespace: mp-  (motopazar pricing)
   Plan onaylandı:
   - Mobile (≤767px): her zaman TEK SÜTUN stacked (carousel/swipe/dot YOK)
   - Tablet (768–1023px): 2 sütun
   - Desktop (≥1024px): 3 sütun, section max 1120px centered, N paket
     eklendiğinde auto-fit ile grid genişler.
   - Trust bar: mobilde 2×2 grid, desktopta yatay row.
   - Featured vurgu: subtle warm bg + daha derin shadow + dark badge +
     kırmızı dolgulu CTA. Kalın border SPAM YOK.
   - Motopazar kırmızısı: featured CTA default, trust icon, selected ring,
     focus outline, selected dot/step accent'leri.
   - Lacivert/navy yok. Dark slate (#0F172A) sadece text + badge.
   - Lighthouse reduced motion dostu.
*/

/* ---------- SECTION ---------- */
.mp-pricing {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 24px;
    padding: 0;
}

/* ---------- MOBILE CAROUSEL ARROWS ---------- */
/* Giren kullanıcı kaydırabileceğini ANINDA görsün diye sağ/sol mini oklar.
   Sadece mobilde (≤767px) görünür, tablet+ gizli. */
.mp-pricing__carousel {
    position: relative;
}
.mp-pricing__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #0F172A;
    box-shadow: 0 4px 14px rgba(15,23,42,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, background 0.2s;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    transform: translateY(-50%);
}
.mp-pricing__arrow svg { width: 18px; height: 18px; display: block; }
.mp-pricing__arrow:active { transform: translateY(-50%) scale(0.92); }
.mp-pricing__arrow--prev { left: 4px; }
.mp-pricing__arrow--next { right: 4px; }
.mp-pricing__arrow:disabled,
.mp-pricing__arrow[aria-disabled="true"] {
    opacity: 0.35;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(15,23,42,0.06);
}

/* ---------- TRUST BAR ---------- */
.mp-pricing__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;          /* mobile: 2×2 grid */
    gap: 8px;
    margin: 0 0 24px;
}
.mp-trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: #475569;
    box-shadow: 0 1px 2px rgba(15,23,42,0.03);
    white-space: nowrap;
    text-align: center;
    min-width: 0;              /* grid overflow koruması */
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mp-trust-pill:hover {
    border-color: #CBD5E1;
    box-shadow: 0 2px 6px rgba(15,23,42,0.06);
}
.mp-trust-pill i {
    font-size: 14px;
    color: #E31E24;          /* vurgu: Motopazar kırmızısı (kontrollü) */
    display: inline-flex;
    flex-shrink: 0;
}
.mp-trust-pill span {
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Desktop: 4 pill yatay row, ortalanmış */
@media (min-width: 768px) {
    .mp-pricing__trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 32px;
    }
    .mp-trust-pill {
        padding: 8px 14px;
    }
}

/* ---------- GRID ---------- */
/* REV-085: Mobilde komple carousel (yatay flex + scroll-snap).
   Tablet+ grid. Kart sırası JS tarafında: solda ucuz → ortada featured → sağda diğer. */
.mp-pricing__grid {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 18px 16px 20px;
    margin: 0 -16px;
    scrollbar-width: none;
    align-items: stretch;
}
.mp-pricing__grid::-webkit-scrollbar { display: none; }

/* Mobil kart: ekranın ~85%'i → bir sonraki kart hafif peek → carousel olduğu hemen belli */
.mp-pricing__grid > .mp-pkg {
    flex: 0 0 calc(100vw - 56px);
    min-width: 258px;
    max-width: 400px;
    scroll-snap-align: center;
}

/* Tablet (768-991px): 2 sütun grid, carousel iptal */
@media (min-width: 768px) {
    .mp-pricing__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        overflow: visible;
        scroll-snap-type: none;
        padding: 18px 2px 2px;
        margin: 0;
    }
    .mp-pricing__grid > .mp-pkg {
        flex: initial;
        max-width: none;
        min-width: 0;
    }
    /* Carousel arrow butonları tablet+ gizli */
    .mp-pricing__arrow { display: none !important; }
}

/* Desktop (992+): 3 sütun zorla */
@media (min-width: 992px) {
    .mp-pricing__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Büyük desktop (1280+): kartlar çok genişlemesin diye max-width centered */
@media (min-width: 1280px) {
    .mp-pricing__grid {
        max-width: 1120px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------- CARD (base) ---------- */
.mp-pkg {
    position: relative;
    display: flex;
    flex-direction: column;
    /* REV-084: Çok hafif sıcak beyaz — premium dokunuş, lüks his. */
    background: #FEFEFD;
    border: 1px solid #EAECEF;
    border-radius: 16px;
    /* REV-084: Padding hafif azaltıldı, kart kısaldı */
    padding: 22px 20px 20px;
    cursor: pointer;
    isolation: isolate;
    /* REV-084: Soft premium shadow — ağır değil, nazik elevation */
    box-shadow:
        0 1px 2px rgba(15,23,42,0.03),
        0 8px 24px rgba(15,23,42,0.05);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s;
    -webkit-tap-highlight-color: transparent;
}
@media (min-width: 768px) {
    .mp-pkg {
        /* REV-086: Desktop'ta kart çok uzundu — padding ve min-height sıkılaştırıldı */
        padding: 22px 22px 20px;
        border-radius: 18px;
        /* min-height kaldırıldı — kart içerik kadar uzasın, boş yer bırakmasın */
    }
}
.mp-pkg:hover {
    border-color: #D9E0E7;
    box-shadow:
        0 1px 3px rgba(15,23,42,0.04),
        0 16px 32px rgba(15,23,42,0.08);
}
@media (hover: hover) and (min-width: 768px) {
    .mp-pkg:hover { transform: translateY(-3px); }
}
.mp-pkg.is-selected {
    border-color: #E31E24;
    box-shadow:
        0 0 0 3px rgba(227,30,36,0.12),
        0 14px 30px rgba(15,23,42,0.08);
}

/* ---------- FEATURED (önerilen paket) ---------- */
/* REV-084: Düz hafif sıcak beyaz (gradient YOK), daha derin soft shadow + dark badge +
   kırmızı CTA. Kalın border spam yok. */
.mp-pkg.is-featured {
    background: #FAFAF8;
    border-color: #E5E7EB;
    box-shadow:
        0 2px 4px rgba(15,23,42,0.04),
        0 18px 44px rgba(15,23,42,0.10);
}
@media (hover: hover) and (min-width: 768px) {
    .mp-pkg.is-featured { transform: translateY(-6px); }
    .mp-pkg.is-featured:hover { transform: translateY(-9px); }
}
.mp-pkg.is-featured:hover {
    box-shadow:
        0 3px 6px rgba(15,23,42,0.06),
        0 24px 52px rgba(15,23,42,0.14);
}
.mp-pkg.is-featured.is-selected {
    border-color: #E31E24;
}

/* ---------- BADGE (önerilen) — REV-084: rafine, küçük, zarif ---------- */
.mp-pkg__badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;              /* 6px 14px → küçüldü */
    background: #0F172A;
    color: #ffffff;
    font-size: 9.5px;                /* 10.5 → 9.5 zarif */
    font-weight: 700;
    letter-spacing: 0.9px;           /* 1.2 → 0.9 daha sıkı premium */
    text-transform: uppercase;
    border-radius: 999px;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(15,23,42,0.12);  /* yumuşatıldı */
    white-space: nowrap;
}
.mp-pkg__badge-star {
    width: 10px;                     /* 12 → 10 */
    height: 10px;
    color: #F59E0B;
    flex-shrink: 0;
    display: inline-block;
}

/* ---------- HEAD (name + description) — REV-086: çok kompakt ---------- */
.mp-pkg__head {
    margin: 4px 0 12px;
}
.mp-pkg__name {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 5px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.mp-pkg__desc {
    font-size: 12.5px;
    color: #64748B;
    line-height: 1.45;
    margin: 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}
@media (min-width: 768px) {
    .mp-pkg__head { margin-bottom: 14px; }
    .mp-pkg__name { font-size: 21px; margin-bottom: 6px; }
    .mp-pkg__desc { font-size: 13px; line-height: 1.5; min-height: 39px; }
}

/* ---------- PRICE — REV-086: kart uzunluğunu azaltmak için daha sıkı ---------- */
.mp-pkg__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin: 0 0 14px;
    line-height: 1;
    min-height: 42px;
}
.mp-pkg__price-amount {
    font-size: 38px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 0.95;
    font-variant-numeric: tabular-nums;
}
.mp-pkg__price-currency {
    font-size: 19px;
    font-weight: 700;
    color: #64748B;
    margin-left: 4px;
}
.mp-pkg__price-period {
    font-size: 12px;
    font-weight: 500;
    color: #94A3B8;
    margin-left: 6px;
}
.mp-pkg__price-free {
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1;
}
@media (min-width: 768px) {
    .mp-pkg__price { margin-bottom: 16px; min-height: 46px; }
    .mp-pkg__price-amount { font-size: 42px; }
    .mp-pkg__price-currency { font-size: 20px; }
    .mp-pkg__price-period { font-size: 12.5px; }
    .mp-pkg__price-free { font-size: 28px; }
}

/* ---------- DIVIDER ---------- */
.mp-pkg__divider {
    height: 1px;
    background: #F1F5F9;
    margin: 0 0 12px;
    border: 0;
}
@media (min-width: 768px) {
    .mp-pkg__divider { margin-bottom: 14px; }
}

/* ---------- FEATURES — REV-086: çok sıkı satır, line-height düşük ---------- */
.mp-pkg__features {
    flex: 1 1 auto;
    margin-bottom: 16px;
}
.mp-pkg__features-title {
    font-size: 10.5px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.mp-pkg__features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;                         /* 10 → 8 */
}
.mp-pkg__features-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    color: #334155;
    line-height: 1.4;                 /* 1.45 → 1.4 */
    font-weight: 500;
    margin: 0;
}
@media (min-width: 768px) {
    .mp-pkg__features { margin-bottom: 18px; }
    .mp-pkg__features-list { gap: 9px; }
    .mp-pkg__features-list li { font-size: 13px; line-height: 1.4; }
}
.mp-pkg__check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: transform 0.2s ease, background 0.2s ease;
}
.mp-pkg__check svg {
    width: 10px;
    height: 10px;
    display: block;
}
@media (hover: hover) {
    .mp-pkg:hover .mp-pkg__check {
        transform: scale(1.08);
        background: rgba(15, 23, 42, 0.10);
    }
}
.mp-pkg.is-featured .mp-pkg__check {
    background: #0F172A;
    color: #ffffff;
}
.mp-pkg.is-free .mp-pkg__check {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

/* ---------- CTA — REV-084: kullanıcının verdiği renk sistemi
   - Secondary (default): beyaz + ince border, hover soft slate-50, lacivert dolgu YOK
   - Primary (featured/VIP): Motopazar kırmızı, premium ama gradient/glossy/neon YOK
   - Tüm butonlar aynı height/radius/tipografi (tutarlılık)
*/
.mp-pkg__cta {
    width: 100%;
    /* Tutarlı tipografi + boyut (tüm varyantlar aynı) */
    padding: 13px 18px;
    min-height: 48px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.1px;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;

    /* Secondary default state */
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid #D9E0E7;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
@media (min-width: 768px) {
    .mp-pkg__cta {
        padding: 14px 20px;
        font-size: 15px;
        min-height: 50px;
    }
}
.mp-pkg__cta:hover {
    background: #F8FAFC;
    color: #0F172A;
    border-color: #BFC9D4;
}
.mp-pkg__cta:active {
    background: #F1F5F9;
    transform: scale(0.985);
}
.mp-pkg__cta:focus-visible {
    outline: none;
    box-shadow:
        0 1px 2px rgba(15,23,42,0.04),
        0 0 0 3px rgba(227,30,36,0.22);
}
.mp-pkg__cta-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.85;
}
.mp-pkg__cta:hover .mp-pkg__cta-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Primary CTA (Featured/VIP): dolgun Motopazar kırmızı */
.mp-pkg.is-featured .mp-pkg__cta {
    background: #E31E24;
    color: #FFFFFF;
    border: 1px solid #E31E24;
    box-shadow: 0 2px 6px rgba(227,30,36,0.14);
}
.mp-pkg.is-featured .mp-pkg__cta:hover {
    background: #C81A1F;
    border-color: #C81A1F;
    color: #FFFFFF;
    box-shadow: 0 6px 18px rgba(227,30,36,0.26);
}
.mp-pkg.is-featured .mp-pkg__cta:active {
    background: #B3171C;
    border-color: #B3171C;
}
.mp-pkg.is-featured .mp-pkg__cta:focus-visible {
    box-shadow:
        0 2px 6px rgba(227,30,36,0.14),
        0 0 0 3px rgba(227,30,36,0.22);
}

/* Free paket CTA — secondary default ile aynı (özel yeşil YOK; tutarlılık) */
/* İstenirse yeşil aksan hover'da gösterilebilir ama bu şimdilik kapalı. */

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .mp-pkg,
    .mp-pkg__cta,
    .mp-pkg__cta-arrow,
    .mp-pkg__check,
    .mp-trust-pill { transition: none !important; }
    .mp-pkg:hover,
    .mp-pkg.is-featured,
    .mp-pkg.is-featured:hover { transform: none !important; }
}

/* ================================================================ */
/* END REV-081 — PAKET SEÇİMİ                                       */
/* ================================================================ */

/* ==================== FORM GENEL ==================== */
.form-section {
    max-width: var(--iap-wizard-max-w);
    margin: 0 auto;
    padding: 1.5rem var(--iap-wizard-px) 0;
    padding-bottom: calc(var(--iap-cta-h) + 24px);
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
    row-gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 8px 0;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background-color: #F9FAFB;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    font-family: var(--iap-font);
    font-size: 16px;
    color: #111;
    transition: all 0.2s;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--iap-primary);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
    outline: none;
}

.form-control:disabled {
    background: #F3F4F6;
    border-color: #D1D5DB;
    color: #9CA3AF;
}

.form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.input-group .form-control {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.input-group .form-control:focus {
    z-index: 2;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background-color: #F3F4F6;
    border: 1.5px solid #E5E7EB;
    border-left: 1px solid #E5E7EB;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    transition: all 0.2s;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #E31E24;
    border-left-color: #E5E7EB;
}

#ad_price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
}

#ad_price::placeholder {
    font-weight: 400;
    color: #9CA3AF;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    cursor: pointer;
}

textarea.form-control {
    height: auto;
    min-height: 140px;
    padding: 1rem;
    resize: vertical;
}

.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.btn-submit {
    background: linear-gradient(135deg, #E31E24 0%, #c91a1f 100%);
    color: white;
    border: none;
    padding: 0.875rem 3rem;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(227,30,36,0.25);
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #c91a1f 0%, #a8161a 100%);
    box-shadow: 0 6px 24px rgba(227,30,36,0.35);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(227,30,36,0.2);
}

/* ==================== SEGMENTED CARDS (Step 2 - İlan Tipi) ==================== */
.iap-segmented-cards {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    grid-column: 1 / -1;
}

.iap-segmented-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    cursor: pointer;
    transition: all 0.25s var(--iap-ease);
    min-height: 56px;
}

.iap-segmented-card:hover {
    border-color: #D1D5DB;
    box-shadow: var(--iap-shadow-sm);
}

.iap-segmented-card.active {
    border-color: var(--iap-primary);
    background: #FFF5F5;
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}

.iap-segmented-card__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #D1D5DB;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.iap-segmented-card.active .iap-segmented-card__radio {
    border-color: var(--iap-primary);
    background: var(--iap-primary);
}

.iap-segmented-card.active .iap-segmented-card__radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.iap-segmented-card__text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.iap-segmented-card.active .iap-segmented-card__text {
    color: var(--iap-primary);
}

/* ==================== TRUST CARD (Step 3) ==================== */
.iap-trust-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: var(--iap-radius-md);
    border-left: 3px solid #2563EB;
    background: #EFF6FF;
    margin-bottom: 1.5rem;
}

.iap-trust-card--green {
    border-left-color: #16a34a;
    background: #F0FDF4;
}

.iap-trust-card--amber {
    border-left-color: #F59E0B;
    background: #FFFBEB;
}

.iap-trust-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563EB;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.iap-trust-card--green .iap-trust-card__icon {
    background: #16a34a;
}

.iap-trust-card--amber .iap-trust-card__icon {
    background: #F59E0B;
}

.iap-trust-card__content {
    flex: 1;
}

.iap-trust-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #1E40AF;
    margin: 0 0 0.2rem 0;
}

.iap-trust-card--green .iap-trust-card__title {
    color: #166534;
}

.iap-trust-card--amber .iap-trust-card__title {
    color: #92400E;
}

.iap-trust-card__desc {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* ==================== PROGRESSIVE DISCLOSURE ==================== */
@keyframes iapSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==================== CTA MINI SUMMARY ==================== */
.iap-cta-bar__summary {
    display: none;
    align-items: center;
    gap: 8px;
    margin-right: auto;
    min-width: 0;
}

.iap-cta-bar__summary.visible {
    display: flex;
}

.iap-cta-bar__summary-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--iap-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.iap-cta-bar__summary-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--iap-primary);
    white-space: nowrap;
}

/* ==================== PREMIUM INPUT (Refinement) ==================== */
.form-control.premium-input,
.premium-input .form-control {
    height: 48px;
    border: 1.5px solid var(--iap-border);
    border-radius: var(--iap-radius-md);
    font-size: 16px;
    background: var(--iap-bg-surface);
    transition: all 0.2s ease;
}

.form-control.premium-input:focus,
.premium-input .form-control:focus {
    border-color: var(--iap-primary);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
    background: #fff;
}

.form-control.premium-input:disabled,
.premium-input .form-control:disabled {
    background: #F3F4F6;
    border-color: #D1D5DB;
    color: #9CA3AF;
}

.premium-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

select.form-control.premium-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 14px;
    cursor: pointer;
}

textarea.form-control.premium-input {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

/* ==================== STEP 3: İLETİŞİM ==================== */
.input-with-icon-left {
    position: relative;
    width: 100%;
}

.input-with-icon-left i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    font-size: 1.1rem;
}

.input-with-icon-left input {
    padding-left: 3rem;
}

.phone-input-group {
    display: flex;
    gap: 0;
    position: relative;
}

.phone-prefix {
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    height: 48px;
    border: 1.5px solid #E5E7EB;
    border-right: none;
}

.phone-input-group input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex: 1;
}

/* ==================== STEP 4: EIDS KİMLİK DOĞRULAMA ==================== */

/* EIDS Pre-Verify Screen */
.eids-preverify {
    text-align: center;
    padding: 2rem 1rem;
}

.eids-preverify__shield {
    margin: 0 auto 1.25rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227,30,36,0.06);
    border-radius: 50%;
}

.eids-preverify__title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}

.eids-preverify__desc {
    font-size: 15px;
    color: #6B7280;
    margin: 0 0 0.25rem;
    line-height: 1.6;
}

.eids-preverify__note {
    font-size: 13px;
    color: #9CA3AF;
    margin: 1.25rem 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-edevlet-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #E31E24 0%, #c91a1f 100%);
    color: #fff;
    border: none;
    border-radius: var(--iap-radius-md);
    font-family: var(--iap-font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s var(--iap-ease);
    box-shadow: 0 4px 16px rgba(227,30,36,0.25);
}

.btn-edevlet-cta:hover {
    background: linear-gradient(135deg, #c91a1f 0%, #a8161a 100%);
    box-shadow: 0 6px 24px rgba(227,30,36,0.35);
    transform: translateY(-1px);
}

.btn-edevlet-cta:active {
    transform: scale(0.98);
}

/* EIDS Verification Success Block */
.eids-success-block {
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    border-radius: var(--iap-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--iap-shadow-sm);
}

.eids-success-block__check {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    animation: verifyCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes verifyCheckPop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.eids-success-block__title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 1.25rem;
}

.eids-success-block__info {
    background: rgba(255,255,255,0.7);
    border-radius: var(--iap-radius-md);
    padding: 1rem;
    max-width: 360px;
    margin: 0 auto;
}

.eids-success-block__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 14px;
}

.eids-success-block__row + .eids-success-block__row {
    border-top: 1px solid rgba(22,163,74,0.12);
}

.eids-success-block__label {
    color: #6B7280;
    display: flex;
    align-items: center;
}

.eids-success-block__value {
    font-weight: 600;
    color: #111;
}

/* REV-096: Plaka kapalıyken EIDS sonrası "Fotoğraflara Geç" butonu */
.eids-success-block__actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

/* REV-096: EIDS başarılı + plaka bölümü görünürken EIDS blok küçük bir başarı banner'a döner */
.eids-success-block--compact {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
    max-width: 100%;
    border-radius: var(--iap-radius-md);
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    margin-bottom: 1.5rem;
}

.eids-success-block--compact .eids-success-block__check {
    width: 32px;
    height: 32px;
    margin: 0;
    font-size: 18px;
    flex: 0 0 32px;
    animation: none;
}

.eids-success-block--compact .eids-success-block__title {
    font-size: 14px;
    margin: 0;
    flex: 0 0 auto;
    color: #15803d;
    white-space: nowrap;
}

.eids-success-block--compact .eids-success-block__info {
    background: transparent;
    padding: 0;
    margin: 0;
    max-width: none;
    flex: 1 1 auto;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.eids-success-block--compact .eids-success-block__row {
    padding: 0;
    font-size: 13px;
    border: none !important;
    gap: 0.35rem;
}

.eids-success-block--compact .eids-success-block__row + .eids-success-block__row {
    border-top: none;
}

.eids-success-block--compact .eids-success-block__label {
    font-size: 12px;
    color: #15803d;
}

.eids-success-block--compact .eids-success-block__label i {
    margin-right: 0.25rem !important;
}

.eids-success-block--compact .eids-success-block__value {
    font-size: 13px;
    color: #111;
}

.eids-success-block--compact .eids-success-block__actions {
    display: none !important;
}

/* Mobilde kompakt banner dikeye döner */
@media (max-width: 640px) {
    .eids-success-block--compact {
        flex-wrap: wrap;
        padding: 0.75rem;
    }
    .eids-success-block--compact .eids-success-block__title {
        font-size: 13px;
        white-space: normal;
    }
    .eids-success-block--compact .eids-success-block__info {
        width: 100%;
        justify-content: flex-start;
        gap: 0.75rem;
    }
}

/* ==================== STEP 5: PLAKA DOĞRULAMA ==================== */

.plate-verification-redesign {
    margin-bottom: 1rem;
}

/* Plate Input Section */
.plate-input-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plate-input-section__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}

.plate-input-section__help {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0.75rem 0 0;
}

/* Premium Plate Display */
.plate-premium-display {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #FFD000, #FFDC40);
    border: 3px solid #111;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.plate-premium-display .plate-text {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #111;
    text-transform: uppercase;
}

.plate-premium-display--success {
    border-color: #16a34a;
    background: linear-gradient(135deg, #BBF7D0, #86EFAC);
    margin-top: 1rem;
}

/* Plate Success Block */
.plate-success-block {
    text-align: center;
    padding: 1.5rem 1rem 0;
}

.plate-success-block__check {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    animation: verifyCheckPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.plate-success-block__title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}

/* Vehicle Info Cards (Premium Read-Only) */
.vehicle-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.vehicle-info-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: box-shadow 0.2s ease;
}

.vehicle-info-card:hover {
    box-shadow: var(--iap-shadow-sm);
}

.vehicle-info-card__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.vehicle-info-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.vehicle-info-card__label {
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}

.vehicle-info-card__value {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* İlan Süresi Banner */
.ilan-suresi-banner {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: var(--iap-radius-md);
    font-size: 14px;
    color: #92400E;
    margin-bottom: 1.5rem;
}

.ilan-suresi-banner strong {
    color: #78350F;
}

/* Trust Accordion */
.trust-accordion {
    border: 1px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.trust-accordion__item + .trust-accordion__item {
    border-top: 1px solid #E5E7EB;
}

.trust-accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: #F9FAFB;
    border: none;
    cursor: pointer;
    font-family: var(--iap-font);
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    transition: background 0.2s ease;
    text-align: left;
}

.trust-accordion__header:hover {
    background: #F3F4F6;
}

.trust-accordion__chevron {
    font-size: 14px;
    color: #9CA3AF;
    transition: transform 0.3s var(--iap-ease);
    flex-shrink: 0;
}

.trust-accordion__item.open .trust-accordion__chevron {
    transform: rotate(180deg);
}

.trust-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--iap-ease);
}

.trust-accordion__item.open .trust-accordion__body {
    max-height: 200px;
}

.trust-accordion__body p {
    padding: 0 1rem 0.875rem;
    margin: 0;
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
}

/* Plate Verify Button */
.btn-plate-verify {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    color: #fff;
    border: none;
    border-radius: var(--iap-radius-md);
    font-family: var(--iap-font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s var(--iap-ease);
    box-shadow: 0 4px 16px rgba(227,30,36,0.25);
}

.btn-plate-verify:hover {
    background: linear-gradient(135deg, #c91a1f, #a8161a);
    box-shadow: 0 6px 24px rgba(227,30,36,0.35);
    transform: translateY(-1px);
}

.btn-plate-verify:active {
    transform: scale(0.98);
}

/* ==================== STEP 5: FOTOĞRAF ==================== */

/* Photo Hints */
.photo-hints {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.photo-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    background: #F9FAFB;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #E5E7EB;
}

.photo-hint i {
    font-size: 11px;
    color: #E31E24;
}

/* Photo Counter Bar */
.photo-counter-bar {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.photo-counter {
    font-size: 14px;
    color: #E31E24;
    font-weight: 700;
}

/* Photo Empty State */
.photo-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    border: 2px dashed var(--iap-border);
    border-radius: var(--iap-radius-lg);
    background: var(--iap-bg-surface);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.photo-empty-state__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #FFF1F2, #FFE4E6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #E31E24;
}

.photo-empty-state__title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.5rem;
}

.photo-empty-state__desc {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.photo-empty-state__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    color: #fff;
    border: none;
    border-radius: var(--iap-radius-md);
    font-family: var(--iap-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--iap-ease);
    box-shadow: 0 4px 16px rgba(227,30,36,0.25);
}

.photo-empty-state__btn:hover {
    background: linear-gradient(135deg, #c91a1f, #a8161a);
    box-shadow: 0 6px 24px rgba(227,30,36,0.35);
    transform: translateY(-1px);
}

/* Photos Grid */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
}

.photo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1.5px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9FAFB;
    cursor: move;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
}

.photo-card:hover {
    transform: translateZ(0) scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.photo-card.showcase {
    border: 2px solid #E31E24;
}

/* Vitrin Badge */
.badge-vitrin {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    color: white;
    padding: 0.2rem 0.625rem;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.3px;
}

/* Photo Number Badge */
.photo-number-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.photo-card.showcase .photo-number-badge {
    display: none;
}

/* Delete Button */
.btn-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E31E24;
    cursor: pointer;
    z-index: 2;
    font-size: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-remove:hover {
    background: #E31E24;
    color: #fff;
}

/* Upload Card */
.photo-upload-card {
    border: 2px dashed var(--iap-border-dark);
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #FAFAFA;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: rgba(227,30,36,0.1);
    touch-action: manipulation;
}

.photo-upload-card:hover {
    background: #FFF1F2;
    border-color: #E31E24;
}

.photo-upload-card:active {
    transform: scale(0.97);
}

.upload-icon {
    width: 36px;
    height: 36px;
    border: 2px solid #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.375rem;
    color: #E31E24;
}

.photo-upload-card span {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}

/* Dragging State */
.photo-card.photo-chosen {
    box-shadow: var(--iap-shadow-lg) !important;
    transform: translateZ(0) scale(1.05) !important;
    opacity: 0.8;
}

/* ==================== STEP 6: ÖDEME ==================== */

/* Payment Trust Badges */
.payment-trust-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.payment-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    color: #4B5563;
}

.payment-trust-badge i {
    font-size: 13px;
    color: #16a34a;
}

.payment-trust-badge img {
    display: block;
}

/* Amount Banner */
.payment-amount-banner {
    background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
    border-radius: 14px;
    padding: 1.125rem 1.25rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.payment-amount-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.payment-amount-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-amount-left > i {
    font-size: 1.5rem;
    opacity: 0.6;
}

.payment-amount-left > div {
    display: flex;
    flex-direction: column;
}

.payment-amount-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.payment-amount-package {
    font-size: 14px;
    font-weight: 600;
}

.payment-amount-right {
    text-align: right;
}

.payment-amount-value {
    font-size: 26px;
    font-weight: 800;
    color: #FF6B6B;
    text-shadow: 0 1px 8px rgba(255,107,107,0.3);
}

/* Doping Section */
.doping-selection-section {
    background: var(--iap-bg-surface);
    border-radius: var(--iap-radius-lg);
    padding: 1.25rem;
    border: 1.5px solid var(--iap-border);
    margin-bottom: 1.25rem;
}

.doping-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doping-selection-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 15px;
    font-weight: 700;
    color: #111;
}

.doping-selection-title i {
    color: #E31E24;
    font-size: 1.1rem;
}

.doping-optional-badge {
    font-size: 10px;
    font-weight: 600;
    color: #6B7280;
    background: #E5E7EB;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.doping-selection-desc {
    font-size: 13px;
    color: #6B7280;
    margin: 0.75rem 0;
}

/* Doping Horizontal Cards (upsell) */
.doping-packages-grid {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.doping-package-item-insta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    cursor: pointer;
    transition: all 0.2s var(--iap-ease);
    min-height: 72px;
    position: relative;
}

.doping-package-item-insta:hover {
    border-color: #D1D5DB;
    box-shadow: var(--iap-shadow-sm);
}

.doping-package-item-insta.active {
    border-color: #E31E24;
    border-width: 2px;
    background: #FFF5F5;
    border-left: 3px solid #E31E24;
}

.doping-package-item-insta .doping-pkg-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.doping-package-item-insta .doping-pkg-icon i {
    font-size: 18px;
    color: white;
}

.doping-pkg-info {
    flex: 1;
    min-width: 0;
}

.doping-package-item-insta .doping-pkg-name {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

.doping-package-item-insta .doping-pkg-duration {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.doping-pkg-price-tag {
    font-size: 16px;
    font-weight: 800;
    color: #E31E24;
    white-space: nowrap;
    flex-shrink: 0;
}

.doping-package-item-insta .doping-badge {
    position: absolute;
    top: -1px;
    right: 12px;
    background: #F59E0B;
    color: #fff;
    padding: 2px 8px;
    border-radius: 0 0 6px 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.doping-package-item-insta.popular {
    border-color: #FDE68A;
}

/* Coupon Block */
.coupon-and-info-grid {
    margin-bottom: 1.25rem;
}

.coupon-input-row {
    display: flex;
    align-items: stretch;
}

.coupon-input-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.coupon-input-field i {
    position: absolute;
    left: 14px;
    color: #9CA3AF;
    font-size: 16px;
    z-index: 1;
}

.coupon-input-field input {
    width: 100%;
    height: 48px;
    padding: 0 1rem 0 42px;
    border: 1.5px solid #E5E7EB;
    border-right: none;
    border-radius: var(--iap-radius-md) 0 0 var(--iap-radius-md);
    font-family: var(--iap-font);
    font-size: 14px;
    color: #111;
    background: var(--iap-bg-surface);
    transition: all 0.2s;
}

.coupon-input-field input:focus {
    border-color: #E31E24;
    box-shadow: 0 0 0 3px rgba(227,30,36,0.08);
    outline: none;
    background: #fff;
}

.coupon-apply-btn {
    height: 48px;
    padding: 0 1.5rem;
    border: 2px solid #E31E24;
    border-radius: 0 var(--iap-radius-md) var(--iap-radius-md) 0;
    background: transparent;
    color: #E31E24;
    font-family: var(--iap-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.coupon-apply-btn:hover {
    background: #E31E24;
    color: #fff;
}

/* Coupon Applied State */
.coupon-applied-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.875rem 1rem;
    background: #F0FDF4;
    border: 1.5px solid #BBF7D0;
    border-radius: var(--iap-radius-md);
}

.coupon-applied-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coupon-applied-left > i {
    font-size: 1.25rem;
    color: #16a34a;
}

.coupon-applied-details {
    display: flex;
    flex-direction: column;
}

.coupon-applied-code {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.coupon-applied-type {
    font-size: 12px;
    color: #6B7280;
}

.coupon-applied-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coupon-applied-amount {
    font-size: 15px;
    font-weight: 700;
    color: #16a34a;
}

.coupon-remove-btn {
    background: none;
    border: none;
    color: #E31E24;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-family: var(--iap-font);
}

.coupon-remove-btn:hover {
    color: #c91a1f;
}

/* Payment Summary Card */
.iyzico-payment-summary-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--iap-radius-lg);
    overflow: hidden;
    box-shadow: var(--iap-shadow-sm);
    margin-bottom: 1.25rem;
}

.payment-summary-header {
    background: #F9FAFB;
    padding: 0.875rem 1.5rem;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    border-bottom: 1px solid #E5E7EB;
}

.payment-summary-body {
    padding: 1rem 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 14px;
    transition: all 0.3s var(--iap-ease);
}

.summary-row .summary-label {
    color: #6B7280;
    font-weight: 500;
}

.summary-row .summary-value {
    font-weight: 600;
    color: #111;
}

.summary-row .original-price-text {
    text-decoration: line-through;
    color: #9CA3AF;
    font-weight: 500;
}

.summary-row--doping .summary-label {
    font-size: 13px;
    color: #6B7280;
}

.summary-row--doping .summary-value {
    font-size: 13px;
    color: #6B7280;
}

.summary-row--discount .summary-value {
    color: #16a34a !important;
    font-size: 13px;
}

.summary-row.summary-total {
    border-top: 1px solid #E5E7EB;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

.summary-row.summary-total .summary-label {
    font-weight: 700;
    color: #111;
    font-size: 15px;
}

.summary-row.summary-total .summary-value {
    font-weight: 800;
    color: #E31E24;
    font-size: 20px;
}

/* Payment Method */
.payment-method-selection {
    margin-bottom: 1.25rem;
}

.payment-method-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.75rem;
}

.payment-method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
}

.payment-method-card {
    border: 2px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fff;
    position: relative;
}

.payment-method-card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.payment-method-card.selected {
    border-color: #E31E24;
    background: linear-gradient(135deg, #FFF5F5 0%, #fff 100%);
    box-shadow: 0 4px 16px rgba(227,30,36,0.12);
}

.payment-method-card-inner {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.payment-method-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    color: #fff;
    font-size: 1.3rem;
}

.payment-method-icon.icon-bank {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
}

.payment-method-info {
    flex: 1;
}

.payment-method-info h6 {
    font-size: 14px;
    margin-bottom: 2px;
}

.payment-method-info p {
    font-size: 12px;
}

.payment-method-check {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #D1D5DB;
    transition: color 0.2s ease;
}

.payment-method-card.selected .payment-method-check {
    color: #E31E24;
}

/* iyzico Compact Info */
.iyzico-info-compact {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    margin-bottom: 1.25rem;
}

.iyzico-info-compact img {
    flex-shrink: 0;
}

.iyzico-info-compact p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Bank Transfer Compact */
.bank-transfer-compact {
    margin-bottom: 1.25rem;
}

.bank-transfer-compact__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: var(--iap-radius-md) var(--iap-radius-md) 0 0;
    font-size: 13px;
    color: #1E40AF;
    font-weight: 500;
}

.bank-transfer-compact__header i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Terms Checkbox */
.terms-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--iap-radius-md);
    transition: border-color 0.2s;
    min-height: 44px;
}

.terms-checkbox-wrapper:hover {
    border-color: #D1D5DB;
}

.terms-checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.terms-checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.terms-checkbox-input:checked + .terms-checkbox-custom {
    background: #E31E24;
    border-color: #E31E24;
}

.terms-checkbox-input:checked + .terms-checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translateY(-1px);
}

.terms-checkbox-label {
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
    user-select: none;
}

.terms-link {
    color: #E31E24;
    font-weight: 600;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Payment CTA Buttons */
.btn-payment-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #E31E24 0%, #c91a1f 100%);
    color: white;
    border: none;
    border-radius: var(--iap-radius-md);
    font-family: var(--iap-font);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(227,30,36,0.3);
}

.btn-payment-cta:hover:not(:disabled) {
    background: linear-gradient(135deg, #c91a1f, #a8161a);
    box-shadow: 0 6px 24px rgba(227,30,36,0.4);
    transform: translateY(-1px);
}

.btn-payment-cta:active:not(:disabled) {
    transform: translateY(0);
}

.btn-payment-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-payment-cta .btn-price {
    background: rgba(255,255,255,0.2);
    padding: 0.2rem 0.625rem;
    border-radius: 6px;
    font-weight: 800;
    margin-left: 0.25rem;
}

.btn-payment-cta--bank {
    background: linear-gradient(135deg, #E31E24 0%, #c91a1f 100%);
}

.btn-payment-cta--free {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

.btn-payment-cta--free:hover:not(:disabled) {
    background: linear-gradient(135deg, #15803d, #166534);
    box-shadow: 0 6px 24px rgba(22,163,74,0.4);
}

.btn-payment-cta--loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Secure Badges */
.iyzico-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.875rem;
    font-size: 12px;
    color: #6B7280;
}

.bank-transfer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 0.875rem;
    font-size: 12px;
    color: #6B7280;
}

.bank-transfer-badge i {
    color: #16a34a;
}

/* Bank Account Cards */
.bank-account-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.bank-account-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.bank-account-header {
    background: linear-gradient(135deg, #1E3A5F, #2563EB);
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.bank-account-body {
    padding: 0.875rem 1rem;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-label {
    font-size: 12px;
    color: #6B7280;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.bank-value {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    text-align: right;
}

.bank-iban-value {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    font-size: 12px;
}

/* .btn-apply replaced by .coupon-apply-btn */

/* ==================== STEP 7: BAŞARI EKRANI (Premium) ==================== */

/* Success Hero */
.iap-success-hero {
    text-align: center;
    padding: 2rem 1rem 1.5rem;
}

.iap-success-hero__check {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--iap-success), var(--iap-success-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successCheckPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    box-shadow: 0 8px 24px rgba(22,163,74,0.3);
}

@keyframes successCheckPop {
    0%   { transform: scale(0); opacity: 0; }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.iap-success-hero__check-path {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: successCheckDraw 0.5s 0.4s ease forwards;
}

@keyframes successCheckDraw {
    to { stroke-dashoffset: 0; }
}

.iap-success-hero__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--iap-text-primary);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.iap-success-hero__subtitle {
    font-size: 14px;
    color: var(--iap-text-muted);
    margin: 0 0 0.75rem;
}

.iap-success-hero__ad-id-row {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--iap-bg-surface);
    border: 1.5px solid var(--iap-border);
    border-radius: var(--iap-radius-md);
    padding: 0.625rem 1rem;
}

.iap-success-hero__ad-id-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--iap-text-primary);
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}

/* Copy Ad ID */
.copy-ad-id-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--iap-font);
    border-radius: 6px;
    border: 1.5px solid var(--iap-border-dark);
    background: #fff;
    color: var(--iap-text-secondary);
    cursor: pointer;
    transition: all 0.2s var(--iap-ease);
    min-height: 32px;
}

.copy-ad-id-btn:hover {
    background: var(--iap-primary);
    border-color: var(--iap-primary);
    color: #fff;
}

.copy-ad-id-btn.copied {
    background: var(--iap-success);
    border-color: var(--iap-success);
    color: #fff;
    pointer-events: none;
}

.copy-ad-id-btn.copied .copy-ad-id-btn__label::after {
    content: 'Kopyalandı!';
}

/* Summary Card */
.iap-success-card {
    background: var(--iap-bg-card);
    border: 1px solid var(--iap-border);
    border-radius: var(--iap-radius-xl);
    overflow: hidden;
    box-shadow: var(--iap-shadow-md);
    display: grid;
    grid-template-columns: 5fr 7fr;
    margin-bottom: 1.5rem;
}

.iap-success-card__slider {
    position: relative;
    background: var(--iap-bg-surface);
    min-height: 400px;
    overflow: hidden;
}

.badge-vitrin-photo {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, var(--iap-primary), var(--iap-primary-dark));
    color: #fff;
    padding: 0.3rem 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    font-size: 11px;
    z-index: 5;
    letter-spacing: 0.3px;
}

.badge-instagram-photo {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #fff;
    color: #C13584;
    border: 1px solid #E1306C;
    padding: 0.3rem 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    font-size: 11px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.photo-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 100%;
    min-height: 400px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.photo-slider-container::-webkit-scrollbar { display: none; }

.photo-slider-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 100%;
    min-height: 400px;
}

.photo-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.summary-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s var(--iap-ease);
    color: #374151;
    font-size: 18px;
}

.summary-slider-arrow:hover {
    background: var(--iap-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(227,30,36,0.3);
}

.summary-slider-prev { left: 12px; }
.summary-slider-next { right: 12px; }

.summary-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0,0,0,0.35);
    padding: 6px 10px;
    border-radius: 16px;
}

.summary-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s var(--iap-ease);
}

.summary-slider-dot.active {
    background: #fff;
    width: 20px;
    border-radius: 4px;
}

/* Card Body */
.iap-success-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    max-height: none;
}

.iap-success-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--iap-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

/* Success Group */
.iap-success-group {
    border: 1px solid var(--iap-border-light);
    border-radius: var(--iap-radius-md);
    overflow: hidden;
}

.iap-success-group__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--iap-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1rem;
    margin: 0;
    background: var(--iap-bg-surface);
    border-bottom: 1px solid var(--iap-border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.iap-success-group__title i {
    font-size: 15px;
    color: var(--iap-primary);
}

.iap-success-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 1rem;
    font-size: 13.5px;
    transition: background 0.15s ease;
}

.iap-success-row:not(:last-child) {
    border-bottom: 1px solid var(--iap-border-light);
}

.iap-success-row:hover {
    background: rgba(0,0,0,0.01);
}

.iap-success-row__label {
    color: var(--iap-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.iap-success-row__label i {
    font-size: 13px;
    opacity: 0.7;
}

.iap-success-row__value {
    font-weight: 600;
    color: var(--iap-text-primary);
    text-align: right;
    min-width: 0;
    word-break: break-word;
    max-width: 60%;
}

.iap-success-row--total {
    background: var(--iap-bg-surface);
    border-top: 2px solid var(--iap-border) !important;
    padding: 0.75rem 1rem;
}

.iap-success-row--total .iap-success-row__label {
    font-weight: 700;
    color: var(--iap-text-primary);
    font-size: 14px;
}

.iap-success-row--total .iap-success-row__value {
    font-weight: 800;
    color: var(--iap-primary);
    font-size: 18px;
}

/* Payment group highlight */
.iap-success-group--payment {
    border-color: var(--iap-border);
}

/* Notice Banner */
.iap-success-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border: 1px solid #FDE68A;
    border-radius: var(--iap-radius-md);
    margin-bottom: 1.5rem;
    font-size: 13px;
    line-height: 1.6;
    color: #92400E;
}

.iap-success-notice__icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #D97706;
}

.iap-success-notice__content {
    flex: 1;
}

/* CTAs */
.iap-success-ctas {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.iap-success-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 200px;
    height: 48px;
    padding: 0 2rem;
    border-radius: var(--iap-radius-md);
    font-family: var(--iap-font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s var(--iap-ease);
    border: none;
}

.iap-success-cta--primary {
    background: linear-gradient(135deg, var(--iap-primary), var(--iap-primary-dark));
    color: #fff;
    box-shadow: 0 4px 16px var(--iap-primary-glow);
}

.iap-success-cta--primary:hover {
    background: linear-gradient(135deg, var(--iap-primary-dark), var(--iap-primary-darker));
    box-shadow: 0 6px 24px rgba(227,30,36,0.35);
    transform: translateY(-1px);
}

.iap-success-cta--primary:active {
    transform: scale(0.98);
}

.iap-success-cta--secondary {
    background: #fff;
    color: var(--iap-text-secondary);
    border: 1.5px solid var(--iap-border-dark);
}

.iap-success-cta--secondary:hover {
    background: var(--iap-bg-surface);
    border-color: var(--iap-text-muted);
}

.iap-success-cta--secondary:active {
    transform: scale(0.98);
}

/* ==================== DYNAMIC FIELDS ==================== */
#category-dropdowns-wrapper {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

#category-dropdowns-wrapper .category-dropdown-container[data-level="0"] {
    grid-column: 1 / -1;
}

.category-completion-message {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-completion-message.show {
    opacity: 1;
    transform: translateY(0);
}

.completion-card {
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    border: 2px solid #16a34a;
    border-radius: 10px;
    padding: 0 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    min-height: 48px;
    height: auto;
    box-shadow: 0 4px 12px rgba(22,163,74,0.15);
}

.completion-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-green 2s ease-in-out infinite;
}

.completion-icon i {
    font-size: 18px;
    color: white;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}

.completion-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.completion-title {
    font-size: 13px;
    color: #065F46;
    margin: 0;
    line-height: 1.3;
}

.completion-text {
    font-size: 11px;
    font-weight: 400;
    color: #047857;
    margin: 0;
}

#dynamic-fields-wrapper {
    display: contents;
}

#location-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Validation */
.form-control.is-invalid {
    border-color: #E31E24;
    background-color: #FFF5F5;
}

.form-control.is-invalid:focus {
    border-color: #E31E24;
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}

/* Checkbox & Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    cursor: pointer;
    margin: 0;
    transition: all 0.2s;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input:checked {
    background-color: #E31E24;
    border-color: #E31E24;
}

.form-check-label {
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    user-select: none;
    margin: 0;
}

.text-danger {
    color: #E31E24;
    margin-left: 2px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.5;
}

input[type="number"]:hover::-webkit-inner-spin-button,
input[type="number"]:hover::-webkit-outer-spin-button {
    opacity: 1;
}

/* ==================== KUPON (overrides moved to payment section) ==================== */
.applied-coupon-info {
    animation: fadeIn 0.4s ease;
}

/* ==================== DOPING (overrides moved to payment section) ==================== */

.doping-price-summary {
    background: white;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.doping-price-summary .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
}

.doping-price-summary .price-row:last-child {
    border-bottom: none;
}

.doping-price-summary .total-row {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    padding-top: 0.875rem;
    margin-top: 0.5rem;
    border-top: 2px solid #E5E7EB;
}

.doping-price-summary .total-row span:last-child {
    color: #E31E24;
}

/* ==================== WEB PAKETİ ==================== */
.web-package-section { margin-bottom: 1.25rem; }

.web-package-card {
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem 1.125rem;
}

.web-package-card.disabled { opacity: 0.6; }

.web-package-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.web-package-icon {
    width: 36px;
    height: 36px;
    background: #E31E24;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.web-package-title-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.web-package-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.web-package-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.web-package-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.875rem;
    padding-top: 0.625rem;
    border-top: 1px solid #F3F4F6;
}

.web-package-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.web-package-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6B7280;
}

.web-package-stats .stat-item i {
    font-size: 0.8rem;
    color: #E31E24;
}

.web-package-stats .stat-value {
    font-weight: 600;
    color: #111;
}

.web-package-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    flex-shrink: 0;
}

.btn-web-package {
    background: #E31E24;
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-web-package:hover { background: #c91a1f; }

.web-package-warning {
    font-size: 0.65rem;
    color: #9CA3AF;
    text-align: right;
    margin: 0;
}

.web-package-limit-warning {
    margin-top: 0.625rem;
    padding: 0.4rem 0.625rem;
    background: #FEF2F2;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.web-package-limit-warning i { color: #dc2626; }

.web-package-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    margin-bottom: 0.875rem;
}

.web-package-info-banner .info-banner-icon {
    width: 36px;
    height: 36px;
    background: #16a34a;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.web-package-info-banner .info-banner-content { flex: 1; }

.web-package-info-banner .info-banner-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 0.25rem 0;
}

.web-package-info-banner .info-banner-desc {
    font-size: 0.78rem;
    color: #047857;
    line-height: 1.5;
    margin: 0;
}

.web-package-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #92400e;
    line-height: 1.5;
}

.web-package-note i {
    color: #D97706;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.instagram-packages-divider {
    text-align: center;
    margin: 1.25rem 0 0.875rem;
    position: relative;
}

.instagram-packages-divider::before,
.instagram-packages-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 90px);
    height: 1px;
    background: #E5E7EB;
}

.instagram-packages-divider::before { left: 0; }
.instagram-packages-divider::after { right: 0; }

.instagram-packages-divider span {
    background: #fff;
    padding: 0 0.625rem;
    color: #9CA3AF;
    font-size: 0.75rem;
    font-weight: 500;
}

.web-package-payment-info {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
}

.web-package-payment-info .info-icon {
    width: 48px;
    height: 48px;
    background: #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.625rem;
    color: white;
    font-size: 1.3rem;
}

.web-package-payment-info .info-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.2rem;
}

.web-package-payment-info .info-desc {
    color: #6B7280;
    font-size: 0.8rem;
    margin-bottom: 0.875rem;
}

.web-package-payment-info .info-details {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-width: 260px;
    margin: 0 auto;
    text-align: left;
}

.web-package-payment-info .detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4B5563;
}

/* ==================== SKELETON & ANIMATIONS ==================== */
.photo-skeleton {
    position: relative;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    border: 2px dashed #D1D5DB;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.skeleton-shimmer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skeleton-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    width: 100%;
}

.skeleton-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E31E24, #c91a1f);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-icon 1.5s ease-in-out infinite;
}

.skeleton-icon i { font-size: 22px; color: white; }

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(227,30,36,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(227,30,36,0); }
}

.skeleton-progress-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.skeleton-progress-bar {
    width: 80%;
    height: 6px;
    background: rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.skeleton-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #E31E24, #ff6b6b);
    border-radius: 8px;
    transition: width 0.3s ease;
}

.skeleton-progress-text {
    font-size: 13px;
    font-weight: 700;
    color: #E31E24;
}

.skeleton-filename {
    font-size: 10px;
    color: #6B7280;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.photo-skeleton.processing .skeleton-icon {
    background: linear-gradient(135deg, #16a34a, #15803d);
    animation: none;
}

.photo-skeleton.processing .skeleton-progress-fill {
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

.photo-skeleton.processing .skeleton-progress-text {
    color: #16a34a;
}

.photo-fade-in {
    animation: photoFadeIn 0.5s ease forwards;
}

.photo-fade-in img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.photo-fade-in.loaded img {
    opacity: 1;
}

@keyframes photoFadeIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Sortable */
.photo-ghost {
    opacity: 0.4;
    background: #F3F4F6 !important;
    border: 2px dashed #E31E24 !important;
}

.photo-chosen {
    opacity: 1;
    transform: translateZ(0) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(227,30,36,0.25) !important;
    z-index: 1000;
}

.photo-drag { opacity: 1; }

body.is-dragging {
    cursor: grabbing !important;
    user-select: none;
}

body.is-dragging * {
    cursor: grabbing !important;
}

/* Alerts */
.alert {
    padding: 0.875rem 1.125rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 13px;
    line-height: 1.55;
}

.alert-info {
    background-color: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.alert-warning {
    background: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.alert i {
    font-size: 18px;
    flex-shrink: 0;
}

/* Bootstrap Utility Overrides */
.d-flex { display: flex !important; }
.gap-3 { gap: 1rem !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.small { font-size: 0.875rem !important; }
.fw-bold { font-weight: 700 !important; }
.text-muted { color: #6B7280 !important; }
.text-success { color: #16a34a !important; }
.text-info { color: #0ea5e9 !important; }
.text-danger { color: #E31E24 !important; }
.text-dark { color: #111 !important; }
.d-block { display: block !important; }

/* Badge override */
.badge {
    display: inline-block;
    padding: 0.3rem 0.625rem;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-warning {
    background-color: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

/* ==================== RESPONSIVE — TABLET ==================== */
@media (max-width: 1200px) {
    #category-dropdowns-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    #location-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* ==================== RESPONSIVE — MOBILE ==================== */
@media (max-width: 991px) {
    body, html {
        overflow-x: hidden;
    }

    .tab-content {
        overflow-x: hidden;
    }

    .form-section {
        padding: 1rem var(--iap-wizard-px) 0;
    }

    /* Step Header Mobile */
    .iap-step-header {
        padding: 1rem;
        gap: 0.75rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .iap-step-header__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 1.1rem;
    }

    .iap-step-header__title {
        font-size: 17px;
    }

    .iap-step-header__desc {
        font-size: 12.5px;
    }

    /* Trust Bar Mobile */
    .iap-trust-bar {
        gap: 0.375rem;
        padding: 0.625rem 0.75rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .iap-trust-bar::-webkit-scrollbar { display: none; }

    .iap-trust-bar__item {
        font-size: 11px;
        background: #F9FAFB;
        padding: 0.375rem 0.625rem;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .iap-trust-bar__item i {
        font-size: 13px;
    }

    /* REV-079: Mobil slider — 1 kart görünür, swipe ile kayar. Featured'da floating yok
       (viewport'ta titretir), hover state'ler mobilde inert. */
    .pricing-grid {
        display: flex;
        flex-direction: row;
        gap: 14px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 18px 14px 14px;
        margin: 0 -14px;
        scrollbar-width: none;
        align-items: stretch;
    }
    .pricing-grid::-webkit-scrollbar { display: none; }

    .pricing-grid .pricing-card {
        flex: 0 0 calc(100vw - 64px);
        min-width: 264px;
        max-width: 340px;
        scroll-snap-align: center;
        padding: 24px 20px 20px;
    }

    /* Mobilde kart yüzüp durmaz, sabit kalır */
    .pricing-grid .pricing-card.featured,
    .pricing-grid .pricing-card.featured:hover,
    .pricing-grid .pricing-card.featured.selected,
    .pricing-grid .pricing-card:hover {
        animation: none !important;
        transform: none;
    }

    .pkg-ribbon {
        top: -11px;
        padding: 5px 12px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }
    .pkg-ribbon i { font-size: 11px; }

    /* Segmented Cards Mobile */
    .iap-segmented-cards {
        flex-direction: column;
    }

    /* Trust Card Mobile */
    .iap-trust-card {
        padding: 0.875rem;
    }

    .iap-trust-card__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* REV-079: Mobilde kompakt ama rahat okunan ölçek */
    .pricing-grid .pricing-card .package-title,
    .pricing-grid .pricing-card .pkg-name {
        font-size: 18px;
    }
    .pricing-grid .pricing-card .package-desc,
    .pricing-grid .pricing-card .pkg-desc {
        font-size: 12.5px;
        margin-bottom: 14px;
        min-height: 38px;
    }
    .pricing-grid .pricing-card .package-price,
    .pricing-grid .pricing-card .pkg-price {
        margin-bottom: 16px;
        min-height: 42px;
    }
    .pricing-grid .pricing-card .pkg-price__amount { font-size: 38px; }
    .pricing-grid .pricing-card .pkg-price__currency { font-size: 20px; }
    .pricing-grid .pricing-card .pkg-price__period { font-size: 12px; }
    .pricing-grid .pricing-card .pkg-price__free { font-size: 28px; }

    .pricing-grid .pricing-card .pricing-card__divider { margin: 6px 0 14px; }

    .pricing-grid .pricing-card .features-list ul,
    .pricing-grid .pricing-card .pkg-features { gap: 10px; }
    .pricing-grid .pricing-card .features-list li,
    .pricing-grid .pricing-card .pkg-feature {
        font-size: 13px;
        line-height: 1.45;
    }
    .pricing-grid .pricing-card .pkg-feature__icon {
        width: 18px; height: 18px;
        font-size: 11px;
    }
    .pricing-grid .pricing-card .features-title,
    .pricing-grid .pricing-card .pkg-features-title {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .pricing-grid .pricing-card .btn-package,
    .pricing-grid .pricing-card .pkg-cta {
        padding: 13px 14px;
        font-size: 13.5px;
        min-height: 46px;
        margin-top: 18px;
    }

    /* Mobile Slider */
    .mobile-slider-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.95);
        border: 1px solid #E5E7EB;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.2s ease;
        color: #374151;
        font-size: 16px;
    }

    .slider-arrow:hover {
        background: #E31E24;
        color: #fff;
        border-color: #E31E24;
    }

    .slider-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

    .slider-arrow-left { left: -3px; }
    .slider-arrow-right { right: -3px; }

    .slider-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        background: #F3F4F6;
    }

    .slider-arrow:disabled:hover {
        background: #F3F4F6;
        color: #374151;
        border-color: #E5E7EB;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 0.5rem;
    }

    .slider-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background-color: #D1D5DB;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .slider-dot.active {
        background-color: #E31E24;
        width: 20px;
        border-radius: 4px;
    }

    /* Form Mobile */
    .form-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 1rem;
    }

    #category-dropdowns-wrapper {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    #location-wrapper {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .form-control {
        height: 48px;
        font-size: 16px;
    }

    /* Info Banner Mobile */
    .iap-info-banner {
        padding: 0.75rem 1rem;
        font-size: 12.5px;
        border-radius: 10px;
        margin-top: 1rem;
    }

    /* EIDS Mobile */
    .eids-preverify {
        padding: 1.5rem 0.5rem;
    }

    .eids-preverify__title {
        font-size: 20px;
    }

    .eids-preverify__desc {
        font-size: 14px;
    }

    .eids-success-block {
        padding: 1.5rem 1rem;
    }

    .eids-success-block__title {
        font-size: 18px;
    }

    .eids-success-block__info {
        max-width: 100%;
    }

    /* Plate & Vehicle Mobile */
    .plate-premium-display {
        min-width: 180px;
        padding: 0.625rem 1.25rem;
    }

    .plate-premium-display .plate-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .vehicle-info-cards {
        grid-template-columns: 1fr;
    }

    .btn-plate-verify {
        width: 100%;
        justify-content: center;
    }

    /* Photos Mobile */
    .photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .photo-card {
        touch-action: manipulation;
        -webkit-touch-callout: none;
        user-select: none;
    }

    .photos-grid {
        touch-action: pan-y;
    }

    body.is-dragging .photos-grid {
        touch-action: none;
    }

    .photo-empty-state {
        padding: 2rem 1rem;
    }

    .photo-empty-state__icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .photo-empty-state__title {
        font-size: 16px;
    }

    /* Payment Mobile */
    .payment-amount-banner {
        padding: 0.875rem 1rem;
    }

    .payment-amount-value {
        font-size: 22px;
    }

    .payment-method-cards {
        grid-template-columns: 1fr;
    }

    .bank-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .bank-value { text-align: left; }

    .summary-row.summary-total .summary-value {
        font-size: 17px;
    }

    .coupon-input-row {
        flex-direction: column;
    }

    .coupon-input-field input {
        border-right: 1.5px solid #E5E7EB;
        border-radius: var(--iap-radius-md);
    }

    .coupon-apply-btn {
        border-radius: var(--iap-radius-md);
        margin-top: 0.5rem;
        width: 100%;
    }

    /* Trust Accordion Mobile */
    .trust-accordion__header {
        font-size: 13px;
        padding: 0.75rem 0.875rem;
    }

    .trust-accordion__body p {
        font-size: 12.5px;
        padding: 0 0.875rem 0.75rem;
    }

    /* Summary Mobile */
    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-section {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .photo-slider-container {
        min-height: 320px;
    }

    .photo-slider-item {
        min-height: 320px;
    }

    /* Web Package Mobile */
    .web-package-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.625rem;
    }

    .web-package-stats {
        justify-content: flex-start;
        gap: 0.625rem;
    }

    .web-package-stats .stat-item {
        flex: 0 0 calc(50% - 0.3125rem);
    }

    .web-package-action { align-items: stretch; }
    .btn-web-package { width: 100%; justify-content: center; }
    .web-package-warning { text-align: center; }

    .web-package-info-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.625rem;
    }

    .web-package-info-banner .info-banner-icon { margin: 0 auto; }

    .web-package-note {
        flex-direction: column;
        text-align: center;
        gap: 0.375rem;
    }

    .web-package-note i { margin: 0 auto; }

    .instagram-packages-divider::before,
    .instagram-packages-divider::after {
        width: calc(50% - 65px);
    }

    /* Doping Mobile */
    .doping-packages-grid {
        grid-template-columns: 1fr;
    }

    .doping-selection-section {
        padding: 1rem;
    }

    /* Submit Button Mobile */
    .btn-submit {
        width: 100% !important;
        padding: 0.875rem 1.25rem !important;
        justify-content: center;
    }

    .edevlet-hero-section {
        flex-direction: column;
        text-align: center;
        gap: 0.875rem;
    }

    .edevlet-hero-section .hero-image {
        flex: none;
        max-width: 100px;
        margin: 0 auto;
    }

    .edevlet-hero-section .hero-title {
        font-size: 15px;
    }

    .edevlet-hero-section .hero-desc {
        font-size: 12.5px;
    }

    .edevlet-hero-section .btn-edevlet {
        padding: 0.625rem 1.25rem;
        font-size: 13px;
    }

    /* Success Screen Mobile */
    .iap-success-card {
        grid-template-columns: 1fr;
    }

    .iap-success-card__slider {
        min-height: 280px;
    }

    .iap-success-card__slider .photo-slider-container {
        min-height: 280px;
    }

    .iap-success-card__slider .photo-slider-item {
        min-height: 280px;
    }

    .iap-success-card__body {
        max-height: none;
        padding: 1.25rem 1rem;
    }

    .iap-success-hero {
        padding: 1.5rem 0.5rem 1rem;
    }

    .iap-success-hero__check {
        width: 64px;
        height: 64px;
    }

    .iap-success-hero__check svg {
        width: 36px;
        height: 36px;
    }

    .iap-success-hero__title {
        font-size: 20px;
    }

    .iap-success-hero__ad-id-value {
        font-size: 17px;
    }

    .iap-success-price {
        font-size: 26px;
    }

    .iap-success-ctas {
        flex-direction: column;
    }

    .iap-success-cta {
        width: 100%;
        min-width: 0;
    }

    .completion-card {
        min-height: 46px;
        padding: 0 0.625rem;
        gap: 0.4rem;
    }

    .completion-icon {
        width: 26px;
        height: 26px;
    }

    .completion-icon i { font-size: 14px; }
    .completion-title { font-size: 12px; }
    .completion-text { font-size: 10px; }
}

/* ==================== RESPONSIVE — SMALL MOBILE ==================== */
@media (max-width: 576px) {
    .form-section {
        padding: 0.75rem var(--iap-wizard-px) 0;
    }

    .iap-step-header {
        padding: 0.875rem;
        gap: 0.625rem;
    }

    .iap-step-header__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .iap-step-header__title {
        font-size: 15px;
    }

    .iap-step-header__desc {
        font-size: 12px;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .photo-hints {
        flex-direction: column;
        gap: 0.5rem;
    }

    .photo-hint {
        font-size: 11px;
    }

    .iap-trust-bar__item {
        font-size: 10.5px;
        padding: 0.3rem 0.5rem;
    }

    .pricing-grid .pricing-card {
        flex: 0 0 calc(100vw - 48px);
        min-width: 260px;
        padding: 1rem;
    }

    .pricing-grid .pricing-card .package-price {
        font-size: 28px;
    }

    .iap-cta-bar__summary-name {
        max-width: 100px;
        font-size: 12px;
    }

    .iap-cta-bar__summary-price {
        font-size: 13px;
    }

    .skeleton-icon {
        width: 36px;
        height: 36px;
    }

    .skeleton-icon i { font-size: 18px; }
    .skeleton-progress-bar { height: 5px; }
    .skeleton-progress-text { font-size: 11px; }
    .skeleton-filename { font-size: 9px; }
    .skeleton-content { gap: 6px; padding: 8px; }

    /* Success Screen Small Mobile */
    .iap-success-hero__title {
        font-size: 18px;
    }

    .iap-success-hero__ad-id-value {
        font-size: 15px;
    }

    .iap-success-hero__ad-id-row {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }

    .iap-success-price {
        font-size: 24px;
    }

    .iap-success-card__slider {
        min-height: 240px;
    }

    .iap-success-card__slider .photo-slider-container,
    .iap-success-card__slider .photo-slider-item {
        min-height: 240px;
    }

    .iap-success-row {
        font-size: 12px;
        padding: 0.4rem 0.75rem;
    }

    .iap-success-group__title {
        font-size: 12px;
        padding: 0.625rem 0.75rem;
    }

    .summary-slider-arrow {
        width: 32px;
        height: 32px;
        min-width: 36px;
        min-height: 36px;
        font-size: 14px;
    }

    .summary-slider-prev { left: 8px; }
    .summary-slider-next { right: 8px; }
}

/* ==================== STEP TRANSITION ==================== */
.tab-content {
    display: none;
    opacity: 0;
}

.tab-content.active {
    display: block;
    animation: iapStepFadeIn var(--iap-duration-normal) var(--iap-ease) forwards;
}

@keyframes iapStepFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hide in-step form-actions (CTA bar replaces them) */
body.iap-focused .form-section .form-actions {
    display: none;
}

/* ==================== STICKY CTA BAR ==================== */
.iap-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--iap-z-cta);
    background: var(--iap-bg-card);
    border-top: 1px solid var(--iap-border);
    box-shadow: var(--iap-shadow-cta);
    padding: 12px var(--iap-wizard-px);
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.iap-cta-bar__inner {
    max-width: var(--iap-wizard-max-w);
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.iap-cta-bar__back {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 20px;
    border-radius: var(--iap-radius-md);
    border: 1.5px solid var(--iap-border);
    background: var(--iap-bg-card);
    color: var(--iap-text-secondary);
    font-family: var(--iap-font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--iap-duration-fast) var(--iap-ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.iap-cta-bar__back:hover {
    background: var(--iap-bg-surface);
    border-color: var(--iap-border-dark);
}

.iap-cta-bar__next {
    flex: 1;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--iap-radius-md);
    border: none;
    background: linear-gradient(135deg, var(--iap-primary), var(--iap-primary-dark));
    color: #fff;
    font-family: var(--iap-font);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--iap-duration-fast) var(--iap-ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px var(--iap-primary-glow);
}

.iap-cta-bar__next:hover {
    background: linear-gradient(135deg, var(--iap-primary-dark), var(--iap-primary-darker));
    box-shadow: 0 6px 24px rgba(227,30,36,0.35);
}

.iap-cta-bar__next:active {
    transform: scale(0.98);
}

.iap-cta-bar__next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.iap-cta-bar--hidden {
    display: none !important;
}

/* ==================== FOCUSED MODE ==================== */
body.iap-focused {
    padding-bottom: 0;
}

body.iap-focused > footer,
body.iap-focused .site-footer,
body.iap-focused .footer-wrapper {
    display: none !important;
}

body.iap-focused .mobile-bottom-nav,
body.iap-focused .bottom-nav,
body.iap-focused .app-bottom-bar {
    display: none !important;
}

/* ==================== KEYBOARD OPEN ==================== */
body.keyboard-open .iap-cta-bar {
    display: none !important;
}

body.keyboard-open .iap-mobile-stepper {
    position: relative;
}

/* ==================== RESPONSIVE — WIZARD ADJUSTMENTS ==================== */
@media (max-width: 991px) {
    .form-section {
        padding-bottom: calc(var(--iap-cta-h) + env(safe-area-inset-bottom, 0px) + 16px);
    }

    .iap-cta-bar {
        padding: 10px var(--iap-wizard-px);
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .iap-cta-bar__back {
        height: 44px;
        padding: 0 16px;
        font-size: 13px;
    }

    .iap-cta-bar__next {
        height: 44px;
        font-size: 14px;
    }
}

/* ==================== IYZICO MODAL (inline styles preserved) ==================== */
#iyzico_checkout_form_wrapper { padding: 0; }
#iyzico_checkout_form_container { min-height: 400px; }
#iyzico_checkout_form_container #iyzipay-checkout-form { width: 100% !important; }
#iyzico_checkout_form_container iframe { width: 100% !important; min-height: 600px !important; border: none !important; }

/* ==================== ANIMATION POLISH ==================== */

/* Focus glow for all inputs */
.form-control:focus,
select.form-control:focus,
textarea.form-control:focus,
.coupon-input-field input:focus {
    box-shadow: 0 0 0 3px rgba(227,30,36,0.12);
}

/* Hover states for all cards */
.iap-trust-card:hover,
.vehicle-info-card:hover,
.iap-info-banner:hover {
    box-shadow: var(--iap-shadow-sm);
}

/* Price change transition */
.payment-amount-value,
.iap-success-price,
.summary-row.summary-total .summary-value {
    transition: all 0.35s var(--iap-ease);
}

/* Spring transition for success blocks */
.eids-success-block__check,
.plate-success-block__check,
.iap-success-hero__check {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Accordion smooth transition */
.trust-accordion__body {
    transition: max-height 0.35s var(--iap-ease);
}

/* ==================== RESPONSIVE — 320px (iPhone SE) ==================== */
@media (max-width: 360px) {
    :root {
        --iap-wizard-px: 12px;
    }

    .iap-step-header {
        padding: 0.75rem;
        gap: 0.5rem;
    }

    .iap-step-header__icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .iap-step-header__title { font-size: 14px; }
    .iap-step-header__desc { font-size: 11.5px; }

    .iap-mobile-stepper__inner {
        padding: 0.625rem 0.875rem;
    }

    .iap-mobile-stepper__badge {
        font-size: 11px;
        padding: 0.15rem 0.5rem;
    }

    .iap-mobile-stepper__title {
        font-size: 13px;
    }

    .form-control {
        height: 46px;
        font-size: 16px;
    }

    .pricing-grid .pricing-card {
        flex: 0 0 calc(100vw - 32px);
        min-width: 240px;
        padding: 0.875rem;
    }

    .pricing-grid .pricing-card .package-price {
        font-size: 24px;
    }

    .iap-trust-bar__item {
        font-size: 10px;
        padding: 0.25rem 0.4rem;
    }

    .photo-hints { display: none; }

    .iap-success-hero__title { font-size: 16px; }
    .iap-success-hero__ad-id-value { font-size: 14px; }
    .iap-success-price { font-size: 22px; }

    .iap-success-cta {
        height: 44px;
        font-size: 14px;
        padding: 0 1.25rem;
    }

    .iap-cta-bar__back {
        height: 42px;
        padding: 0 12px;
        font-size: 12px;
    }

    .iap-cta-bar__next {
        height: 42px;
        font-size: 13px;
    }
}

/* ==================== CROSS-BROWSER / iOS FIXES ==================== */

/* iOS address bar — use dvh where supported */
@supports (height: 100dvh) {
    .mobile-stepper-modal .modal-content {
        max-height: 75dvh;
    }
}

/* iOS rubber-band scroll containment */
.form-section {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* iOS keyboard open — hide CTA */
@supports (height: env(safe-area-inset-bottom)) {
    .iap-cta-bar {
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }

    .iap-success-ctas {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
}

/* Prevent iOS zoom on inputs (16px minimum) */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select.form-control,
    textarea.form-control,
    input.form-control,
    .coupon-input-field input {
        font-size: 16px;
    }
}

/* Safari sticky fix */
@supports (-webkit-touch-callout: none) {
    .iap-stepper {
        position: -webkit-sticky;
        position: sticky;
    }

    .iap-mobile-stepper {
        position: -webkit-sticky;
        position: sticky;
    }

    .iap-cta-bar {
        position: fixed;
    }
}

/* Smooth 60fps transitions — GPU acceleration */
.tab-content.active,
.pricing-card,
.photo-card,
.iap-success-hero__check,
.eids-success-block__check,
.plate-success-block__check {
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ==================== Premium Banka Hesap Kartları ==================== */

.bank-account-card-premium {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.bank-account-card-premium:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    border-color: #93C5FD;
    transform: translateY(-2px);
}

.bank-card-header {
    background: linear-gradient(135deg, #1E3A5F 0%, #1E40AF 50%, #2563EB 100%);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.bank-card-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.bank-card-title h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.bank-card-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.85);
    margin-top: 2px;
}

.bank-card-body {
    padding: 1rem 1.25rem;
}

.bank-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.bank-card-row:last-child {
    border-bottom: none;
}

.bank-card-row--iban {
    background: #F8FAFC;
    margin: 0.5rem -1.25rem;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
    border-top: 1px solid #E5E7EB;
}

.bank-card-label {
    font-size: 12px;
    color: #6B7280;
    flex-shrink: 0;
    margin-right: 0.75rem;
    font-weight: 500;
}

.bank-card-value {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-align: right;
}

.bank-card-iban-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-card-iban {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
    color: #1E40AF;
    background: transparent;
    padding: 0;
}

.bank-card-copy-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    background: #fff;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bank-card-copy-btn:hover {
    background: #2563EB;
    color: #fff;
    border-color: #2563EB;
}

/* E-Devlet FAQ Accordion */
.eids-faq-accordion {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    background: #FAFBFC;
}

.eids-faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0.875rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: background 0.2s ease;
}

.eids-faq-toggle:hover {
    background: #F3F4F6;
}

.eids-faq-chevron {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #9CA3AF;
}

.eids-faq-accordion.open .eids-faq-chevron {
    transform: rotate(180deg);
}

.eids-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.eids-faq-accordion.open .eids-faq-body {
    max-height: 300px;
    padding: 0 1.25rem 1rem;
}

.eids-faq-body p {
    font-size: 13px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* Unified payment button free style */
.btn-payment-cta--free {
    background: linear-gradient(135deg, #059669, #10B981) !important;
}

.btn-payment-cta--free:hover {
    background: linear-gradient(135deg, #047857, #059669) !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
