/* =============================================================================
   Liason Furniture - Modern Office Furniture Theme
   Design System: Charcoal #1A1C1E | Gold #C5A059 | Off-white #F8F9FA
   Mobile-first · Conversion-optimized · SEO-ready
   ============================================================================= */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
    /* Primary: Deep Charcoal / Slate (Elegant & Professional) */
    --lf-charcoal: #1A1C1E;
    --lf-charcoal-light: #2C2F33;
    --lf-charcoal-dark: #121416;
    
    /* Accent: Luxe Gold / Champagne (Sophisticated Furniture Feel) */
    --lf-gold: #C5A059;
    --lf-gold-light: #D4B67C;
    --lf-gold-dark: #A6823F;
    --lf-gold-50: rgba(197, 160, 89, 0.05);
    
    /* Backgrounds: Off-White & Cream (Soft Interior Vibes) */
    --lf-white: #FFFFFF;
    --lf-cream: #F9F7F2;
    --lf-off-white: #F8F9FA;
    --lf-light-gray: #F2F4F7;
    --lf-charcoal-50: rgba(26, 28, 30, 0.05);
    --lf-gold-100: rgba(197, 160, 89, 0.12);
    
    /* Neutral Palette */
    --lf-gray-100: #F8FAFC;
    --lf-gray-200: #E2E8F0;
    --lf-gray-300: #CBD5E1;
    --lf-gray-400: #94A3B8;
    --lf-gray-500: #64748B;
    --lf-gray-600: #475569;
    --lf-gray-700: #334155;
    --lf-gray-800: #1E293B;
    --lf-gray-900: #0F172A;

    /* Semantics */
    --lf-success: #10B981;
    --lf-danger: #EF4444;
    --lf-warning: #F59E0B;
    
    /* Shadows (Softer & More Elegant) */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.2);

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Alias — templates reference --lf-orange for the hero accent span */
    --lf-orange: var(--lf-gold);

    /* Bootstrap Overrides */
    --bs-primary: #1A1C1E;
    --bs-body-font-family: var(--font-primary);
}

/* ─── RESET & BASE ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    color: var(--lf-gray-800);
    background: var(--lf-white);
    line-height: 1.7;
    margin: 0;
    overflow-x: hidden;
    font-size: 0.95rem;
}

a {
    color: var(--lf-charcoal);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--lf-gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--lf-gray-900);
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--lf-gold-100);
    color: var(--lf-charcoal);
}

.site-logo {
    max-height: 44px;
    width: auto;
    transition: var(--transition);
}

/* Full wordmark from admin (horizontal logo — not a square icon) */
.site-logo-navbar {
    max-height: 48px;
    height: auto;
    width: auto;
    max-width: min(260px, 62vw);
}
/* ─── BRAND UTILITIES ────────────────────────────────────────────────── */
.text-navy { color: var(--lf-charcoal) !important; }
.text-orange { color: var(--lf-gold) !important; }
.bg-navy { background-color: var(--lf-charcoal) !important; }
.bg-orange { background-color: var(--lf-gold) !important; }

.btn-navy {
    background-color: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
    color: var(--lf-white);
}

.btn-navy:hover {
    background-color: var(--lf-charcoal-light);
    border-color: var(--lf-charcoal-light);
    color: var(--lf-white);
}

.btn-orange {
    background-color: var(--lf-gold);
    border-color: var(--lf-gold);
    color: var(--lf-white);
}

.btn-orange:hover {
    background-color: var(--lf-gold-dark);
    border-color: var(--lf-gold-dark);
    color: var(--lf-white);
}

.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

/* ─── PROMO BAR ──────────────────────────────────────────────────────── */
/* In document flow (scrolls away); fixed navbar top follows promo bottom in viewport (main.js) */
#promoBar {
    background: var(--lf-gold);
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    padding: 10px 0 !important;
    width: 100%;
    flex-shrink: 0;
}

#promoBar .promo-text-display {
    transition: opacity 0.3s ease;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ─── OFFCANVAS (above promo bar) ────────────────────────────────────── */
.offcanvas {
    z-index: 1080 !important;
}

.offcanvas-backdrop {
    z-index: 1070 !important;
}

/* ─── REDESIGNED FLOATING HEADER ────────────────────────────────────── */
header.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 1.8rem;
    z-index: 1050;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-top: none; /* Removed the old gold border-top */
}

header.navbar.scrolled {
    top: 10px;
    width: 98%;
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 16px;
    padding: 0.4rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

header.navbar > .container {
    padding-top: 0;
    padding-bottom: 0;
    overflow: visible;
}

/* Typography & Navigation Links */
header.navbar .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lf-charcoal) !important;
    padding: 10px 18px !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

header.navbar .nav-link:hover {
    color: var(--lf-gold) !important;
    background: rgba(197, 160, 89, 0.06);
}

header.navbar .nav-link.active {
    color: var(--lf-gold) !important;
    background: rgba(197, 160, 89, 0.1);
}

header.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 3px;
    background: var(--lf-gold);
    border-radius: 4px;
}

/* Integrated Search Bar */
.header-search-container {
    position: relative;
    margin: 0 1.5rem;
    display: flex;
    align-items: center;
}

.header-search-container form {
    position: relative;
    width: 100%;
}

.header-search-input {
    background: rgba(26, 28, 30, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 8px 16px 8px 40px;
    font-size: 0.85rem;
    width: 200px;
    transition: all 0.3s ease;
    color: var(--lf-charcoal);
}

.header-search-input:focus {
    width: 280px;
    background: #fff;
    border-color: var(--lf-gold);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
    outline: none;
}

.header-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lf-gray-400);
    pointer-events: none;
    transition: color 0.3s ease;
}

.header-search-input:focus + .header-search-icon {
    color: var(--lf-gold);
}

/* Action Buttons (Cart, Saved) */
header.navbar .btn-cart-header {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 14px;
    transition: all 0.3s ease;
}

header.navbar .btn-cart-header:hover {
    background: #fff;
    border-color: var(--lf-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.12);
}

header.navbar .cart-count {
    top: -4px;
    right: -4px;
    background: var(--lf-gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    border: 2px solid #fff;
}

/* User Avatar */
.user-avatar-header {
    border: 2px solid var(--lf-gold-light) !important;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.1);
    transition: transform 0.3s ease;
}

.user-avatar-header:hover {
    transform: scale(1.1);
}

/* Utility Bar Adjustments */
.header-utility-bar {
    display: none; /* Hide old utility bar in floating design or keep it minimal */
}

/* Transparent Header (Hero Page) */
header.transparent-header {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px) saturate(150%);
}

header.transparent-header .nav-link {
    color: #fff !important;
}

header.transparent-header .header-search-input {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

header.transparent-header .header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

header.transparent-header .header-search-input:focus {
    background: rgba(255, 255, 255, 0.2);
    width: 280px;
}

/* ── Centered-logo split nav ── */
@media (min-width: 992px) {
    header.navbar > .container.lf-split-nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas: "left brand right";
        align-items: center;
        gap: 0;
    }
    .lf-nav-left  { grid-area: left;  display: flex !important; justify-content: flex-start; }
    .lf-nav-brand { grid-area: brand; margin: 0; }
    .lf-nav-right { grid-area: right; display: flex !important; justify-content: flex-end; }
    .lf-mobile-actions { display: none !important; }
    header.navbar .lf-mobile-collapse { display: none !important; }
}

@media (max-width: 991.98px) {
    header.navbar > .container.lf-split-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }
    .lf-nav-left, .lf-nav-right { display: none !important; }
    .lf-nav-brand { order: 1; margin-right: auto; }
    .lf-mobile-actions { order: 2; }
    .lf-mobile-collapse { order: 3; width: 100%; flex-basis: 100%; }
}

/* Account / compact menus must paint above page content (and not clip inside navbar) */
header.navbar .navbar-nav .dropdown-menu:not(.nav-shop-megamenu) {
    z-index: 1075;
}

header.navbar.bg-white {
    background: rgba(252, 249, 244, 0.98) !important;
    border-bottom-color: rgba(197, 160, 89, 0.18);
    box-shadow: 0 2px 20px rgba(26, 28, 30, 0.07), 0 1px 0 rgba(197, 160, 89, 0.12);
}

header.navbar .navbar-brand {
    font-weight: 800;
    font-size: 1rem;
    color: var(--lf-charcoal);
    letter-spacing: -0.02em;
    flex-shrink: 1;
    min-width: 0;
    max-width: min(320px, 72vw);
}

header.navbar .brand-lockup {
    text-align: left;
    min-width: 0;
}

header.navbar .brand-name {
    display: block;
    font-size: clamp(1.05rem, 2.8vw, 1.35rem);
    font-weight: 800;
    color: var(--lf-charcoal);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

header.navbar .brand-name-line {
    color: var(--lf-charcoal-light);
    font-weight: 700;
}

header.navbar .brand-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lf-gray-500);
    margin-top: 4px;
    line-height: 1.3;
}

