/* ==========================================================================
   DRC Fashion Store — Premium E-commerce Theme v2
   ========================================================================== */

:root {
    --navy: #0f0f1a;
    --navy-soft: #1a1a2e;
    --gold: #c9a227;
    --gold-dark: #a8861f;
    --gold-light: #f5ecd4;
    --cream: #faf8f5;
    --white: #ffffff;
    --text: #1c1c28;
    --text-soft: #5c5c6f;
    --border: #e8e4de;
    --shadow-sm: 0 2px 8px rgba(15, 15, 26, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 15, 26, 0.1);
    --shadow-lg: 0 20px 50px rgba(15, 15, 26, 0.14);
    --radius: 14px;
    --radius-sm: 8px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --header-h: 130px;
    --transition: 0.25s ease;
}

[data-theme="dark"] {
    --cream: #0d0d14;
    --white: #16161f;
    --text: #ececf0;
    --text-soft: #9898a8;
    --border: #2a2a38;
    --gold-light: #2a2618;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5, .section-title, .page-banner-title, .hero-title, .product-detail-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.site-main {
    min-height: 50vh;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}
.site-main [class*="col-"] {
    min-width: 0;
}

/* ---- Alerts ---- */
.site-alert { border-radius: 0; border: none; margin: 0; text-align: center; font-weight: 500; }

/* ---- Top bar ---- */
.top-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.top-bar-promo i { color: var(--gold); margin-right: 6px; }
.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Language & currency pill switcher (no dropdown overlap) */
.locale-group {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}
.locale-pill {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.locale-pill:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.locale-pill.active {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
}
.locale-group-light {
    background: var(--cream);
    border-color: var(--border);
}
.locale-group-light .locale-pill {
    color: var(--text-soft);
}
.locale-group-light .locale-pill.active {
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.offcanvas-locale-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .top-bar-promo { font-size: 11px; max-width: 52%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .locale-pill { padding: 4px 10px; font-size: 10px; }
}

/* ---- Header ---- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1030;
}
[data-theme="dark"] .site-header { background: var(--white); }

.site-header .navbar { padding: 14px 0; }

.header-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.header-toolbar {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 0;
    flex-shrink: 0;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar-brand {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy) !important;
    line-height: 1;
}
.brand-mark {
    color: var(--gold);
    font-weight: 700;
}
.brand-name { color: var(--navy); }

.header-search { flex: 1; max-width: 420px; margin: 0 2rem; }

.search-form {
    position: relative;
    width: 100%;
}
.search-form .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
    pointer-events: none;
    z-index: 2;
}
.search-form .form-control {
    padding: 10px 16px 10px 42px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--cream);
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.search-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    background: var(--white);
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: var(--navy);
    font-size: 1.2rem;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
    position: relative;
    text-decoration: none;
}
.header-icon-btn:hover { background: var(--gold-light); color: var(--gold-dark); }

/* Hide Bootstrap dropdown caret on icon-only header buttons */
.header-icon-btn.dropdown-toggle::after {
    display: none;
}
.header-icon-btn.dropdown-toggle {
    padding: 0;
}

.header-cart .cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler,
.header-menu-toggle {
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}
.navbar-toggler:focus,
.header-menu-toggle:focus { box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2); }

@media (max-width: 991.98px) {
    .header-row {
        flex-wrap: nowrap;
    }
    .navbar-brand {
        flex-shrink: 0;
        max-width: 46%;
    }
    .header-toolbar {
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
        margin-left: auto;
        gap: 0;
    }
    .header-icons {
        gap: 0;
        flex-shrink: 1;
        min-width: 0;
        justify-content: flex-end;
    }
    .header-menu-toggle {
        margin-left: 14px;
        padding: 8px 11px;
        flex-shrink: 0;
    }
}

/* Secondary nav (desktop) */
.nav-secondary {
    border-top: 1px solid var(--border);
    background: var(--white);
}
.nav-secondary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 28px;
}
.nav-secondary-list a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: var(--text-soft);
    position: relative;
}
.nav-secondary-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
.nav-secondary-list a:hover::after,
.nav-secondary-list a.active::after {
    width: 100%;
}
.nav-secondary-list a:hover,
.nav-secondary-list a.active { color: var(--navy); }
.nav-flash { color: var(--gold-dark) !important; font-weight: 600 !important; }
.nav-flash i { margin-right: 4px; }

