/* ================================================================
   BRAND.CSS — AnakCPNS custom styles (Bootstrap 5 companion)
   Palette: Navy #102a43 | Gold #f6ad55 | White #fff
================================================================ */

/* ---- Fonts ---- */
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #1e293b;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
html { overflow-x: hidden; }

/* ---- Brand color variables ---- */
:root {
    --navy-900: #102a43;
    --navy-800: #243b53;
    --navy-700: #334e68;
    --navy-600: #486581;
    --navy-100: #d9e2ec;
    --navy-50:  #f0f4f8;
    --gold-600: #c05621;
    --gold-500: #dd6b20;
    --gold-400: #f6ad55;
    --gold-300: #fbd38d;
    --gold-100: #feebc8;
    --gold-50:  #fffaf0;
}

/* ================================================================
   UTILITIES
================================================================ */
.text-navy      { color: var(--navy-900) !important; }
.text-navy-700  { color: var(--navy-700) !important; }
.text-gold      { color: var(--gold-400) !important; }
.text-gold-600  { color: var(--gold-600) !important; }
.bg-navy        { background-color: var(--navy-900) !important; }
.bg-navy-50     { background-color: var(--navy-50) !important; }
.bg-gold-50     { background-color: var(--gold-50) !important; }
.bg-gold-100    { background-color: var(--gold-100) !important; }

.fw-extrabold   { font-weight: 800 !important; }
.tracking-wide  { letter-spacing: .05em; }
.tracking-wider { letter-spacing: .1em; }
.lh-tight       { line-height: 1.1; }

/* ================================================================
   GRADIENT TEXT
================================================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 45%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-navy {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #fff !important;
    border: 2px solid transparent;
    font-weight: 700;
    border-radius: 14px;
    padding: 13px 28px;
    box-shadow: 0 4px 14px rgba(16,42,67,.2);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    cursor: pointer;
}
.btn-navy:hover, .btn-navy:focus-visible {
    color: #fff !important;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    box-shadow: 0 8px 28px rgba(16,42,67,.36);
    transform: translateY(-1px);
}
.btn-navy:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(16,42,67,.2);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    color: #1a1a1a !important;
    border: 2px solid transparent;
    font-weight: 700;
    border-radius: 14px;
    padding: 13px 28px;
    box-shadow: 0 4px 14px rgba(246,173,85,.3);
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
    cursor: pointer;
}
.btn-gold:hover, .btn-gold:focus-visible {
    color: #1a1a1a !important;
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
    box-shadow: 0 8px 28px rgba(246,173,85,.5);
    transform: translateY(-1px);
}
.btn-gold:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(246,173,85,.3);
}

.btn-outline-navy {
    background: transparent;
    color: var(--navy-800);
    border: 2px solid rgba(16,42,67,.25);
    font-weight: 600;
    border-radius: 14px;
    padding: 11px 26px;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
    cursor: pointer;
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(16,42,67,.25);
    transform: translateY(-1px);
}
.btn-outline-navy:active {
    transform: translateY(0);
}

/* ================================================================
   GLASS / POLYMORPHISM CARDS
================================================================ */
.pm-glass {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.65);
}

.pm-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(16,42,67,.07), 0 2px 8px rgba(16,42,67,.03);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(16,42,67,.12), 0 4px 12px rgba(246,173,85,.12);
    border-color: rgba(246,173,85,.3);
}

.pm-glass-dark {
    background: rgba(15,23,42,.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.08);
}

/* ================================================================
   BLOBS
================================================================ */
.pm-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.pm-blob-navy {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(16,42,67,.22) 0%, transparent 70%);
    animation: blobFloat1 11s ease-in-out infinite;
}
.pm-blob-gold {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(246,173,85,.28) 0%, transparent 70%);
    animation: blobFloat2 14s ease-in-out infinite;
}
.pm-blob-gold-sm {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(221,107,32,.18) 0%, transparent 70%);
    animation: blobFloat3 17s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(5%,8%) scale(1.07); }
}
@keyframes blobFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-6%,5%) scale(1.09); }
}
@keyframes blobFloat3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(4%,-6%) scale(1.06); }
}