/* Solid bar: stronger contrast than gray-700 (WCAG-friendly on white) */
header.navbar.bg-white .navbar-nav > .nav-item > .nav-link:not(.btn-cart-header) {
    color: var(--lf-gray-900);
}

header.navbar .nav-link i,
header.navbar .nav-link .bi {
    opacity: 1;
}

header.navbar .nav-link:focus-visible {
    outline: 2px solid var(--lf-gold);
    outline-offset: 2px;
    box-shadow: none;
}

/* Home hero: glass header over the slider; scroll script removes this class for a normal solid bar */
header.transparent-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

header.transparent-header .navbar-toggler-icon {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

header.transparent-header .navbar-brand .brand-name {
    color: #fff !important;
}

/* Bootstrap caret: explicit color so “Shop” / account chevrons stay visible on glass */
header.navbar.bg-white .nav-link.dropdown-toggle::after {
    border-top-color: var(--lf-charcoal);
    opacity: 0.75;
}

header.transparent-header .nav-link.dropdown-toggle::after {
    border-top-color: #fff;
    opacity: 0.95;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.45));
}

header.navbar .btn-cart-header:hover {
    border-color: var(--lf-gold);
    background: rgba(212, 160, 18, 0.08);
    color: var(--lf-charcoal) !important;
}

header.navbar .btn-cart-header.active {
    border-color: var(--lf-gold);
    background: rgba(212, 160, 18, 0.14);
    font-weight: 600;
}

header.navbar .user-avatar-header {
    background: var(--lf-charcoal);
    color: #fff;
    border: 2px solid rgba(212, 160, 18, 0.55);
}

/* Shop mega-menu — furniture catalog panel */
.nav-shop-dropdown .dropdown-menu.nav-shop-megamenu {
    width: min(100vw - 2rem, 1120px);
    max-width: none;
    margin-top: 0.65rem !important;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(10, 36, 74, 0.12) !important;
    box-shadow: 0 28px 70px rgba(6, 22, 47, 0.18), 0 10px 24px rgba(10, 36, 74, 0.08) !important;
    animation: navShopReveal 0.22s var(--ease-out);
    z-index: 1080 !important;
    background: #fff !important;
    opacity: 1 !important;
    --bs-dropdown-bg: #fff;
}

@keyframes navShopReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-shop-panel {
    display: flex;
    flex-direction: column;
    max-height: min(78vh, 680px);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.nav-shop-panel__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background:
        radial-gradient(circle at 14% 0%, rgba(239, 125, 33, 0.25), transparent 28%),
        linear-gradient(135deg, var(--lf-charcoal-dark), var(--lf-charcoal));
    color: #fff;
}

.nav-shop-panel__logo {
    flex-shrink: 0;
    background: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-shop-panel__logo img {
    display: block;
    max-height: 42px;
    max-width: 148px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.nav-shop-panel__head-main {
    flex: 1;
    min-width: min(100%, 200px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.nav-shop-panel__head-main--ctas-only {
    justify-content: flex-end;
}

.nav-shop-panel__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.nav-shop-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.52rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-shop-cta--primary {
    background: var(--lf-gold);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(244, 121, 32, 0.35);
}

.nav-shop-cta--primary:hover {
    background: var(--lf-gold-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-shop-cta--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-shop-cta--ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff !important;
}

.nav-shop-panel__body {
    padding: 1rem;
    overflow-y: auto;
    background:
        linear-gradient(90deg, rgba(10, 36, 74, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, var(--lf-cream) 0%, #fff 100%) !important;
    background-size: 24px 24px, auto;
    flex: 1;
    scrollbar-color: rgba(10, 36, 74, 0.28) transparent;
    scrollbar-width: thin;
}

.nav-shop-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    align-items: stretch;
}

.nav-shop-cat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(10, 36, 74, 0.09);
    border-radius: 16px;
    padding: 0;
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(10, 36, 74, 0.055);
    overflow: hidden;
    border-top: 0;
}

.nav-shop-cat-card:hover {
    border-color: rgba(239, 125, 33, 0.3);
    box-shadow: 0 16px 36px rgba(10, 36, 74, 0.1);
    transform: translateY(-2px);
}

.nav-shop-cat-card__title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(10, 36, 74, 0.07);
    background: linear-gradient(180deg, #fff 0%, rgba(247, 248, 252, 0.9) 100%);
}

.nav-shop-cat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(239, 125, 33, 0.16), rgba(212, 160, 18, 0.12));
    color: var(--lf-gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.nav-shop-cat-card__name {
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.01em;
    color: var(--lf-charcoal);
    line-height: 1.3;
}

.nav-shop-cat-card__list {
    list-style: none;
    margin: 0;
    padding: 0.3rem 0.45rem 0.45rem;
    flex: 1;
}

.nav-shop-cat-card__list li {
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.nav-shop-cat-card__list li:last-child {
    border-bottom: none;
}

.nav-shop-cat-card__empty {
    font-size: 0.8rem;
    color: var(--lf-gray-500);
    padding: 0.75rem 1rem;
    margin: 0;
}

.nav-shop-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.42rem 0.5rem;
    margin: 0.05rem 0;
    border-radius: 10px;
    color: var(--lf-gray-700);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-shop-sublink__text {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.nav-shop-sublink__arrow {
    font-size: 0.65rem;
    opacity: 0.35;
    flex-shrink: 0;
    transition: var(--transition);
}

.nav-shop-sublink:hover {
    color: var(--lf-charcoal);
    background: rgba(239, 125, 33, 0.08);
}

.nav-shop-sublink:hover .nav-shop-sublink__arrow {
    opacity: 1;
    transform: translateX(2px);
}

.nav-shop-panel__empty {
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--lf-cream);
}

.nav-shop-panel__empty-icon {
    font-size: 2rem;
    color: var(--lf-gray-300);
    display: block;
    margin-bottom: 0.75rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse .nav-shop-dropdown .dropdown-menu.nav-shop-megamenu {
        position: static !important;
        inset: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0.5rem 0 0 !important;
        box-shadow: 0 8px 24px rgba(10, 36, 74, 0.12);
    }

    .navbar-collapse {
        overflow-x: hidden;
    }

    .navbar-collapse .nav-shop-panel {
        max-height: min(65vh, 420px);
    }

    .nav-shop-panel__head {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-shop-panel__head-main {
        flex-direction: column;
        min-width: 0;
        width: 100%;
    }

    .nav-shop-panel__head-main--ctas-only {
        justify-content: stretch;
    }

    .nav-shop-panel__logo {
        align-self: flex-start;
        max-width: 100%;
    }

    .nav-shop-panel__logo img {
        max-width: min(200px, 100%);
    }

    .nav-shop-panel__ctas {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-shop-cta {
        white-space: normal;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .nav-shop-cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav-shop-sublink {
        gap: 0.35rem;
    }
}

@media (min-width: 1200px) {
    .nav-shop-cat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .navbar-collapse .nav-shop-dropdown .dropdown-menu.nav-shop-megamenu {
        border-radius: var(--radius-md);
    }

    .nav-shop-dropdown .dropdown-menu.nav-shop-megamenu {
        width: calc(100vw - 1rem);
    }

    .nav-shop-panel__head {
        padding: 0.85rem 0.9rem;
    }

    .nav-shop-cat-grid {
        grid-template-columns: 1fr;
    }

    .nav-shop-cat-card__title {
        padding: 0.8rem;
    }
}

.static-article-body a {
    color: var(--lf-charcoal-light);
    font-weight: 600;
}

.static-article-body a:hover {
    color: var(--lf-gold);
}

.brand-tile {
    transition: var(--transition);
    border-color: var(--lf-gray-200) !important;
}

.brand-tile:hover {
    border-color: rgba(212, 160, 18, 0.65) !important;
    box-shadow: var(--shadow-md);
}

.cart-count {
    background: var(--lf-gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -2px;
    right: -2px;
    padding: 0 4px;
    border: 2px solid var(--lf-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    line-height: 1;
}

.mobile-cart-icon {
    position: relative;
    padding: 8px !important;
}

.mobile-cart-icon .cart-count {
    top: -2px;
    right: -2px;
}

.dropdown-menu {
    border: 1px solid var(--lf-gray-200);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px;
    animation: dropdownFade 0.2s var(--ease-out);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--lf-gold-50);
    color: var(--lf-gold);
}

/* ─── HERO SECTION ───────────────────────────────────────────────────── */
.modern-hero-carousel {
    position: relative;
    overflow: hidden;
}

.modern-hero-carousel .carousel-item {
    min-height: 520px;
}

.hero-banner-img {
    width: 100%;
    height: 92vh;
    max-height: 720px;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 8s ease;
}

.carousel-item.active .hero-banner-img {
    transform: scale(1.04);
}

.modern-carousel-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content-overlay {
    max-width: 740px;
    animation: heroFadeUp 1s var(--ease-out) 0.2s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-overlay .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content-overlay h2 {
    color: white;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-content-overlay p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-button-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button-group .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    transition: var(--transition);
    letter-spacing: normal;
    line-height: 1.25;
    text-rendering: auto;
}

.hero-button-group .btn i {
    flex-shrink: 0;
    line-height: 1;
}

.hero-button-group .btn-warning {
    background: var(--lf-gold);
    border-color: var(--lf-gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 134, 42, 0.4);
}

.hero-button-group .btn-warning:hover {
    background: var(--lf-gold-dark);
    border-color: var(--lf-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 134, 42, 0.5);
}

.hero-button-group .btn-outline-light {
    border-width: 2px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

.hero-button-group .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero-fallback {
    background: var(--lf-charcoal);
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(239, 125, 33, 0.12);
}

.hero-fallback h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.hero-fallback p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.modern-hero-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    margin: 0 5px;
}

.modern-hero-carousel .carousel-indicators button.active {
    background-color: var(--lf-gold);
    width: 32px;
    border-radius: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: var(--transition);
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-hero-carousel:hover .carousel-control-prev,
.modern-hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--lf-gold);
    border-color: var(--lf-gold);
}

/* ─── MAIN CONTENT WRAPPER ──────────────────────────────────────────── */
:root {
    --promo-offset: 0px;
    /* Safe clearance for fixed navbar (border + padding + logo); footer script may refine. */
    --header-clearance: 104px;
}

.main-content-wrapper {
    padding-top: calc(var(--header-clearance) + var(--promo-offset)) !important;
    min-height: 65vh;
    scroll-margin-top: var(--header-clearance);
}

.page-no-promo .main-content-wrapper {
    padding-top: var(--header-clearance) !important;
}

/* Home hero only: full-bleed under fixed header (see index.ejs + footer home detection) */
body:has(header.transparent-header:not(.bg-white)) .main-content-wrapper {
    padding-top: 0 !important;
    scroll-margin-top: 0;
}

/* Legacy products.ejs hero: extra top padding when body has promo class (--promo-offset stays 0; promo is in flow) */
body:not(.page-no-promo) .catalog-header {
    padding-top: calc(50px + var(--promo-offset));
}

/* ─── AUTH: login / signup (Liason storefront) ───────────────────────── */
.auth-page {
    background: var(--lf-cream);
}



.auth-section {
    padding: 0 0 72px;
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--lf-gray-200);
    box-shadow: 0 16px 48px rgba(10, 36, 74, 0.1), 0 4px 12px rgba(10, 36, 74, 0.04);
    overflow: hidden;
}

.auth-card__accent {
    height: 4px;
    background: var(--lf-gold);
}

.auth-card__body {
    padding: 2rem 1.75rem 2.25rem;
}

.auth-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.auth-brand__logo {
    width: min(210px, 72%);
    height: 58px;
    object-fit: contain;
}

@media (min-width: 576px) {
    .auth-card__body {
        padding: 2.25rem 2.25rem 2.5rem;
    }
}

.auth-card__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lf-charcoal);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
    text-align: center;
}

.auth-card__hint {
    text-align: center;
    color: var(--lf-gray-500);
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.auth-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lf-gray-700);
    margin-bottom: 6px;
}

.auth-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--lf-gray-200);
    border-radius: 12px;
    font-size: 0.92rem;
    color: var(--lf-charcoal);
    outline: none;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-input:focus {
    border-color: var(--lf-charcoal);
    box-shadow: 0 0 0 3px rgba(10, 36, 74, 0.08);
}

.auth-submit {
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    background: var(--lf-charcoal);
    color: #fff !important;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
}

.auth-submit:hover {
    background: var(--lf-charcoal-light);
    color: #fff !important;
}

.auth-alert {
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.auth-alert--danger {
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.auth-alert--success {
    background: rgba(5, 150, 105, 0.08);
    color: #047857;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.auth-footer-link {
    text-align: center;
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--lf-gray-100);
    font-size: 0.9rem;
    color: var(--lf-gray-600);
}

.auth-footer-link a {
    color: var(--lf-gold);
    font-weight: 700;
    text-decoration: none;
}

.auth-footer-link a:hover {
    color: var(--lf-gold-dark);
    text-decoration: underline;
}

/* ─── SECTION LABEL ──────────────────────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--lf-gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--lf-gold);
    border-radius: 2px;
}

/* ─── INTRO / VALUE PROP ────────────────────────────────────────────── */
.intro-section-modern {
    text-align: center;
    padding: 80px 0 50px;
}

.intro-heading {
    color: var(--lf-gray-900);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--lf-gray-500);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.trust-indicators-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item-modern {
    text-align: center;
    padding: 40px 24px;
    background: var(--lf-white);
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: 0 8px 30px rgba(10, 36, 74, 0.04);
    transition: var(--transition);
}

.trust-item-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10, 36, 74, 0.08);
}

.trust-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--lf-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
}

.trust-icon-wrapper i {
    font-size: 1.6rem;
    color: #fff;
}

.trust-item-modern:hover .trust-icon-wrapper {
    transform: scale(1.08) rotate(4deg);
}

.trust-item-modern h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lf-gray-900);
    margin-bottom: 6px;
}

.trust-item-modern p {
    font-size: 0.85rem;
    color: var(--lf-gray-500);
    line-height: 1.6;
    margin: 0;
}

/* ─── SECTION HEADERS ────────────────────────────────────────────────── */
.section-header-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--lf-gray-200);
}