/* Mobile offcanvas menu */
.nav-offcanvas {
    width: min(300px, 88vw);
    border-left: 1px solid var(--border);
    background: var(--white);
    display: flex;
    flex-direction: column;
    max-height: 100dvh;
}
.nav-offcanvas-header {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
}
.nav-offcanvas .offcanvas-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.nav-offcanvas-body {
    padding: 1.15rem 1.25rem;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
.offcanvas-locale-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 1.15rem;
    flex-shrink: 0;
}
.offcanvas-locale-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.offcanvas-locale-row + .offcanvas-locale-row {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.offcanvas-locale-row .offcanvas-locale-label {
    margin-bottom: 0;
    flex-shrink: 0;
}
.offcanvas-locale-row .locale-group {
    flex-shrink: 0;
}
.offcanvas-nav-wrap {
    display: block;
}
.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.offcanvas-nav li {
    margin-bottom: 4px;
}
.offcanvas-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-weight: 500;
    font-size: 15px;
    color: var(--navy);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.offcanvas-nav a i {
    width: 22px;
    font-size: 1.15rem;
    color: var(--text-soft);
    flex-shrink: 0;
    transition: color var(--transition);
}
.offcanvas-nav a span {
    flex: 1;
}
.offcanvas-nav a::after {
    font-family: "bootstrap-icons";
    content: "\f285";
    font-size: 0.85rem;
    color: var(--text-soft);
    opacity: 0.45;
}
.offcanvas-nav a:hover,
.offcanvas-nav a:focus {
    background: var(--gold-light);
    color: var(--navy);
}
.offcanvas-nav a:hover i,
.offcanvas-nav a:focus i {
    color: var(--gold-dark);
}
.offcanvas-nav a.nav-flash-link {
    background: rgba(201, 162, 39, 0.12);
    color: var(--gold-dark);
    font-weight: 600;
}
.offcanvas-nav a.nav-flash-link i {
    color: var(--gold-dark);
}
.nav-offcanvas-footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 -6px 20px rgba(15, 15, 26, 0.06);
}
.nav-offcanvas-footer .btn {
    display: block;
    width: 100%;
}
.nav-offcanvas-footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.offcanvas-account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    border-radius: var(--radius-sm);
}
.offcanvas-account-link:hover {
    background: var(--cream);
    color: var(--navy);
}
.offcanvas-account-link i {
    width: 20px;
    font-size: 1.1rem;
}

/* ---- Buttons ---- */
.btn-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy) !important;
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
    color: var(--navy) !important;
}
.btn-outline-dark {
    border-radius: 50px;
    font-weight: 600;
    padding: 11px 24px;
}

.bg-accent { background: var(--gold) !important; color: var(--navy) !important; }

/* ---- Page banner (inner pages) ---- */
.page-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    padding: 48px 0 44px;
}
.page-banner-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}
.page-banner-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 6px;
}
.page-banner-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0;
    color: #fff;
}
.page-breadcrumb { margin-top: 8px; }
.page-breadcrumb .breadcrumb-item,
.page-breadcrumb .breadcrumb-item a { color: rgba(255, 255, 255, 0.65); font-size: 14px; }
.page-breadcrumb .breadcrumb-item.active { color: var(--gold); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }

/* ---- Section utilities ---- */
.section-block { padding: 64px 0; }
.section-block-sm { padding: 48px 0; }
.section-header { margin-bottom: 40px; }
.section-header-center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-dark);
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    margin-bottom: 8px;
    color: var(--navy);
}
.section-desc { color: var(--text-soft); margin: 0; font-size: 16px; }

.content-wrap { padding: 48px 0 64px; }

/* ---- Hero ---- */
.hero-section { margin: 0; }
.hero-section .carousel { border-radius: 0; }
.hero-slide {
    min-height: clamp(440px, 58vh, 620px);
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 15, 26, 0.88) 0%, rgba(15, 15, 26, 0.5) 55%, rgba(15, 15, 26, 0.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 560px;
    padding: 48px 0;
}
.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next { width: 56px; opacity: 0.7; }
.hero-section .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.5); border: none;
}
.hero-section .carousel-indicators .active { background: var(--gold); }