/* ================================================================
   SECTION backgrounds
================================================================ */
.section-light  { background: #f8fafc; }
.section-white  { background: #ffffff; }
.section-dots {
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(16,42,67,.09) 1px, transparent 1px);
    background-size: 30px 30px;
}
.section-grid {
    background-color: #f8fafc;
    background-image:
        linear-gradient(rgba(16,42,67,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,42,67,.04) 1px, transparent 1px);
    background-size: 46px 46px;
}

/* ================================================================
   NAVBAR
================================================================ */
#main-navbar {
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
/* Default: transparent over dark hero */
#main-navbar .navbar-brand span,
#main-navbar .nav-link {
    color: rgba(255,255,255,.9) !important;
}
#main-navbar .btn-outline-secondary {
    color: rgba(255,255,255,.9) !important;
    border: 2px solid rgba(255,255,255,.4) !important;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    cursor: pointer;
}
#main-navbar:not(.scrolled) .btn-outline-secondary:hover {
    background: rgba(255,255,255,.15) !important;
    border-color: rgba(255,255,255,.8) !important;
    color: #fff !important;
}
#main-navbar .nav-link {
    font-weight: 600;
    border-radius: 10px;
    padding: 7px 14px !important;
    transition: color .2s, background .2s;
}
#main-navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.12);
}

/* Scrolled: white glass */
#main-navbar.scrolled {
    background: rgba(255,255,255,.90) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(16,42,67,.08);
    border-bottom: 1px solid rgba(255,255,255,.6);
}
#main-navbar.scrolled .navbar-brand span,
#main-navbar.scrolled .nav-link {
    color: #475569 !important;
}
#main-navbar.scrolled .btn-outline-secondary {
    color: var(--navy-800) !important;
    border-color: rgba(16,42,67,.25) !important;
    background: transparent;
}
#main-navbar.scrolled .btn-outline-secondary:hover {
    background: var(--navy-900) !important;
    border-color: var(--navy-900) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(16,42,67,.2);
}
#main-navbar.scrolled .nav-link:hover {
    color: var(--navy-900) !important;
    background: var(--navy-50);
}
#main-navbar.scrolled .navbar-toggler {
    filter: none;
}
/* Daftar Gratis button on dark bg */
#main-navbar:not(.scrolled) .btn-navy {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%) !important;
    color: #1a1a1a !important;
    box-shadow: 0 4px 16px rgba(246,173,85,.4);
}
#main-navbar:not(.scrolled) .btn-navy:hover {
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%) !important;
    box-shadow: 0 8px 28px rgba(246,173,85,.55) !important;
    color: #1a1a1a !important;
}
#main-navbar.scrolled .btn-navy {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%) !important;
    color: #fff !important;
}
/* Toggler icon white on dark */
#main-navbar:not(.scrolled) .navbar-toggler-icon {
    filter: invert(1);
}

/* ================================================================
   HERO
================================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Rich dark navy base with radial mesh highlights */
    background-color: #0a1628;
    background-image:
        /* Subtle dot grid */
        radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        /* Gold glow top-right */
        radial-gradient(ellipse 55% 45% at 80% 10%, rgba(246,173,85,.13) 0%, transparent 65%),
        /* Navy teal glow bottom-left */
        radial-gradient(ellipse 60% 50% at 15% 90%, rgba(16,92,145,.22) 0%, transparent 65%),
        /* Deep purple mid accent */
        radial-gradient(ellipse 40% 35% at 55% 55%, rgba(79,50,120,.14) 0%, transparent 65%),
        /* Base gradient */
        linear-gradient(145deg, #060f22 0%, #0d1f3c 40%, #102a43 100%);
    background-size: 32px 32px, auto, auto, auto, auto;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Subtle top-edge glow line */
    background: linear-gradient(180deg, rgba(246,173,85,.06) 0%, transparent 14%);
    z-index: 0;
    pointer-events: none;
}
.hero-section .hero-overlay {
    display: none;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
    .hero-particles {
        display: none !important;
    }
}

/* ================================================================
   FLOATING GLASS CARDS (hero)
================================================================ */
.float-card {
    position: absolute;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: 0 10px 32px rgba(16,42,67,.10);
    z-index: 20;
    min-width: 160px;
}

/* ================================================================
   FEATURE ICONS (Material Symbols)
================================================================ */
.feature-icon {
    font-size: 36px;
    line-height: 1;
    color: var(--navy-700);
    margin-bottom: .75rem;
    display: block;
}