.section-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lf-gray-900);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-title-modern i {
    color: var(--lf-gold);
    font-size: 1.15rem;
}

.section-link-modern {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lf-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--lf-gold-50);
}

.section-link-modern:hover {
    color: #fff;
    background: var(--lf-gold);
    gap: 10px;
}

/* ─── PRODUCT CARD ───────────────────────────────────────────────────── */
.product-card-modern {
    background: var(--lf-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--lf-gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.product-badge {
    position: absolute;
    z-index: 5;
    padding: 5px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.featured-badge {
    top: 12px;
    left: 12px;
    background: var(--lf-gold);
    color: #fff;
    box-shadow: 0 2px 10px rgba(232, 134, 42, 0.3);
}

.stock-badge {
    top: 12px;
    right: 12px;
}

.stock-badge.low-stock {
    background-color: var(--lf-warning);
    color: var(--lf-gray-900);
}

.stock-badge.out-of-stock {
    background-color: var(--lf-danger);
    color: #fff;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--lf-gray-100);
}

.product-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card-modern:hover .product-cover-img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 54, 93, 0.65);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: #fff;
    color: var(--lf-charcoal);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    transform: translateY(10px);
    box-shadow: var(--shadow-sm);
}

.product-card-modern:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background: var(--lf-gold);
    color: #fff;
}

.product-details {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title-modern {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title-modern a {
    color: var(--lf-gray-800);
}

.product-title-modern a:hover {
    color: var(--lf-gold);
}

.product-brand-modern {
    font-size: 0.78rem;
    color: var(--lf-gray-400);
    margin-bottom: 10px;
}

.product-price-section {
    margin-top: auto;
}

.product-price-modern {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lf-gold);
}

.product-action-footer {
    padding: 0 16px 16px;
}

.btn-add-cart-modern {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--lf-charcoal);
    background: transparent;
    color: var(--lf-charcoal);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart-modern:hover:not(:disabled) {
    background: var(--lf-charcoal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(27, 54, 93, 0.25);
}

.btn-add-cart-modern:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: var(--lf-gray-300);
    color: var(--lf-gray-400);
}

.btn-add-cart-modern.adding {
    background: var(--lf-gold);
    border-color: var(--lf-gold);
    color: #fff;
}

.btn-add-cart-modern.adding i {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ─── SPOTLIGHT / HORIZONTAL CAROUSEL ────────────────────────────────── */
.product-section-modern {
    padding: 30px 0;
    margin-bottom: 10px;
}

.bg-light-modern {
    background: var(--lf-cream);
    border-radius: var(--radius-xl);
    padding: 32px 20px;
    margin-bottom: 20px;
    border: 1px solid var(--lf-gray-200);
}

.spotlight-carousel-wrapper {
    position: relative;
}

.spotlight-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.spotlight-carousel-track::-webkit-scrollbar {
    display: none;
}

.spotlight-item {
    flex: 0 0 210px;
    max-width: 210px;
}

.carousel-nav-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--lf-white);
    color: var(--lf-charcoal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.carousel-nav-control.show-nav {
    opacity: 1;
}

.carousel-nav-control:hover {
    background: var(--lf-gold);
    color: #fff;
    box-shadow: var(--shadow-orange);
}

.carousel-nav-prev {
    left: -6px;
}

.carousel-nav-next {
    right: -6px;
}

/* ─── CATEGORY CARDS ─────────────────────────────────────────────────── */
.curriculum-sections-wrapper {
    padding: 60px 0;
}

.category-card-modern {
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--lf-gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.category-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.category-card-header {
    background: var(--lf-charcoal);
    color: #fff;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-card-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
}

.category-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--transition);
}

.category-card-modern:hover .category-icon-wrapper {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
}

.category-icon-wrapper i {
    font-size: 1.4rem;
    color: var(--lf-gold-light);
}

.category-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.category-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.category-card-body {
    padding: 18px 20px;
    flex: 1;
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    color: var(--lf-gray-600);
    font-size: 0.88rem;
    border-bottom: 1px solid var(--lf-gray-100);
    transition: var(--transition);
}

.subcategory-list li:last-child a {
    border-bottom: none;
}

.subcategory-list li a:hover {
    color: var(--lf-gold);
    padding-left: 8px;
}

.subcategory-list li a i {
    color: var(--lf-gold);
    font-size: 0.7rem;
    transition: var(--transition);
}

.subcategory-list li a:hover i {
    transform: translateX(4px);
}

.category-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--lf-gray-100);
}