/* Trust bar */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}
.trust-item i {
    font-size: 1.35rem;
    color: var(--gold);
}

/* Categories */
.category-card {
    display: block;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-md);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, rgba(15, 15, 26, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
}
.category-overlay h3 {
    font-size: 1.65rem;
    margin: 0 0 6px;
    color: #fff;
}
.category-link {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}
.category-link i { transition: transform var(--transition); }
.category-card:hover .category-link i { transform: translateX(4px); }

/* Product cards */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #f0eeea;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.product-card:hover .product-img { transform: scale(1.04); }
.badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e63946;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
.badge-flash {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}
.product-actions {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    display: flex;
    gap: 8px;
    transition: all var(--transition);
    z-index: 3;
}
.product-card:hover .product-actions,
.product-card:focus-within .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.btn-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    font-size: 1rem;
    color: var(--navy);
    transition: all var(--transition);
}
.btn-action:hover { background: var(--gold); color: var(--navy); }

.product-card-body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-brand {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    font-weight: 600;
}
.product-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin: 6px 0 8px;
    line-height: 1.4;
    flex: 1;
}
.product-title a:hover { color: var(--gold-dark); }
.product-rating { font-size: 13px; margin-bottom: 10px; }
.product-price .price-current {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}
.product-price .price-original {
    text-decoration: line-through;
    color: var(--text-soft);
    font-size: 14px;
    margin-left: 8px;
}