/* ================================================================
   BADGE / PILL
================================================================ */
.badge-pill-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--navy-800);
    box-shadow: 0 2px 8px rgba(16,42,67,.07);
}

.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold-400);
    position: relative;
    flex-shrink: 0;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--gold-400);
    opacity: .6;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { transform: scale(1); opacity: .6; }
    50% { transform: scale(2.2); opacity: 0; }
}

/* ================================================================
   SECTION HELPERS
================================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold-600);
}
.section-title {
    font-size: clamp(1.85rem,4vw,2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: #64748b;
    font-size: 1rem;
    max-width: 520px;
    margin: .5rem auto 0;
    line-height: 1.7;
}

/* ================================================================
   STAT CARD
================================================================ */
.stat-card {
    text-align: center;
    padding: 24px 20px;
}
.stat-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
}

/* ================================================================
   SECTION — PAKET
================================================================ */
.section-paket {
    background: #f8fafc;
    padding: 6rem 0;
}

.pricing-card {
    background: #fff;
    border: 1.5px solid rgba(16,42,67,.09);
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(16,42,67,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 52px rgba(16,42,67,.12);
    border-color: rgba(246,173,85,.4);
}
.pricing-card--popular {
    border-color: var(--navy-900);
    box-shadow: 0 8px 36px rgba(16,42,67,.14);
}
.pricing-card--popular:hover {
    border-color: var(--gold-400);
    box-shadow: 0 24px 56px rgba(16,42,67,.18);
}
.pricing-popular-badge {
    background: var(--navy-900);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.pricing-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
}
.pricing-img--fallback {
    object-fit: contain;
    padding: 12px;
    background: rgba(16, 42, 67, 0.04);
}
.pricing-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 18px;
    background: var(--navy-50);
    color: var(--navy-700);
    display: flex; align-items: center; justify-content: center;
}
.pricing-icon-wrap--popular {
    background: var(--navy-900);
    color: #fff;
}
.pricing-discount-badge {
    display: inline-block;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}
.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.pricing-price-coret {
    font-size: .875rem;
    text-decoration: line-through;
    color: #94a3b8;
}
.pricing-price {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
}
.pricing-price--popular {
    color: var(--gold-500);
}
.pricing-patungan {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-50);
    border: 1px solid var(--gold-100);
    color: var(--gold-600);
    border-radius: 12px;
    padding: 8px 12px;
}

/* ================================================================
   SECTION — FITUR
================================================================ */
.section-fitur {
    background: #fff;
    padding: 6rem 0;
}
.fitur-card {
    background: #f8fafc;
    border: 1.5px solid rgba(16,42,67,.07);
    border-radius: 22px;
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    cursor: default;
}
.fitur-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 12px 36px rgba(16,42,67,.09);
}
.fitur-card--navy:hover { border-color: rgba(16,42,67,.2); }
.fitur-card--gold:hover  { border-color: rgba(246,173,85,.4); }

.fitur-icon {
    width: 48px; height: 48px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
}
.fitur-icon--navy {
    background: var(--navy-50);
    color: var(--navy-700);
}
.fitur-icon--gold {
    background: var(--gold-50);
    color: var(--gold-600);
}
.fitur-icon .material-symbols-outlined { font-size: 24px; }

/* ================================================================
   SECTION — BERITA
================================================================ */
.section-berita {
    background: #f8fafc;
    padding: 6rem 0;
}
.news-card {
    background: #fff;
    border: 1.5px solid rgba(16,42,67,.07);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(16,42,67,.05);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(16,42,67,.10);
}
.news-img-wrap {
    position: relative;
    overflow: hidden;
    height: 196px;
    flex-shrink: 0;
}
.news-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.news-card:hover .news-img { transform: scale(1.04); }
.news-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    display: flex; align-items: center; justify-content: center;
    color: rgba(246,173,85,.5);
    font-size: 48px;
}
.news-placeholder .material-symbols-outlined { font-size: 48px; }
.news-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gold-400);
    color: #1a1a1a;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.news-title {
    font-size: .9375rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--navy-900);
}
.news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}
.news-footer {
    border-top: 1px solid #f1f5f9;
}
.news-read-more {
    color: var(--navy-700);
    transition: color .2s;
}
.news-card:hover .news-read-more { color: var(--gold-500); }