.btn-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--lf-gold);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-view-all:hover {
    color: #fff;
    background: var(--lf-gold);
}

/* Catalog Header */
.catalog-header {
    background: var(--lf-charcoal);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--lf-gold);
}

.catalog-header::before {
    display: none;
}

.catalog-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--lf-white);
    transform: skewY(-2deg);
}

/* Modern Sidebar Styling */
.catalog-sidebar {
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--lf-gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.catalog-sidebar:hover {
    box-shadow: var(--shadow-md);
}

.catalog-sidebar .section-label {
    padding: 20px 20px 10px;
    margin-bottom: 0;
    display: flex;
    font-size: 0.75rem;
    color: var(--lf-charcoal-light);
}

.catalog-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--lf-gray-100);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lf-gray-700);
    transition: all 0.2s ease;
}

.catalog-sidebar .list-group-item:last-child {
    border-bottom: none;
}

.catalog-sidebar .list-group-item i {
    width: 20px;
    color: var(--lf-gray-400);
    transition: color 0.2s;
}

.catalog-sidebar .list-group-item:hover {
    background-color: var(--lf-gold-50);
    color: var(--lf-gold);
    padding-left: 24px;
}

.catalog-sidebar .list-group-item:hover i {
    color: var(--lf-gold);
}

.catalog-sidebar .list-group-item.active {
    background-color: var(--lf-charcoal-50) !important;
    color: var(--lf-charcoal) !important;
    font-weight: 700;
    border-left: 4px solid var(--lf-gold);
}

.catalog-sidebar .list-group-item-secondary {
    background-color: var(--lf-cream) !important;
    color: var(--lf-charcoal) !important;
    font-weight: 800 !important;
    font-size: 0.72rem !important;
    padding-top: 15px !important;
    padding-bottom: 8px !important;
    letter-spacing: 1.2px !important;
}

/* Enhanced Grid Layout */
.product-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.list-group-item.active {
    background-color: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
}

/* ─── PRODUCT DETAIL ─────────────────────────────────────────────────── */
.product-detail-card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-cover-large {
    border-radius: var(--radius-lg);
    max-height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-cover-large:hover {
    transform: scale(1.02);
}

.product-detail-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--lf-gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.product-detail-brand {
    font-size: 1rem;
    color: var(--lf-gray-500);
    border-bottom: 2px solid var(--lf-gray-100);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--lf-gold);
}

.product-detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
}

.stock-in {
    background: rgba(16, 185, 129, 0.1);
    color: var(--lf-success);
}

.stock-out {
    background: rgba(239, 68, 68, 0.1);
    color: var(--lf-danger);
}

.product-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--lf-cream);
    border-radius: var(--radius-md);
}

.product-meta-item label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--lf-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    display: block;
}

.product-meta-item span {
    font-size: 0.92rem;
    color: var(--lf-gray-700);
    font-weight: 500;
}

.product-description-box {
    background: var(--lf-cream);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 4px solid var(--lf-gold);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
    font-weight: 600;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.btn-primary {
    background-color: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--lf-charcoal-dark);
    border-color: var(--lf-charcoal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(27, 54, 93, 0.3);
}

.btn-warning {
    background-color: var(--lf-gold);
    border-color: var(--lf-gold);
    color: #fff;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: var(--lf-gold-dark);
    border-color: var(--lf-gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
}

.btn-outline-primary:hover {
    background-color: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--lf-gold);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(232, 134, 42, 0.4);
    color: #fff;
}

/* ─── FORMS ──────────────────────────────────────────────────────────── */
.form-control,
.form-select {
    border-radius: var(--radius-sm);
    border: 2px solid var(--lf-gray-200);
    padding: 12px 16px;
    transition: var(--transition);
    font-size: 0.92rem;
    color: var(--lf-gray-800);
    background: var(--lf-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--lf-gold);
    box-shadow: 0 0 0 4px var(--lf-gold-100);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--lf-gray-700);
    margin-bottom: 6px;
}

/* ─── CARDS & ALERTS ─────────────────────────────────────────────────── */
.card {
    border-radius: var(--radius-md);
    border-color: var(--lf-gray-200);
}

.alert {
    border-radius: var(--radius-md);
    border: none;
}

/* ─── PRE-FOOTER CTA STRIP ───────────────────────────────────────────── */
.lf-prefooter {
    background: linear-gradient(100deg, #16100a 0%, #1a1c1e 50%, #0e1208 100%);
    padding: 52px 0;
    position: relative;
    overflow: hidden;
}

.lf-prefooter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(197,160,89,0.07), transparent);
    pointer-events: none;
}

.lf-prefooter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
}

.lf-prefooter__copy h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.lf-prefooter__copy p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

.lf-prefooter__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.lf-prefooter__btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: filter 0.18s, box-shadow 0.18s;
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

.lf-prefooter__btn-wa:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.lf-prefooter__btn-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    padding: 13px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: background 0.18s, border-color 0.18s;
}

.lf-prefooter__btn-products:hover {
    background: rgba(197,160,89,0.14);
    border-color: rgba(197,160,89,0.4);
    color: var(--lf-gold-light) !important;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.modern-footer {
    background: var(--lf-charcoal-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 0;
    margin-top: 0;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lf-gold-dark) 0%, var(--lf-gold) 50%, var(--lf-gold-dark) 100%);
}

/* Brand band — full-width identity row at top of footer */
.footer-brand-band {
    padding: 44px 0 36px;
}

.footer-brand-band__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand-band__identity {
    flex: 1;
    min-width: 220px;
    max-width: 520px;
}

.footer-brand-band__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

/* Gold divider between brand band and link columns */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.4) 20%, rgba(197,160,89,0.4) 80%, transparent);
    margin: 0 0 40px;
}

.footer-links-section {
    padding-bottom: 48px;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--lf-gray-400);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-transform: uppercase;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--lf-gold);
    border-radius: 2px;
}

.footer-logo-wrap {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-height: 56px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--lf-gray-400);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--lf-gold);
    transition: width 0.25s ease;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-links a:hover {
    color: var(--lf-gold);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item .icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(232, 134, 42, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon-wrapper i {
    color: var(--lf-gold);
    font-size: 1rem;
}

.contact-item .contact-text {
    font-size: 0.88rem;
}

.contact-item .contact-text span {
    display: block;
    color: var(--lf-gray-500);
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.contact-item .contact-text a {
    color: #fff;
    text-decoration: none;
}

.contact-item .contact-text a:hover {
    color: var(--lf-gold);
}

.social-icons-modern {
    display: flex;
    gap: 10px;
}

.social-icons-modern a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lf-gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons-modern a:hover {
    background: var(--lf-gold);
    color: #fff;
    border-color: var(--lf-gold);
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(232, 134, 42, 0.3);
}

.social-icons-modern a i {
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 48px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--lf-gray-500);
    font-size: 0.82rem;
    margin: 0;
}

.footer-dev-credit {
    color: var(--lf-gray-500);
    font-size: 0.78rem;
}

.footer-dev-credit a {
    color: var(--lf-gold) !important;
    text-decoration: none;
}

.footer-dev-credit a:hover {
    color: #fff !important;
}

.admin-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: var(--transition);
}

.admin-link:hover {
    color: #fff;
    border-bottom-color: var(--lf-gold-light);
}

/* ─── HOMEPAGE: TRUST STRIP ──────────────────────────────────────────── */
.lf-trust-strip {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
}

.lf-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 767px) {
    .lf-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.lf-trust-item {
    text-align: center;
    padding: 14px 12px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lf-trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26, 28, 30, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.lf-trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(197, 160, 89, 0.1);
    border: 1.5px solid rgba(197, 160, 89, 0.22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--lf-gold);
    margin: 0 auto 8px;
}

.lf-trust-number {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 800;
    color: var(--lf-charcoal);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 3px;
}

.lf-trust-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    line-height: 1.3;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

/* ─── HOMEPAGE: SECTION HEADERS & WRAPPERS ───────────────────────────── */
.section {
    padding: 64px 0;
}

.section-featured {
    padding: 64px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header--wide {
    /* same as section-header, full-width context */
}

.section-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--lf-charcoal);
    margin: 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--lf-gray-500);
    margin: 6px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.section-action {
    color: var(--lf-gold);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    border: 1.5px solid var(--lf-gold);
    padding: 7px 16px;
    border-radius: var(--radius-full);
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
}