/* Flash sale section */
.section-flash {
    background: linear-gradient(160deg, var(--navy) 0%, #252540 100%);
    padding: 64px 0;
}
.flash-header {
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 36px;
}
.flash-header h2 { color: #fff; font-size: 1.75rem; margin-bottom: 4px; }
.flash-header p { color: rgba(255,255,255,0.6); margin: 0; }
.countdown-timer { display: flex; gap: 10px; flex-wrap: wrap; }
.countdown-box {
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    color: #fff;
    min-width: 64px;
}
.countdown-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
}
.countdown-box small { font-size: 10px; text-transform: uppercase; opacity: 0.7; margin-top: 4px; display: block; }

/* Testimonials */
.section-testimonials {
    background: var(--navy);
    padding: 72px 0;
}
.section-testimonials .section-title { color: #fff; }
.section-testimonials .section-desc { color: rgba(255,255,255,0.6); }
.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
}
.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.88);
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.7;
}
.testimonial-author strong { color: #fff; display: block; }
.testimonial-author small { color: rgba(255, 255, 255, 0.5); }

/* Newsletter — full width premium (light theme) */
.newsletter-premium {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 88px 0;
    margin-bottom: 0;
    overflow: hidden;
    background: #f8f5f0;
}
.newsletter-premium-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(128deg, #faf8f4 0%, #f3efe8 42%, #ebe4dc 100%);
    opacity: 1;
}
.newsletter-premium-glow {
    position: absolute;
    top: -30%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(114, 47, 55, 0.08) 0%, transparent 68%);
    pointer-events: none;
}
.newsletter-premium::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(45, 74, 94, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-premium-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
.newsletter-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #722f37;
    margin-bottom: 14px;
}
.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: #1a1d26;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.newsletter-lead {
    font-size: 1.05rem;
    color: #5c6370;
    margin: 0 0 28px;
    max-width: 420px;
    line-height: 1.65;
}
.newsletter-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.newsletter-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #3d4450;
    font-size: 15px;
    font-weight: 500;
}
.newsletter-perks i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8e0d8;
    color: #722f37;
    box-shadow: 0 4px 14px rgba(114, 47, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.newsletter-form-card {
    background: #ffffff;
    border: 1px solid #e8e2da;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 20px 50px rgba(26, 29, 38, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.newsletter-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a919c;
    margin-bottom: 12px;
}
.newsletter-input-wrap {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #f8f6f3;
    border: 1px solid #e5dfd6;
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.newsletter-input-wrap:focus-within {
    border-color: #722f37;
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.12);
    background: #fff;
}
.newsletter-input-wrap > i {
    align-self: center;
    color: var(--text-soft);
    font-size: 1.15rem;
    margin-right: 4px;
}
.newsletter-input-wrap .form-control {
    border: none;
    background: transparent;
    padding: 14px 8px;
    font-size: 16px;
    box-shadow: none;
    flex: 1;
    min-width: 0;
}
.newsletter-input-wrap .form-control:focus {
    outline: none;
    box-shadow: none;
}
.btn-newsletter-submit {
    background: linear-gradient(135deg, #722f37 0%, #5a2430 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-newsletter-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #8a3a44 0%, #722f37 100%);
    box-shadow: 0 8px 24px rgba(114, 47, 55, 0.28);
    color: #fff;
}
.newsletter-form-note {
    margin: 16px 0 0;
    font-size: 12px;
    color: #8a919c;
    display: flex;
    align-items: center;
    gap: 8px;
}
.newsletter-form-note i { color: #722f37; }

@media (max-width: 991px) {
    .newsletter-premium { padding: 64px 0; }
    .newsletter-lead { max-width: none; }
    .newsletter-form-card { padding: 28px 24px; }
}
@media (max-width: 575px) {
    .newsletter-input-wrap {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
        border-radius: 16px;
    }
    .newsletter-input-wrap > i { display: none; }
    .newsletter-input-wrap .form-control { padding: 12px; text-align: center; }
    .btn-newsletter-submit { width: 100%; border-radius: 12px; justify-content: center; }
}

/* Smart search hints */
.search-smart-hint {
    background: var(--gold-light);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
}
.search-smart-hint p { margin: 0; }

/* Filter sidebar */
.filter-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
@media (min-width: 992px) {
    .filter-panel.sticky-lg-top {
        position: sticky;
        top: 140px;
        z-index: 10;
    }
}
.filter-panel h5 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.filter-panel .form-label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.filter-panel .form-select,
.filter-panel .form-control { border-radius: var(--radius-sm); border-color: var(--border); font-size: 14px; }

.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.shop-count { color: var(--text-soft); font-size: 14px; margin: 0; }

/* Product detail */
.product-detail-grid { padding: 48px 0 64px; }
.product-gallery {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.main-product-img { width: 100%; max-height: 640px; object-fit: cover; }
.product-detail-info { padding: 0 0 0 24px; }
@media (max-width: 991px) {
    .product-detail-info { padding: 32px 0 0; }
}
.product-detail-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 12px; }
.product-detail-price .price-current { font-size: 2rem; color: var(--navy); font-weight: 700; }
.size-option, .color-option { cursor: pointer; margin: 0; }
.size-option input, .color-option input { display: none; }
.size-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
}
.size-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--navy);
}
.color-option {
    display: inline-flex;
    padding: 8px 16px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}
.color-option:has(input:checked) { border-color: var(--gold); background: var(--gold-light); }
.qty-selector .form-control { font-weight: 600; }
.product-meta-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 24px;
}
.product-meta-box .col-6 { font-size: 14px; color: var(--text-soft); }
.product-meta-box i { color: var(--gold); margin-right: 8px; }

.product-thumbs .product-thumb-btn {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    width: 72px;
    height: 72px;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.product-thumbs .product-thumb-btn.active,
.product-thumbs .product-thumb-btn:hover { border-color: var(--gold); }
.product-thumbs .product-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

/* Tabs */
.nav-tabs { border-bottom: 2px solid var(--border); gap: 8px; }
.nav-tabs .nav-link {
    border: none;
    color: var(--text-soft);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-tabs .nav-link.active {
    color: var(--navy);
    background: transparent;
    border-bottom: 2px solid var(--gold);
    margin-bottom: -2px;
}

/* Cart & checkout */
.cart-item {
    background: var(--white);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    align-items: center;
}
.cart-item-img { width: 100px; height: 120px; object-fit: cover; flex-shrink: 0; }
.cart-summary, .checkout-section, .auth-card {
    background: var(--white);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
}
.cart-summary h5, .checkout-section h5 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
}
.payment-option:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-light);
}
.payment-option input { margin-right: 12px; accent-color: var(--gold); }
.payment-option span { font-weight: 500; }
.payment-option-disabled {
    opacity: .6;
    cursor: not-allowed;
    background: #f8f9fb;
}
.payment-option-disabled input {
    pointer-events: none;
}