/* ================================================================
   SECTION — TESTIMONI
================================================================ */
.section-testimoni {
    background: #fff;
    padding: 6rem 0;
}
.testi-card {
    background: #fafbfc;
    border: 1.5px solid rgba(16,42,67,.08);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(16,42,67,.05);
    transition: transform .25s ease, box-shadow .25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(16,42,67,.10);
    border-color: rgba(246,173,85,.25);
}
.testi-quote-icon {
    color: var(--navy-900);
    margin-bottom: 8px;
}
.testi-author {
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ================================================================
   SECTION — FAQ
================================================================ */
.section-faq {
    background: #f8fafc;
    padding: 6rem 0;
}
.faq-item {
    background: #fff;
    border: 1.5px solid rgba(16,42,67,.08);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(16,42,67,.04);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.open {
    border-color: rgba(16,42,67,.18);
    box-shadow: 0 6px 24px rgba(16,42,67,.08);
}
.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 24px;
    font-weight: 700;
    font-size: .9375rem;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: background .2s;
}
.faq-btn:hover { background: #f8fafc; }
.faq-num {
    font-size: .75rem;
    font-weight: 800;
    color: var(--gold-500);
    letter-spacing: .04em;
    flex-shrink: 0;
    min-width: 24px;
}
.faq-q { flex: 1; }
.faq-chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .25s ease, color .2s;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--navy-900);
}
.faq-body {
    padding: 0 24px 20px 62px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

/* ================================================================
   CTA SECTION
================================================================ */
.cta-section {
    background: var(--navy-900);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.cta-divider {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 70%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: .4;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--gold-300);
    font-size: .875rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 999px;
}
.btn-cta-ghost {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.22);
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    transition: background .2s ease, border-color .2s ease;
    cursor: pointer;
}
.btn-cta-ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

/* ================================================================
   AUTH PAGES (login / register)
================================================================ */
/* Auth pages: push content below fixed navbar */
.auth-page {
    padding-top: 0;
}
@media (max-width: 991.98px) {
    .auth-page {
        padding-top: 0;
    }
}

/* Left brand panel */
.auth-brand-panel {
    background: #090e1a;
    background-image:
        radial-gradient(at 0% 0%, rgba(99,102,241,.18) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(139,92,246,.15) 0px, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246,173,85,.12) 0%, transparent 60%);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.auth-brand-panel::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 1px;
    background: rgba(255,255,255,.05);
}
.auth-brand-inner {
    position: relative;
    z-index: 1;
    max-width: 360px;
}
.auth-feature-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: var(--gold-300);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Right form panel */
.auth-form-panel {
    background: #f8fafc;
    background-image: radial-gradient(at top left, rgba(99,102,241,0.02), transparent 50%);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.auth-form-wrap {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 24px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 40px -10px rgba(16,42,67,.04), 0 20px 40px -20px rgba(99,102,241,.08);
    border: 1px solid rgba(16,42,67,.06);
}
.auth-form-wrap--wide {
    max-width: 560px;
}

@media (max-width: 991.98px) {
    .auth-form-panel   { padding: 2rem 1rem; }
    .auth-form-wrap,
    .auth-form-wrap--wide { padding: 1.5rem 1.25rem; border-radius: 18px; max-width: 100%; }
}

/* Form elements */
.auth-label {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 6px;
}
.auth-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: .9rem;
    color: var(--navy-900);
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    transition: all .2s ease;
    font-family: inherit;
}
.auth-input:focus {
    background: #fff;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.auth-input.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.auth-input::placeholder { color: #94a3b8; }
.auth-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2364748b' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
.auth-input-icon {
    position: relative;
}
.auth-input-icon .auth-input {
    padding-right: 44px;
}
.auth-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex; align-items: center;
    transition: color .2s;
}
.auth-eye:hover { color: var(--navy-700); }

.auth-check {
    width: 16px; height: 16px;
    accent-color: var(--navy-900);
    cursor: pointer;
    flex-shrink: 0;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    color: #cbd5e1;
    font-size: .8rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}