.section-action:hover {
    background: var(--lf-gold);
    color: #fff;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────── */
.about-hero {
    background: var(--lf-charcoal);
    color: #fff;
    padding: 100px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    display: none;
}

.about-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-section {
    padding: 70px 0;
}

.about-stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--lf-gray-200);
    transition: var(--transition);
}

.about-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: var(--lf-gold-100);
}

.about-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lf-gold);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--lf-gray-500);
    margin-top: 8px;
    font-weight: 500;
}

.service-card {
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    border: 1px solid var(--lf-gray-200);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: var(--lf-gold-100);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--lf-gold-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--lf-gold);
    box-shadow: var(--shadow-orange);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--lf-gold);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lf-gray-900);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--lf-gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────── */
.contact-hero {
    background: var(--lf-charcoal);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    display: none;
}

.contact-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: 60px 0;
    background: var(--lf-cream);
}

.contact-card {
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 36px;
    transition: var(--transition);
    border: 1px solid var(--lf-gray-200);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    color: var(--lf-gray-900);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card h3 i {
    color: var(--lf-gold);
    font-size: 1.5rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 14px;
    margin-bottom: 10px;
    background: var(--lf-cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-item:hover {
    background: var(--lf-white);
    border-color: var(--lf-gold-100);
    transform: translateX(4px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--lf-charcoal);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 1.1rem;
}

.contact-info-content strong {
    color: var(--lf-gray-500);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.contact-info-content a {
    color: var(--lf-gray-800);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: var(--lf-gold);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
    height: 300px;
}

.map-container iframe {
    border: 0;
}

.social-icons-contact .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--lf-charcoal);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-xs);
}

.social-icons-contact .social-link:hover {
    background: var(--lf-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange);
    color: #fff;
}

/* ─── AUTH PAGES ──────────────────────────────────────────────────────── */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lf-cream);
}

.auth-wrapper .auth-card {
    max-width: 460px;
    width: 100%;
    background: var(--lf-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    border: 1px solid var(--lf-gray-200);
}

.auth-wrapper .auth-card .site-logo {
    max-height: 56px;
    margin-bottom: 24px;
}

/* ─── CART ────────────────────────────────────────────────────────────── */
.cart-item-card {
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--lf-gray-200) !important;
    transition: var(--transition);
}

.cart-item-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--lf-gray-300) !important;
}

/* ─── PROFILE ────────────────────────────────────────────────────────── */
.profile-sidebar {
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    padding: 0;
    border: 1px solid var(--lf-gray-200);
    overflow: hidden;
}

.profile-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid var(--lf-gray-100);
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.profile-sidebar .list-group-item:hover {
    background: var(--lf-gold-50);
    color: var(--lf-gold);
}

.profile-sidebar .list-group-item.active {
    background: var(--lf-charcoal);
    color: #fff;
}

.profile-sidebar .list-group-item.active i {
    color: var(--lf-gold-light);
}

.profile-sidebar__header {
    background: var(--lf-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.profile-sidebar__header .user-avatar-header {
    background: var(--lf-gold);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

/* ─── ACCOUNT HUB (dashboard, orders — Liason navy / orange) ───────────── */
/* Main gets navbar clearance via footer sync (!important); extra air below bar lives on .container */
.lf-account-hub {
    background: var(--lf-cream);
    min-height: calc(100vh - 400px);
    padding-top: 0;
    padding-bottom: 5rem;
}

.lf-account-hub > .container {
    padding-top: clamp(2.25rem, 5vw, 3.75rem);
}

.lf-account-hero {
    margin-bottom: 2rem;
}

.lf-account-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lf-gold);
    margin-bottom: 0.5rem;
}

.lf-account-eyebrow::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--lf-gold);
}

.lf-account-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--lf-charcoal);
    letter-spacing: -0.04em;
    margin: 0 0 0.75rem;
    line-height: 1.1;
}

.lf-account-lead {
    font-size: 1.05rem;
    color: var(--lf-gray-600);
    max-width: 48rem;
    line-height: 1.6;
    margin: 0;
}

.lf-account-back {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--lf-charcoal);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color var(--duration-fast) var(--ease-out);
}

.lf-account-back:hover {
    color: var(--lf-gold);
}

.lf-account-back i {
    font-size: 1.15rem;
    opacity: 0.85;
}

.lf-account-card {
    position: relative;
    height: 100%;
    background: var(--lf-white);
    border: 1px solid var(--lf-gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lf-account-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lf-charcoal);
    opacity: 0.95;
}

.lf-account-card--danger::before {
    background: var(--lf-danger);
}

.lf-account-card--danger .lf-account-card__icon {
    background: #FEE2E2;
    color: var(--lf-danger);
}

.lf-account-card--accent::before {
    background: var(--lf-gold);
}

.lf-dash-stats {
    --lf-dash-stat-pad: 1.1rem 1.25rem;
}

.lf-dash-stat {
    background: var(--lf-white);
    border: 1px solid var(--lf-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--lf-dash-stat-pad);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.lf-dash-stat__value {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--lf-charcoal);
    line-height: 1.2;
}

.lf-dash-stat__value i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.lf-dash-stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lf-gray-500);
}

.lf-dash-link-all {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lf-gold);
    text-decoration: none;
}

.lf-dash-link-all:hover {
    color: var(--lf-charcoal);
}

.lf-dash-table-card thead {
    background: rgba(10, 36, 74, 0.06);
}

.lf-dash-table-card thead th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: var(--lf-gray-600);
    border: none;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.lf-dash-order-row:hover {
    background: rgba(239, 125, 33, 0.07);
}

.lf-dash-empty-inner {
    background: var(--lf-white);
    border: 1px dashed var(--lf-gray-300);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.lf-dash-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 16px;
    background: var(--lf-charcoal-50);
    color: var(--lf-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.lf-account-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--lf-gold-100);
    transform: translateY(-5px);
}

/* Unified card styling - removed specific overrides to keep palette tight */

.lf-account-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--lf-charcoal-50);
    color: var(--lf-charcoal);
    transition: var(--transition);
}

/* Consolidating all tile icons to Navy for a professional, uniform look */
.lf-account-card--orders .lf-account-card__icon,
.lf-account-card--security .lf-account-card__icon {
    background: var(--lf-charcoal-50);
    color: var(--lf-charcoal);
}

.lf-account-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lf-charcoal);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.lf-account-dl {
    margin: 0 0 1.25rem;
    flex: 1;
}

.lf-account-dl dt {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lf-gray-500);
    margin-bottom: 0.2rem;
}

.lf-account-dl dd {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--lf-gray-800);
    margin: 0 0 0.75rem;
    word-break: break-word;
}

.lf-account-dl dd:last-of-type {
    margin-bottom: 0;
}

.lf-account-card__text {
    font-size: 0.9rem;
    color: var(--lf-gray-600);
    line-height: 1.55;
    margin: 0 0 1.25rem;
    flex: 1;
}

.lf-account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 2px solid var(--lf-charcoal);
    background: var(--lf-white);
    color: var(--lf-charcoal);
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    margin-top: auto;
    letter-spacing: 0.02em;
}

.lf-account-btn:hover {
    background: var(--lf-charcoal);
    color: var(--lf-white);
    box-shadow: var(--shadow-md);
}

.lf-account-btn--orange {
    border-color: var(--lf-gold);
    color: var(--lf-gold);
}

.lf-account-btn--orange:hover {
    background: var(--lf-gold);
    color: var(--lf-white);
    border-color: var(--lf-gold);
    box-shadow: var(--shadow-orange);
}

/* Reduced color variants: Using navy/white for secondary actions */
.lf-account-btn--gold {
    border-color: var(--lf-gray-400);
    color: var(--lf-gray-700);
    background: var(--lf-white);
}

.lf-account-btn--gold:hover {
    background: var(--lf-gray-100);
    color: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
}

/* Sidebar Styles */
.profile-sidebar {
    background: var(--lf-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--lf-gray-200);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.profile-sidebar .list-group-item {
    border: none;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lf-gray-600);
    transition: all 0.2s var(--ease-out);
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-sidebar .list-group-item i {
    font-size: 1.1rem;
    opacity: 0.7;
}

.profile-sidebar .list-group-item:hover {
    background: var(--lf-charcoal-50);
    color: var(--lf-charcoal);
    padding-left: 28px;
}

.profile-sidebar .list-group-item.active {
    background: var(--lf-charcoal);
    color: var(--lf-white);
    font-weight: 600;
}

.profile-sidebar .list-group-item.active i {
    opacity: 1;
}

.profile-sidebar .list-group-item.text-danger {
    color: #DC2626 !important;
    font-weight: 600;
}

.profile-sidebar .list-group-item.text-danger i {
    color: #DC2626;
    opacity: 1;
}

.profile-sidebar .list-group-item.text-danger:hover {
    background: #FEF2F2 !important;
    color: #B91C1C !important;
    padding-left: 28px;
}

/* Status Badges - Optimized for high contrast and restricted palette */
.badge.status-completed { 
    background-color: #D1FAE5; 
    color: #065F46; 
    border: 1px solid #10B981;
}
.badge.status-processing { 
    background-color: #DBEAFE; 
    color: #1E40AF; 
    border: 1px solid #3B82F6;
}
.badge.status-cancelled { 
    background-color: #FEE2E2; 
    color: #991B1B; 
    border: 1px solid #EF4444;
}
.badge.status-pending { 
    background-color: #FEF3C7; 
    color: #92400E; 
    border: 1px solid #F59E0B;
}
.badge.status-shipped { 
    background-color: #E0E7FF; 
    color: #3730A3; 
    border: 1px solid #4F46E5;
}

/* Orders table shell */
.lf-orders-table-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    background: var(--lf-white);
}