/* Auth pages */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 48px 0 64px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.auth-card {
    box-shadow: var(--shadow-lg) !important;
    max-width: 440px;
    margin: 0 auto;
}
.auth-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
}
.auth-card .form-control {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-color: var(--border);
}
.auth-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

/* Profile sidebar */
.profile-sidebar .list-group-item {
    border-color: var(--border);
    padding: 14px 20px;
    font-weight: 500;
}
.profile-sidebar .list-group-item.active {
    background: var(--gold-light);
    color: var(--navy);
    border-color: var(--gold);
}

/* Order tracking */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}
.progress-tracker::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--border);
}
.tracker-step { text-align: center; position: relative; z-index: 1; flex: 1; font-size: 13px; font-weight: 500; color: var(--text-soft); }
.tracker-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    margin: 0 auto 10px;
}
.tracker-step.active .tracker-dot { background: var(--gold); }
.tracker-step.active { color: var(--navy); }
.tracker-step.current .tracker-dot { box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.35); }

.order-status-pending { background: #ffc107; color: #1a1a2e; }
.order-status-confirmed { background: #0dcaf0; color: #000; }
.order-status-shipped { background: #0d6efd; color: #fff; }
.order-status-delivered { background: #198754; color: #fff; }
.order-status-cancelled { background: #dc3545; color: #fff; }

.orders-list-card { border-radius: var(--radius-lg, 12px); box-shadow: var(--shadow-sm, 0 2px 12px rgba(0,0,0,.06)); }
.orders-table thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted, #6c757d); white-space: nowrap; }
.orders-table tbody tr.order-row-main:hover { background: rgba(128, 0, 32, .03); }
.orders-table .btn + form { margin-left: .25rem; }
.orders-table tr.order-row-items > td { background: #faf8f6; border-top: none; }
.order-items-block { padding: .75rem 1.25rem 1rem; border-top: 1px dashed rgba(128, 0, 32, .15); }
.order-items-label { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--burgundy, #800020); margin-bottom: .5rem; }
.order-items-list { list-style: none; padding: 0; }
.order-item-line { display: flex; align-items: center; gap: .75rem; padding: .5rem 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.order-item-line:last-child { border-bottom: none; padding-bottom: 0; }
.order-item-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: #eee; }
.order-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .1rem; }
.order-item-name { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.order-item-variant, .order-item-qty { font-size: .78rem; }
.order-item-price { font-weight: 600; font-size: .9rem; white-space: nowrap; color: var(--navy, #1a1a2e); }
@media (max-width: 767.98px) {
    .orders-table thead { display: none; }
    .orders-table tbody tr.order-row-main { display: block; padding: 1rem 1rem .5rem; border-bottom: none; }
    .orders-table tbody tr.order-row-main td { display: flex; justify-content: space-between; align-items: center; border: none; padding: .35rem 0; }
    .orders-table tbody tr.order-row-main td::before { content: attr(data-label); font-weight: 600; font-size: .75rem; text-transform: uppercase; color: #6c757d; margin-right: 1rem; }
    .orders-table tr.order-row-items { display: block; }
    .orders-table tr.order-row-items > td { display: block; }
    .order-item-line { flex-wrap: wrap; }
    .order-item-price { width: 100%; text-align: right; padding-left: calc(48px + .75rem); }
}

/* Confirmation */
.confirmation-page { padding: 80px 0; text-align: center; }
.confirmation-icon i { font-size: 5rem; color: #198754; }
.confirmation-details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: inline-block;
    text-align: left;
    min-width: 320px;
    box-shadow: var(--shadow-sm);
}

/* Footer */
.site-footer { margin-top: 64px; }
/* Remove white gap when newsletter sits directly above footer */
.site-main:has(.newsletter-premium) + .site-footer {
    margin-top: 0;
}
.footer-main {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 0 48px;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 16px;
}
.footer-brand .brand-mark { color: var(--gold); margin-right: 6px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-heading {
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    align-items: flex-start;
}
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); }

.footer-bottom {
    background: #0a0a12;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.footer-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-trust i { color: var(--gold); margin-right: 6px; }

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 1020;
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff !important; }

/* Quick view modal */
.quick-view-content { border-radius: var(--radius); border: none; }
.quick-view-content .modal-header { padding: 16px 20px 0; }

/* Pagination */
.pagination .page-link {
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    border-color: var(--border);
    color: var(--text);
    font-weight: 500;
}
.pagination .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Empty states */
.empty-state {
    text-align: center;
    padding: 64px 24px;
}
.empty-state i { font-size: 4rem; color: var(--border); }
.empty-state h3 { margin: 20px 0 8px; font-family: var(--font-display); }

/* Bootstrap overrides */
.breadcrumb { --bs-breadcrumb-divider: '›'; }
.dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px; }
.dropdown-item { border-radius: 6px; font-size: 14px; padding: 8px 12px; }
.dropdown-item:hover { background: var(--gold-light); color: var(--navy); }

.bg-light-subtle { background: var(--white) !important; }

/* Responsive */
@media (max-width: 991px) {
    .header-search { display: none !important; }
    .nav-secondary { display: none !important; }
    .product-detail-info { padding-left: 0; }
    .flash-header { flex-direction: column; text-align: center; }
    .countdown-timer { justify-content: center; }
    .hero-slide { min-height: 420px; }
    .hero-content { max-width: 100%; padding-right: 16px; }
    .section-header { margin-bottom: 28px; }
    .product-detail-grid { padding-top: 28px; }
    .main-product-img { max-height: 500px; }
    .shop-toolbar { gap: 10px; }
    .shop-toolbar .form-select,
    .shop-toolbar .form-control { min-width: 0; }
    .cart-summary { position: static !important; top: auto !important; }
}

@media (max-width: 767px) {
    .top-bar-inner { flex-wrap: nowrap; }
    .locale-group-currency { display: none; }
    .section-block { padding: 48px 0; }
    .hero-content { padding: 32px 0; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-trust { justify-content: center; }
    .product-actions { opacity: 1; transform: translateX(-50%) translateY(0); }
    .cart-item { flex-wrap: wrap; }
    .page-banner { padding: 36px 0 32px; }
    .hero-slide { min-height: 360px; }
    .hero-content { padding: 24px 0; }
    .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); }
    .hero-subtitle { margin-bottom: 18px; font-size: .95rem; }
    .carousel-control-prev,
    .carousel-control-next { display: none; }
    .trust-item { justify-content: flex-start; font-size: 13px; }
    .category-overlay { padding: 16px; }
    .category-overlay h3 { font-size: 1.2rem; }
    .product-card-body { padding: 14px; }
    .product-title { font-size: .95rem; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .shop-count { text-align: center; }
    .product-thumbs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .product-thumbs .product-thumb-btn { flex: 0 0 64px; }
    .checkout-section,
    .cart-summary { padding: 16px !important; }
    .payment-option { padding: 12px 14px; align-items: flex-start; }
    .payment-option span { font-size: .92rem; line-height: 1.35; }
    .auth-page { padding: 28px 0 40px; }
    .auth-card { max-width: 100%; border-radius: 14px; }
    .orders-table tr.order-row-items > td { padding: 0 !important; }
    .order-items-block { padding: .65rem .85rem .85rem; }
}

@media (max-width: 575px) {
    .navbar-brand { font-size: 1.35rem; max-width: 40%; }
    .header-icon-btn { width: 36px; height: 36px; font-size: 1.05rem; }
    .header-menu-toggle {
        margin-left: 8px;
        padding: 7px 10px;
    }
    .header-icons .header-icon-btn[aria-label="Wishlist"] {
        display: none;
    }
    .container { padding-left: 14px; padding-right: 14px; }
    .hero-badge { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }
    .btn.btn-lg { padding: .65rem 1rem; font-size: .95rem; }
    .section-block { padding: 40px 0; }
    .section-title { font-size: clamp(1.5rem, 8vw, 2rem); }
    .empty-state { padding: 44px 16px; }
}

/* ---- Mobile layout (all storefront pages) ---- */
@media (max-width: 991.98px) {
    .site-header .container,
    .site-footer .container,
    .content-wrap > .container,
    .product-detail-grid > .container,
    .auth-page > .container {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
    .page-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .page-banner-title {
        font-size: clamp(1.5rem, 6vw, 2.1rem);
        overflow-wrap: anywhere;
    }
    .filter-panel.sticky-lg-top {
        position: static !important;
        top: auto !important;
    }
    .filter-panel {
        padding: 20px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .product-detail-grid {
        padding: 20px 0 48px;
    }
    .product-detail-grid > .container {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
    .product-detail-grid .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1.25rem;
    }
    .product-detail-title {
        font-size: clamp(1.35rem, 5.5vw, 1.85rem);
        line-height: 1.2;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .product-detail-price {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 12px;
    }
    .product-detail-price .price-current {
        font-size: 1.65rem;
    }
    .product-detail-info {
        padding: 1.25rem 0 0;
    }
    .main-product-img {
        max-height: min(75vw, 440px);
        width: 100%;
    }
    .product-gallery .main-product-img {
        display: block;
    }
    .breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
        margin-bottom: 0.75rem !important;
    }
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 14px;
        font-size: 14px;
    }
    .product-meta-box .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .cart-item-img {
        width: 80px;
        height: 96px;
    }
    .cart-item .flex-grow-1 {
        min-width: 0;
    }
    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
    .whatsapp-float {
        bottom: max(16px, env(safe-area-inset-bottom, 16px));
        right: max(16px, env(safe-area-inset-right, 16px));
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .modal-dialog {
        margin: 0.75rem auto;
        max-width: calc(100% - 1.5rem);
    }
    .newsletter-premium-inner {
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }
}

@media (max-width: 360px) {
    .top-bar { padding: 6px 0; }
    .top-bar-inner { gap: 6px; }
    .top-bar-promo {
        font-size: 10px;
        max-width: 58%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .locale-group { gap: 4px; padding: 2px; }
    .locale-pill { padding: 3px 8px; font-size: 9px; min-width: 34px; }

    .site-header .navbar { padding: 10px 0; }
    .navbar-brand { font-size: 1.18rem; gap: 2px; }
    .header-icons { gap: 0 !important; }
    .header-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .header-menu-toggle {
        padding: 7px 10px;
        margin-left: 12px;
    }

    .offcanvas-nav a { padding: 11px 12px; font-size: 14px; }
    .offcanvas-locale-label { font-size: 10px; }
    .offcanvas-locale-card { padding: 12px; }

    .checkout-section,
    .cart-summary { padding: 12px !important; border-radius: 12px; }
    .checkout-section h5,
    .cart-summary h5 { font-size: 1.05rem; margin-bottom: 14px; }
    .checkout-section .form-control,
    .checkout-section .form-select {
        font-size: 14px;
        padding: 9px 10px;
    }
    .payment-option { padding: 10px 10px; margin-bottom: 8px; gap: 6px; }
    .payment-option input { margin-right: 8px; margin-top: 2px; }
    .payment-option span { font-size: .84rem; line-height: 1.3; }
    .cart-summary .fw-bold.fs-5 { font-size: 1.05rem !important; }
    .cart-summary .btn.btn-lg,
    .checkout-section .btn.btn-lg { padding: .58rem .85rem; font-size: .9rem; }
}

/* Scrolled header */
.site-header.scrolled { box-shadow: var(--shadow-md); }

/* ---- Premium interactions ---- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.trust-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-item:hover {
    transform: translateY(-3px);
}
.category-card,
.dash-stat-card,
.auth-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-accent {
    position: relative;
    overflow: hidden;
}
.btn-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.btn-accent:hover::after {
    transform: translateX(100%);
}
.hero-content .hero-title,
.hero-content .hero-subtitle,
.hero-content .hero-badge,
.hero-content .btn {
    animation: heroFadeUp 0.8s ease backwards;
}
.hero-content .hero-badge { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.2s; }
.hero-content .hero-subtitle { animation-delay: 0.35s; }
.hero-content .btn { animation-delay: 0.5s; }
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.locale-pill.is-loading {
    opacity: 0.6;
    pointer-events: none;
}
html { scroll-behavior: smooth; }