.auth-divider span { color: #94a3b8; white-space: nowrap; }

/* Link */
.auth-link {
    color: var(--navy-700);
    text-decoration: none;
    transition: color .2s;
}
.auth-link:hover { color: var(--gold-500); }

/* Info box */
.auth-info-box {
    background: #f8fafc;
    border: 1.5px solid rgba(16,42,67,.08);
    border-radius: 18px;
    padding: 20px;
}

/* Per-field inline error */
.auth-field-error {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
    margin-bottom: 0;
    font-size: .78rem;
    color: #ef4444;
    font-weight: 500;
    line-height: 1.4;
}
.auth-input--error {
    border-color: #ef4444 !important;
    background: #fff5f5;
}
.auth-input--error:focus {
    box-shadow: 0 0 0 3px rgba(239,68,68,.12) !important;
}

/* Password strength bar */
.auth-strength {
    height: 4px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}
.auth-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 99px;
    transition: width .3s ease, background .3s ease;
}

/* Spinner animation for loading states */
@keyframes spin {
    to { transform: rotate(360deg); }
}
.spin {
    animation: spin .7s linear infinite;
    display: inline-block;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
    background: #080d1a;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: .875rem;
    transition: color .2s;
}
.footer-link:hover { color: #fff; }
.footer-social {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    display: inline-flex; align-items: center; justify-content: center;
    color: #94a3b8;
    transition: color .2s, background .2s;
    text-decoration: none;
}
.footer-social:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ================================================================
   SCROLL REVEAL
================================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible {
    opacity: 1;
    transform: none;
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* Logo fallback for broken package images */
.pricing-img--fallback {
    object-fit: contain;
    padding: 12px;
    background: rgba(16, 42, 67, 0.04);
}

/* ================================================================
   ENHANCED LANDING ANIMATIONS
================================================================ */
.hero-animate,
.hero-img,
.hero-float-card,
.hero-stat {
    opacity: 1;
    will-change: opacity, transform;
}

[data-counter] {
    display: inline-block;
    min-width: 1ch;
}

/* Default visible; anime.js will fade in if supported */
[data-animate-title],
[data-stagger] {
    opacity: 1;
    will-change: opacity, transform;
}

/* Floating cards */
.float-card {
    will-change: transform;
}

/* Subtle hover lift (CSS only, no JS) */
.fitur-card,
.pricing-card,
.news-card,
.testi-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fitur-card:hover,
.pricing-card:hover,
.news-card:hover,
.testi-card:hover {
    transform: translateY(-4px);
}

/* News image zoom */
.news-card:hover .news-img {
    transform: scale(1.04);
}

/* CTA trust badge hover */
.cta-trust-badge {
    transition: color 0.2s ease;
}
.cta-trust-badge:hover {
    color: rgba(255,255,255,.85);
}

/* Button transitions */
.btn-gold, .btn-navy, .btn-outline-navy {
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Lazy image skeleton + shimmer */
.lazy-img-wrap {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    background: #f1f5f9;
}
.lazy-img-wrap .lazy-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite linear;
    z-index: 1;
}
@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.lazy-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 0;
}
.lazy-img-wrap img.is-loaded {
    opacity: 1;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-animate,
    .hero-img,
    .hero-float-card,
    .hero-stat,
    [data-animate-title],
    [data-stagger],
    [data-reveal],
    .pm-blob,
    .float-card,
    .fitur-card,
    .pricing-card,
    .news-card,
    .testi-card,
    .btn-gold,
    .btn-navy,
    .btn-outline-navy,
    .cta-trust-badge {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        will-change: auto !important;
    }
}

/* ================================================================
   HERO — CSS STAR PARTICLES + SHIMMER LINE
================================================================ */
/* Tiny twinkling star dots using box-shadow trick on pseudo elements */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    /* 40 randomly positioned tiny dots simulating stars */
    background-image:
        radial-gradient(1px 1px at  7%  12%, rgba(255,255,255,.55) 0%, transparent 100%),
        radial-gradient(1px 1px at 18%  28%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 32%   8%, rgba(255,255,255,.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 45%  22%, rgba(255,255,255,.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 58%   5%, rgba(255,255,255,.50) 0%, transparent 100%),
        radial-gradient(1px 1px at 71%  17%, rgba(255,255,255,.40) 0%, transparent 100%),
        radial-gradient(1px 1px at 84%   9%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 93%  30%, rgba(255,255,255,.45) 0%, transparent 100%),
        radial-gradient(1px 1px at  3%  45%, rgba(255,255,255,.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 14%  60%, rgba(255,255,255,.40) 0%, transparent 100%),
        radial-gradient(1px 1px at 27%  52%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 40%  68%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 55%  75%, rgba(255,255,255,.20) 0%, transparent 100%),
        radial-gradient(1px 1px at 67%  58%, rgba(255,255,255,.40) 0%, transparent 100%),
        radial-gradient(1px 1px at 78%  48%, rgba(255,255,255,.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 89%  65%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 97%  80%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1px 1px at  8%  82%, rgba(255,255,255,.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 22%  90%, rgba(255,255,255,.20) 0%, transparent 100%),
        radial-gradient(1px 1px at 36%  88%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 50%  92%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1px 1px at 62%  85%, rgba(255,255,255,.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 75%  94%, rgba(255,255,255,.20) 0%, transparent 100%),
        radial-gradient(1px 1px at 88%  88%, rgba(255,255,255,.35) 0%, transparent 100%),
        /* Gold-tinted accent stars */
        radial-gradient(1.5px 1.5px at 20%  15%, rgba(246,173,85,.50) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60%  40%, rgba(246,173,85,.35) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 82%  25%, rgba(246,173,85,.40) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 38%  72%, rgba(246,173,85,.30) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at  5%  35%, rgba(246,173,85,.25) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 95%  55%, rgba(246,173,85,.35) 0%, transparent 100%);
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
    animation: starTwinkle 6s ease-in-out infinite alternate;
}

@keyframes starTwinkle {
    0%   { opacity: .7; }
    50%  { opacity: 1;  }
    100% { opacity: .6; }
}

/* Animated diagonal shimmer line across hero */
.hero-shimmer-line {
    position: absolute;
    top: 0; left: -200%;
    width: 60%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,.025) 50%,
        transparent 60%
    );
    z-index: 1;
    pointer-events: none;
    animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%   { left: -200%; }
    100% { left:  200%; }
}

/* Drop shadow for hero illustration */
.drop-shadow {
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.35)) drop-shadow(0 4px 12px rgba(246,173,85,.12));
}

/* ================================================================
   CART
================================================================ */
.cart-item {
    gap: 16px;
}
.min-width-0 {
    min-width: 0;
}
.cart-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(16, 42, 67, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-img-placeholder {
    color: var(--navy-700);
    line-height: 1;
}
.cart-img-placeholder img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.cart-qty-form {
    display: flex;
    align-items: center;
    gap: 6px;
}
.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(16,42,67,.15);
    border-radius: 8px;
    background: #fff;
    color: var(--navy-800);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    cursor: pointer;
    padding: 0;
}
.cart-qty-btn:hover {
    background: var(--navy-900);
    color: #fff;
    border-color: var(--navy-900);
}
.cart-qty-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}
.cart-qty-input {
    width: 48px;
    height: 32px;
    text-align: center;
    border: 1px solid rgba(16,42,67,.15);
    border-radius: 8px;
    font-weight: 700;
    color: var(--navy-900);
    background: #fff;
    appearance: textfield;
    -moz-appearance: textfield;
}
.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.cart-update-btn {
    padding: 4px 12px;
    border: 1px solid var(--navy-900);
    background: transparent;
    color: var(--navy-900);
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    transition: all .2s ease;
    cursor: pointer;
}
.cart-update-btn:hover {
    background: var(--navy-900);
    color: #fff;
}
.cart-summary-total {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    line-height: 1.2;
}
.cart-empty-icon {
    width: 96px;
    height: 96px;
    background: rgba(16,42,67,.06);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
    .cart-img-wrap {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }
    .cart-img-placeholder .material-symbols-outlined {
        font-size: 26px;
    }
}

/* ================================================================
   CHECKOUT
================================================================ */
.checkout-payment-option {
    display: block;
    cursor: pointer;
    margin-bottom: 12px;
}
.checkout-payment-option:last-child {
    margin-bottom: 0;
}
.checkout-payment-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkout-payment-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 2px solid rgba(16,42,67,.12);
    border-radius: 16px;
    background: #fff;
    transition: all .2s ease;
}
.checkout-payment-option:hover .checkout-payment-box {
    border-color: rgba(16,42,67,.25);
}
.checkout-payment-option input:checked + .checkout-payment-box {
    border-color: var(--navy-900);
    background: rgba(16,42,67,.04);
}
.checkout-payment-option input:focus-visible + .checkout-payment-box {
    outline: 2px solid var(--navy-700);
    outline-offset: 2px;
}
.checkout-payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(16,42,67,.08);
    color: var(--navy-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.checkout-payment-option input:checked + .checkout-payment-box .checkout-payment-icon {
    background: var(--navy-900);
    color: #fff;
}
.checkout-payment-text {
    font-weight: 600;
    color: var(--navy-900);
}
.checkout-payment-desc {
    font-size: .8125rem;
    color: #64748b;
    margin-top: 2px;
}
.checkout-summary-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
}
.checkout-summary-item:not(:last-child) {
    border-bottom: 1px solid rgba(16,42,67,.08);
}
.checkout-summary-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(16,42,67,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.checkout-summary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.checkout-summary-placeholder {
    color: var(--navy-700);
    line-height: 1;
}
.checkout-summary-placeholder img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.checkout-total-row {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    line-height: 1.2;
}
.checkout-sticky-summary {
    position: sticky;
    top: 24px;
}
.checkout-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: #64748b;
}
@media (max-width: 991.98px) {
    .checkout-sticky-summary {
        position: static;
    }
}