.lf-orders-table-card .table {
    margin-bottom: 0;
}

.lf-orders-table-card .table thead th:first-child {
    padding-left: 1.25rem;
}

.lf-orders-table-card .table tbody td:first-child {
    padding-left: 1.25rem;
}

.lf-orders-table-card .btn-info {
    background: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
}

.lf-orders-table-card .btn-info:hover {
    background: var(--lf-charcoal-light);
    border-color: var(--lf-charcoal-light);
    color: #fff;
}

.lf-orders-empty {
    max-width: 520px;
    margin: 2rem auto 3rem;
    text-align: center;
    padding: 2.75rem 2rem;
    background: var(--lf-white);
    border: 1px solid var(--lf-gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.lf-orders-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--lf-gold-50);
    color: var(--lf-charcoal);
}

.lf-orders-empty h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lf-charcoal);
    margin-bottom: 0.5rem;
}

.lf-orders-empty p {
    color: var(--lf-gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lf-orders-empty .btn {
    border-radius: var(--radius-full);
    font-weight: 700;
    padding: 0.65rem 1.5rem;
}

/* ─── ADMIN ──────────────────────────────────────────────────────────── */
.admin-dashboard {
    padding-top: 90px !important;
}

.admin-content {
    padding-top: 90px !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.dashboard-card {
    border-radius: var(--radius-md) !important;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--lf-gray-200);
}

.dashboard-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.table {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.table thead th {
    background: var(--lf-charcoal);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 14px 16px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--lf-gray-100);
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: var(--lf-cream);
}

.page-header {
    color: var(--lf-gray-900);
    font-weight: 800;
    margin-bottom: 20px;
}

.status-pending {
    color: var(--lf-warning);
    font-weight: 600;
}

.status-processing {
    color: var(--lf-info);
    font-weight: 600;
}

.status-shipped {
    color: #8B5CF6;
    font-weight: 600;
}

.status-delivered {
    color: var(--lf-success);
    font-weight: 600;
}

.status-cancelled {
    color: var(--lf-danger);
    font-weight: 600;
}

/* Status as pills in order tables */
.badge.status-pending {
    background: rgba(245, 158, 11, 0.16) !important;
}
.badge.status-processing {
    background: rgba(59, 130, 246, 0.14) !important;
}
.badge.status-shipped {
    background: rgba(139, 92, 246, 0.14) !important;
}
.badge.status-delivered,
.badge.status-completed {
    background: rgba(16, 185, 129, 0.15) !important;
}
.badge.status-cancelled {
    background: rgba(239, 68, 68, 0.14) !important;
}

/* ─── PAGINATION ─────────────────────────────────────────────────────── */
.pagination .page-link {
    color: var(--lf-charcoal);
    border-color: var(--lf-gray-200);
    border-radius: var(--radius-sm);
    margin: 0 3px;
    transition: var(--transition);
    padding: 8px 14px;
    font-weight: 500;
}

.pagination .page-link:hover {
    background: var(--lf-gold);
    border-color: var(--lf-gold);
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--lf-charcoal);
    border-color: var(--lf-charcoal);
}

/* ─── MODAL ──────────────────────────────────────────────────────────── */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border-top: 4px solid var(--lf-gold);
}

.modal-header {
    border-bottom-color: var(--lf-gray-100);
}

.modal-footer {
    border-top-color: var(--lf-gray-100);
}