.navbar-spacer {
    height: 76px;
}
@media (max-width: 991.98px) {
    .navbar-spacer {
        height: 72px;
    }
}

/* ================================================================
   UX ENHANCEMENTS — Toast, loading states, cart feedback
   ================================================================ */

/* ---- Toast container ---- */
.landing-toast-container {
    position: fixed;
    top: 92px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: calc(100% - 40px);
    width: 360px;
}
@media (max-width: 575.98px) {
    .landing-toast-container {
        top: auto;
        bottom: 24px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

/* ---- Toast item ---- */
.landing-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(16,42,67,.08);
    box-shadow: 0 14px 40px rgba(16,42,67,.14), 0 4px 12px rgba(0,0,0,.06);
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy-900);
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .3s ease;
    position: relative;
    overflow: hidden;
}
.landing-toast--show {
    transform: translateX(0);
    opacity: 1;
}
.landing-toast__icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-toast--success .landing-toast__icon {
    background: #dcfce7;
    color: #16a34a;
}
.landing-toast--error .landing-toast__icon {
    background: #fee2e2;
    color: #dc2626;
}
.landing-toast--warn .landing-toast__icon {
    background: #fef3c7;
    color: #d97706;
}
.landing-toast__message {
    flex: 1;
    line-height: 1.45;
}
.landing-toast__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(16,42,67,.12);
}

@media (prefers-reduced-motion: reduce) {
    .landing-toast {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ---- Button loading state ---- */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: .92;
}
.btn-loading .btn-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin .7s linear infinite;
    vertical-align: middle;
    margin-right: .4em;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ---- Add-to-cart success state ---- */
.btn-added {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ---- Nav cart badge pulse ---- */
.nav-cart-badge--pulse {
    animation: badgePulse .55s ease;
}
@keyframes badgePulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.35); }
    70% { transform: scale(.9); }
    100% { transform: scale(1); }
}

/* ---- Mobile floating cart button ---- */
.cart-mobile-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(16,42,67,.35);
    transition: transform .2s ease, opacity .2s ease;
}
.cart-mobile-fab:hover {
    color: #fff;
    transform: translateY(-2px);
}
.cart-mobile-fab--visible {
    display: inline-flex;
}
.cart-mobile-fab__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ---- Cart item transition ---- */
.cart-item {
    transition: opacity .3s ease, transform .3s ease;
}
.cart-item--removing {
    opacity: 0;
    transform: translateX(16px);
}

/* ---- Cart qty loading state ---- */
.cart-qty-form.is-loading .cart-qty-btn,
.cart-qty-form.is-loading .cart-qty-input {
    opacity: .55;
    pointer-events: none;
}

/* ---- Checkout form loading state ---- */
#checkoutForm button[type="submit"].btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