/* ─── TOAST ──────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast-notification {
    min-width: 300px;
    max-width: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.28);
}

.toast-notification .toast-header {
    padding: 12px 16px;
    font-weight: 600;
    background: var(--lf-charcoal);
    color: #fff;
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}

.toast-notification .toast-body {
    padding: 12px 16px;
    font-size: 0.92rem;
}

.toast-notification.toast-success .toast-header {
    background: var(--lf-charcoal);
    color: white;
}

.toast-notification.toast-success .toast-header .btn-close {
    filter: brightness(0) invert(1);
}

.toast-notification.toast-error .toast-header {
    background: var(--lf-charcoal);
    color: white;
}

.toast-notification.toast-error .toast-header .btn-close {
    filter: brightness(0) invert(1);
}

.toast-notification.toast-warning .toast-header {
    background: var(--lf-charcoal);
    color: white;
}

.toast-notification.toast-info .toast-header {
    background: var(--lf-charcoal);
    color: white;
}

/* ─── CTA BANNER ─────────────────────────────────────────────────────── */
.cta-banner {
    background: var(--lf-charcoal);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.cta-banner::before {
    display: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .hero-content-overlay h2 {
        font-size: 1.5rem;
    }

    .hero-content-overlay p {
        font-size: 0.9rem;
    }

    .hero-button-group .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .hero-banner-img {
        height: 80vh;
        max-height: 500px;
    }

    .intro-section-modern {
        padding: 50px 0 30px;
    }

    .intro-heading {
        font-size: 1.4rem;
    }

    .intro-text {
        font-size: 0.92rem;
    }

    .trust-indicators-modern {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .trust-item-modern {
        padding: 24px 16px;
    }

    .section-title-modern {
        font-size: 1.05rem;
    }

    .spotlight-item {
        flex: 0 0 165px;
        max-width: 165px;
    }

    .product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .catalog-toolbar {
        flex-direction: column;
        padding: 16px;
    }

    .search-box-modern {
        min-width: 100%;
    }

    .filter-controls {
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .modern-footer {
        padding: 40px 0 0;
        margin-top: 0;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .about-hero,
    .contact-hero {
        padding: 80px 0 50px;
    }

    .catalog-header {
        padding: 40px 0 30px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-content-overlay h2 {
        font-size: 2rem;
    }

    .hero-banner-img {
        height: 85vh;
        max-height: 550px;
    }

    .spotlight-item {
        flex: 0 0 185px;
        max-width: 185px;
    }

    .product-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-banner-img {
        height: 85vh;
        max-height: 600px;
    }

    .product-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-banner-img {
        height: 92vh;
        max-height: 720px;
    }

    .product-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (hover: none) {
    .product-overlay {
        display: none;
    }
}

@media print {

    header.navbar,
    .modern-footer,
    .whatsapp-chat-widget,
    #promoBar,
    .carousel-nav-control,
    .cta-banner {
        display: none !important;
    }

    .main-content-wrapper {
        padding-top: 0 !important;
    }
}

/* ─── WHATSAPP CHAT WIDGET ───────────────────────────────────────────── */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: var(--font-primary);
}

.whatsapp-chat-btn {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: #25D366;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-chat-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
}

.whatsapp-chat-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-chat-header {
    background: #25D366;
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-chat-header-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-chat-header-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.whatsapp-chat-header-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.whatsapp-chat-header-info p {
    margin: 2px 0 0;
    font-size: 12px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.whatsapp-chat-header-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.whatsapp-chat-header-close:hover {
    opacity: 1;
}

.whatsapp-chat-body {
    padding: 20px;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M0 0h80v80H0V0zm20 20v40h40V20H20zm20 35a15 15 0 1 1 0-30 15 15 0 0 1 0 30z' fill-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
    min-height: 100px;
}

.whatsapp-chat-message {
    background: white;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    max-width: 85%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.whatsapp-chat-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent white transparent transparent;
}

.whatsapp-chat-message-time {
    font-size: 11px;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.whatsapp-chat-footer {
    padding: 16px 20px;
    background: #f0f0f0;
}

.whatsapp-chat-input-wrapper {
    display: flex;
    gap: 10px;
}

.whatsapp-chat-input {
    flex: 1;
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: white;
    font-family: var(--font-primary);
}

.whatsapp-chat-input::placeholder {
    color: #999;
}

.whatsapp-chat-send {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-chat-send:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.whatsapp-chat-send svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.whatsapp-chat-tooltip {
    position: absolute;
    bottom: 70px;
    right: 70px;
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-chat-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-chat-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    bottom: 12px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@media (max-width: 400px) {
    .whatsapp-chat-popup {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

/* ─── CART PAGE ENHANCEMENTS ─────────────────────────────────────────── */
.cart-item-image {
    max-height: 110px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.cart-item-title {
    color: var(--lf-charcoal);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.cart-item-title:hover {
    color: var(--lf-gold);
}

.cart-item-brand {
    font-size: 0.82rem;
}

.cart-price-badge {
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.cart-price-badge--visible {
    background: var(--lf-gold-50);
    color: var(--lf-gold);
}

.cart-price-badge--hidden {
    background: var(--lf-gray-100);
    color: var(--lf-gray-500);
    font-weight: 500;
    font-size: 0.78rem;
}

.cart-qty-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lf-gray-400);
}

.cart-qty-input {
    width: 68px;
    padding: 6px 4px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.cart-stock-info {
    font-size: 0.7rem;
}

.cart-item-subtotal {
    font-weight: 800;
    font-size: 1.05rem;
}

.cart-item-subtotal--visible {
    color: var(--lf-charcoal);
}

.cart-item-subtotal--hidden {
    color: var(--lf-gray-400);
    font-weight: 700;
    font-size: 1rem;
}

.cart-remove-btn {
    color: var(--lf-danger);
    background: rgba(239, 68, 68, 0.08);
    border: none;
    border-radius: var(--radius-full);
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    background: rgba(239, 68, 68, 0.18);
    color: var(--lf-danger);
}

.cart-continue-link {
    color: var(--lf-charcoal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.cart-continue-link:hover {
    color: var(--lf-gold);
}

/* Order Summary */
.order-summary-card {
    padding: 1.75rem;
    background: var(--lf-cream);
    border: 1px solid var(--lf-gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.order-summary-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lf-charcoal);
    margin-bottom: 1.25rem;
}

.order-summary-row {
    font-size: 0.92rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.order-summary-label {
    color: var(--lf-gray-500);
}

.order-summary-value {
    font-weight: 600;
    color: var(--lf-gray-800);
}

.order-summary-total {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lf-gold);
}

.order-summary-total--hidden {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lf-gray-400);
}

.order-summary-note {
    font-size: 0.78rem;
    color: var(--lf-gray-400);
    text-align: center;
    margin-top: 0.75rem;
}

/* ─── CHECKOUT PAGE ──────────────────────────────────────────────────── */
.checkout-section-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-section-icon--contact {
    background: var(--lf-charcoal-50);
    color: var(--lf-charcoal);
}

.checkout-section-icon--payment {
    background: var(--lf-gold-50);
    color: var(--lf-gold);
}

.checkout-section-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lf-gray-800);
    margin: 0;
}

.checkout-payment-area {
    background: var(--lf-cream);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.checkout-payment-option {
    padding: 12px 12px 12px 40px;
    background: var(--lf-white);
    border-radius: var(--radius-sm);
    border: 2px solid var(--lf-gray-200);
}

.checkout-payment-option--disabled {
    opacity: 0.6;
}

.checkout-payment-label {
    font-weight: 600;
    color: var(--lf-gray-700);
    font-size: 0.9rem;
}

.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--lf-gray-200);
}

.checkout-summary-thumb {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--lf-white);
}

.checkout-summary-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-summary-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--lf-gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.checkout-summary-qty {
    font-size: 0.78rem;
    color: var(--lf-gray-400);
}

.checkout-summary-price {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--lf-gray-800);
}

.checkout-edit-link {
    color: var(--lf-charcoal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
}

.checkout-edit-link:hover {
    color: var(--lf-gold);
}

/* WhatsApp Only Mode */
.whatsapp-mode-icon {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.whatsapp-mode-title {
    font-weight: 800;
    color: var(--lf-gray-800);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.whatsapp-mode-text {
    color: var(--lf-gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ─── CONFIRMATION PAGE ──────────────────────────────────────────────── */
.confirmation-wrapper {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-card {
    background: var(--lf-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--lf-gray-100);
}

.confirmation-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: confirmPulse 2s ease-in-out infinite;
}

@keyframes confirmPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }
}

.confirmation-icon i {
    font-size: 2.5rem;
    color: var(--lf-success);
}

.confirmation-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lf-gray-800);
    margin-bottom: 0.5rem;
}

.confirmation-text {
    color: var(--lf-gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.confirmation-order-id {
    background: var(--lf-cream);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px dashed var(--lf-gray-300);
}

.confirmation-order-id-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lf-gray-400);
    margin-bottom: 0.25rem;
}

.confirmation-order-id-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lf-charcoal);
}

/* ─── ERROR PAGE ─────────────────────────────────────────────────────── */
.error-wrapper {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.error-card {
    background: var(--lf-white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--lf-gray-100);
    border-top: 4px solid var(--lf-danger);
}

.error-code {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--lf-charcoal);
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lf-gray-700);
    margin-bottom: 1rem;
}

.error-message {
    color: var(--lf-gray-500);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.error-divider {
    border: none;
    border-top: 1px solid var(--lf-gray-200);
    margin: 1.5rem 0;
}

/* --------------------------------------------------------------------------
   Liason Premium UI Refresh
   A component-level pass beyond token replacement: tighter shapes, calmer
   shadows, clearer controls, and retail-focused product surfaces.
-------------------------------------------------------------------------- */
:where(.shop-page, .pd-page, .cart-page-wrap, .co-page, .cfm-page, .trk-page, .about-page, .auth-page, .lf-account-hub) {
    background:
        linear-gradient(180deg, #ffffff 0, var(--lf-off-white) 260px),
        var(--lf-off-white) !important;
}

:where(.pg-header, .shop-header, .trk-hero, .auth-pg-header, .catalog-header) {
    border-bottom: 4px solid var(--lf-gold);
}

:where(.pg-header::after, .shop-header::after, .trk-hero::after, .auth-pg-header::after, .catalog-header::after) {
    display: none !important;
}

:where(.pg-eyebrow, .shop-header-eyebrow, .trk-eyebrow, .auth-pg-eyebrow, .sec-label, .sv-eyebrow) {
    border-radius: 6px !important;
    text-transform: uppercase;
    letter-spacing: 0.12em !important;
}

:where(.shop-toolbar, .catalog-toolbar, .shop-sidebar, .filter-drawer, .pd-img-panel, .pd-desc, .cart-summary-card, .co-card, .co-summary-card, .cfm-card, .trk-card, .trk-result, .auth-card, .lf-account-card, .profile-sidebar, .static-article, .ct-card, .ct-info-card, .svc-card, .why-item, .stat-card) {
    border-radius: 8px !important;
    box-shadow: 0 10px 28px rgba(26, 28, 30, 0.06) !important;
}

:where(.shop-toolbar, .catalog-toolbar, .co-card-header, .pd-price-row, .cart-summary-row, .co-item, .trk-table th, .trk-table td) {
    border-color: rgba(26, 28, 30, 0.1) !important;
}

:where(.shop-search-input, .shop-sort-select, .co-input, .ct-input, .trk-input, .auth-input, .adm-form-control) {
    border-radius: 6px !important;
    min-height: 44px;
    background: #fff !important;
}

:where(.shop-search-input, .shop-sort-select, .co-input, .ct-input, .trk-input, .auth-input, .adm-form-control):focus {
    border-color: var(--lf-gold) !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18) !important;
}

:where(.btn-checkout, .co-btn-order, .ct-submit, .trk-submit, .auth-submit, .pd-btn-cart, .pd-btn-wa, .pd-btn-wishlist, .cart-remove-btn, .lf-account-btn, .cfm-btn-primary, .cfm-btn-outline, .btn-cta-white, .btn-cta-outline, .shop-filter-mobile-btn, .shop-view-btn, .lf-add-btn) {
    border-radius: 6px !important;
}

:where(.btn-checkout, .co-btn-order, .ct-submit, .trk-submit, .auth-submit, .pd-btn-cart, .lf-account-btn, .cfm-btn-primary, .lf-add-btn) {
    background: var(--lf-charcoal) !important;
    border: 1px solid var(--lf-charcoal) !important;
    color: #fff !important;
}

:where(.btn-checkout, .co-btn-order, .ct-submit, .trk-submit, .auth-submit, .pd-btn-cart, .lf-account-btn, .cfm-btn-primary, .lf-add-btn):hover {
    background: var(--lf-gold) !important;
    border-color: var(--lf-gold) !important;
    color: #fff !important;
}

.shop-sidebar {
    overflow: visible !important;
}

.shop-sidebar-header,
.filter-drawer-header,
.cart-summary-header,
.co-summary-header,
.trk-result-head {
    border-radius: 8px 8px 0 0 !important;
}

.shop-cat-link,
.shop-cat-sub-link,
.profile-sidebar .list-group-item {
    border-radius: 0 !important;
}

.shop-cat-link.active,
.shop-cat-sub-link.active,
.profile-sidebar .list-group-item.active {
    background: rgba(197, 160, 89, 0.12) !important;
    color: var(--lf-charcoal) !important;
    border-left-color: var(--lf-gold) !important;
}

.lf-product-card {
    border-radius: 8px !important;
    border-color: rgba(26, 28, 30, 0.12) !important;
    box-shadow: none !important;
}

.lf-product-card:hover {
    box-shadow: 0 16px 36px rgba(26, 28, 30, 0.1) !important;
    transform: translateY(-3px);
}

.lf-product-img-wrap {
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(26, 28, 30, 0.03)),
        #fff !important;
}

.lf-product-body {
    gap: 8px !important;
}

.lf-product-brand {
    color: var(--lf-gold) !important;
}

.lf-badge,
.lf-list-badge,
.shop-active-filter,
.pd-cat-tag,
.pd-badge-in,
.pd-badge-out,
.trk-status-pill,
.cfm-note {
    border-radius: 6px !important;
}

.lf-badge-in,
.lf-list-badge-in,
.pd-badge-in {
    background: rgba(197, 160, 89, 0.12) !important;
    border-color: rgba(197, 160, 89, 0.32) !important;
    color: var(--lf-charcoal) !important;
}

.pd-meta-label {
    color: #94a3b8;
}

.cart-item-row {
    border-radius: 8px !important;
    box-shadow: none !important;
}

.cart-item-row:hover {
    border-color: rgba(197, 160, 89, 0.5) !important;
    box-shadow: 0 14px 32px rgba(26, 28, 30, 0.08) !important;
}

.cart-qty-wrap,
.pd-qty-stepper {
    border-radius: 6px !important;
}

.cart-summary-card {
    background: var(--lf-charcoal) !important;
    border-color: rgba(197, 160, 89, 0.28) !important;
}

.cart-summary-body,
.cart-summary-label,
.cart-summary-total-label {
    color: rgba(255, 255, 255, 0.72) !important;
}

.cart-summary-value {
    color: #fff !important;
}

.cart-summary-total-value,
.co-grand-value {
    color: var(--lf-gold) !important;
}


.co-card-header {
    background: #fff !important;
}

.co-pay-option {
    border-radius: 8px !important;
}

.co-pay-option:has(input:checked) {
    border-color: var(--lf-gold) !important;
    background: rgba(197, 160, 89, 0.08) !important;
}

.auth-card {
    max-width: 460px !important;
    border: 1px solid rgba(26, 28, 30, 0.12) !important;
}

.auth-card__accent {
    height: 6px !important;
}

.auth-card__title {
    font-size: 1.35rem !important;
}

.auth-card__hint {
    max-width: 300px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.lf-account-hero {
    background: var(--lf-charcoal) !important;
    border-radius: 8px !important;
    padding: 28px !important;
    border-bottom: 4px solid var(--lf-gold);
}

.lf-account-eyebrow,
.lf-account-title,
.lf-account-lead {
    color: #fff !important;
}

.lf-account-eyebrow::before {
    background: var(--lf-gold) !important;
}

.lf-dash-stat {
    border-radius: 8px !important;
    border: 1px solid rgba(26, 28, 30, 0.1);
    background: #fff;
}

.lf-account-card::before {
    height: 4px !important;
}

.lf-account-card__icon,
.co-card-icon,
.ct-info-icon,
.svc-icon,
.why-icon,
.cfm-icon-ring,
.trk-step-dot {
    border-radius: 8px !important;
}


.about-cta {
    border-radius: 8px !important;
    border-bottom: 4px solid var(--lf-gold);
}

.static-article {
    background: #fff;
    border: 1px solid rgba(26, 28, 30, 0.1);
    padding: clamp(24px, 4vw, 44px);
}

.static-article h2 {
    color: var(--lf-charcoal) !important;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
}

.modal-content {
    border-radius: 8px !important;
}

.toast-notification {
    border-radius: 8px !important;
}

@media (max-width: 575.98px) {
    :where(.shop-toolbar, .catalog-toolbar, .co-card-body, .cart-summary-body, .auth-card__body) {
        padding: 16px !important;
    }

    .lf-account-hero {
        padding: 22px !important;
    }
}

/* --------------------------------------------------------------------------
   Liason Header Redesign (REFINED)
-------------------------------------------------------------------------- */
header.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 24px !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08) !important;
    padding: 0.6rem 2rem !important;
    z-index: 1050;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border-top: none !important;
    flex-direction: row !important;
    align-items: center !important;
}

header.navbar.scrolled {
    top: 10px;
    width: 98%;
    background: rgba(255, 255, 255, 0.94) !important;
    border-radius: 16px !important;
    padding: 0.4rem 1.8rem !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12) !important;
}

header.navbar > .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
}

@media (min-width: 992px) {
    header.navbar > .container.lf-split-nav {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        grid-template-areas: "left brand right" !important;
        align-items: center !important;
        min-height: 0 !important;
    }
}

/* Typography & Navigation Links */
header.navbar .nav-link {
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: var(--lf-charcoal) !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: transparent !important;
}

header.navbar .nav-link:hover {
    color: var(--lf-gold) !important;
    background: rgba(197, 160, 89, 0.08) !important;
}

header.navbar .nav-link.active {
    color: var(--lf-gold) !important;
    background: rgba(197, 160, 89, 0.12) !important;
}

header.navbar .nav-link.active:not(.btn-cart-header)::after {
    content: '' !important;
    position: absolute !important;
    bottom: 4px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 16px !important;
    height: 3px !important;
    background: var(--lf-gold) !important;
    border-radius: 4px !important;
    display: block !important;
}

/* Integrated Search Bar */
.header-search-container {
    position: relative;
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

.header-search-input {
    background: rgba(26, 28, 30, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 12px !important;
    padding: 9px 16px 9px 42px !important;
    font-size: 0.82rem !important;
    width: 160px !important;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1) !important;
    color: var(--lf-charcoal) !important;
}

.header-search-input:focus {
    width: 240px !important;
    background: #fff !important;
    border-color: var(--lf-gold) !important;
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.2) !important;
    outline: none !important;
}

.header-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lf-gray-400);
    pointer-events: none;
    font-size: 0.9rem;
}

/* Brand/Logo */
.lf-nav-brand {
    max-width: 220px !important;
    padding: 0 !important;
    margin: 0 25px !important;
    transition: transform 0.3s ease;
}

.lf-nav-brand:hover {
    transform: scale(1.02);
}

.lf-nav-brand .site-logo-navbar {
    width: auto !important;
    height: 52px !important;
}

/* Action Buttons */
header.navbar .btn-cart-header {
    width: 42px !important;
    height: 42px !important;
    background: rgba(26, 28, 30, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
    color: var(--lf-charcoal) !important;
}

header.navbar .btn-cart-header:hover {
    background: #fff !important;
    border-color: var(--lf-gold) !important;
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    header.navbar {
        top: 15px;
        width: 92%;
        padding: 0.5rem 1rem !important;
    }
    
    .lf-nav-brand {
        margin-right: auto !important;
    }

    .lf-mobile-collapse {
        background: #fff !important;
        border-radius: 18px !important;
        padding: 1.5rem !important;
        margin-top: 1rem !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    }
    
    .lf-mobile-collapse .nav-link {
        padding: 12px 14px !important;
        border-radius: 8px !important;
    }
    
    .lf-mobile-collapse .nav-link.active {
        background: rgba(197, 160, 89, 0.1) !important;
    }
}

/* Promo Bar */
#promoBar {
    background: var(--lf-gold) !important;
    color: var(--lf-charcoal) !important;
    padding: 8px 0 !important;
    position: relative;
    z-index: 1060;
}

#promoBar .promo-text-display {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   Refined Premium Page Header (Shared Globals)
   ========================================================================== */
.pg-header,
.shop-header,
.trk-hero,
.auth-pg-header {
    position: relative;
    background-color: #111215 !important;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.14) 0%, transparent 40%),
        radial-gradient(circle at 15% 85%, rgba(197, 160, 89, 0.05) 0%, transparent 45%),
        linear-gradient(135deg, #111215 0%, #1c1e22 100%) !important;
    padding: 80px 0 90px !important;
    overflow: hidden;
    border-bottom: 3px solid var(--lf-gold) !important;
    z-index: 1;
}

/* Pull product catalog header up under transparent fixed navbar */
.shop-header {
    margin-top: calc(-1 * var(--header-clearance, 104px)) !important;
    padding: calc(var(--header-clearance, 104px) + 60px) 0 70px !important;
}

.pg-header::before,
.shop-header::before,
.trk-hero::before,
.auth-pg-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.pg-header-inner,
.shop-header-inner,
.trk-hero-inner,
.auth-pg-inner {
    position: relative;
    z-index: 2;
}

.trk-hero-inner,
.auth-pg-inner {
    text-align: center !important;
}

.pg-eyebrow,
.shop-header-eyebrow,
.trk-eyebrow,
.auth-pg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--lf-gold) !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.12em !important;
    margin-bottom: 14px !important;
    border: 1px solid rgba(197, 160, 89, 0.25) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.pg-eyebrow i,
.shop-header-eyebrow i,
.trk-eyebrow i,
.auth-pg-eyebrow i {
    font-size: 0.85rem;
}

.pg-title,
.shop-header-title,
.trk-title,
.auth-pg-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
    font-weight: 800 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ffffff 40%, #eae6d8 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin: 0 auto 10px !important;
    letter-spacing: -0.02em !important;
    line-height: 1.25 !important;
}

.pg-sub,
.shop-header-sub,
.trk-sub,
.auth-pg-sub {
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: 0.95rem !important;
    max-width: 620px !important;
    margin: 0 !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}

.trk-sub,
.auth-pg-sub {
    margin: 0 auto !important;
}


