/* ══════════════════════════════════════════════════════════════
   Fine Mens Fabric — Premium Stylesheet
   Design: Navy + Gold + Ivory — luxurious, masculine, Indian
   ══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Brand palette */
    --clr-navy:       #0b1a2e;
    --clr-navy-light: #132744;
    --clr-navy-dark:  #06101e;
    --clr-gold:       #c9a84c;
    --clr-gold-light: #dfc474;
    --clr-gold-dark:  #a88a32;
    --clr-ivory:      #faf8f4;
    --clr-cream:      #f3efe7;
    --clr-warm-gray:  #8c8578;
    --clr-text:       #2d2a26;
    --clr-text-light: #6b6560;
    --clr-white:      #ffffff;
    --clr-border:     #e8e4dc;
    --clr-success:    #2e7d32;
    --clr-danger:     #c62828;
    --clr-warning:    #f9a825;
    --clr-info:       #1565c0;

    /* Typography */
    --ff-heading: "Playfair Display", "Georgia", serif;
    --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ff-accent:  "Cormorant Garamond", "Georgia", serif;

    /* Spacing */
    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Radius */
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm:   0 1px 3px rgba(11,26,46,0.06), 0 1px 2px rgba(11,26,46,0.04);
    --shadow-md:   0 4px 12px rgba(11,26,46,0.08), 0 2px 4px rgba(11,26,46,0.04);
    --shadow-lg:   0 12px 40px rgba(11,26,46,0.12), 0 4px 12px rgba(11,26,46,0.06);
    --shadow-xl:   0 20px 60px rgba(11,26,46,0.16), 0 8px 20px rgba(11,26,46,0.08);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.7s;

    /* Smooth fade from a dark hero down into the ivory page background.
       Eased multi-stop ramp (not a hard 2-stop) so the navy → ivory
       transition reads gradual instead of an abrupt band. Shared by every
       page hero via `.hero-fade` and each *-hero::after. */
    --hero-fade-height: 220px;
    --hero-fade: linear-gradient(
        to top,
        rgb(250, 248, 244) 0%,
        rgba(250, 248, 244, 0.985) 8%,
        rgba(250, 248, 244, 0.94) 16%,
        rgba(250, 248, 244, 0.865) 23%,
        rgba(250, 248, 244, 0.765) 29%,
        rgba(250, 248, 244, 0.645) 35%,
        rgba(250, 248, 244, 0.515) 41%,
        rgba(250, 248, 244, 0.385) 48%,
        rgba(250, 248, 244, 0.265) 55%,
        rgba(250, 248, 244, 0.16) 62%,
        rgba(250, 248, 244, 0.075) 71%,
        rgba(250, 248, 244, 0.02) 82%,
        rgba(250, 248, 244, 0) 100%
    );
}


/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--clr-text);
    background-color: var(--clr-ivory);
    overflow-x: hidden;
}

body.nav-locked {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.icon-sm  { width: 16px; height: 16px; }
.icon-xs  { width: 12px; height: 12px; }


/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm  { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; }

.btn-primary {
    background: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
}
.btn-primary:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-navy);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--clr-white);
    color: var(--clr-navy);
    border-color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--clr-navy);
    border-color: var(--clr-border);
}
.btn-ghost:hover {
    border-color: var(--clr-navy);
    background: var(--clr-navy);
    color: var(--clr-white);
}


/* ═══════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */
.announcement-bar {
    background: var(--clr-navy);
    color: var(--clr-gold-light);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    padding: 8px var(--space-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    transition: all var(--duration-normal) var(--ease-out);
}
.announcement-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}
.announcement-content {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}
.announcement-divider {
    opacity: 0.3;
}
.announcement-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 4px;
    position: absolute;
    right: var(--space-lg);
    transition: color var(--duration-fast);
}
.announcement-close:hover { color: var(--clr-white); }


/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,248,244,0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--clr-border);
    transition: all var(--duration-normal) var(--ease-out);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(250,248,244,0.95);
}
.site-header.header-hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.nav-logo, .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}
.logo-mark {
    font-family: var(--ff-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--clr-white);
    background: var(--clr-navy);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}
.logo-main {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--clr-navy);
}
.logo-sub {
    font-family: var(--ff-body);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--clr-gold);
    text-transform: uppercase;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}
.nav-mobile-only {
    display: none;
}
.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--clr-text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link:hover,
.nav-link.active {
    color: var(--clr-gold-dark);
    background: rgba(201,168,76,0.08);
}

/* Dropdowns */
.nav-dropdown {
    position: relative;
}
.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--duration-normal) var(--ease-out);
    padding: 8px;
    z-index: 100;
}
.dropdown-right { left: auto; right: 0; }
.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-content a {
    display: block;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}
.dropdown-content a:hover {
    background: var(--clr-cream);
    color: var(--clr-gold-dark);
}
.dropdown-divider {
    height: 1px;
    background: var(--clr-border);
    margin: 4px 0;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex-shrink: 0;
}
.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--clr-text);
    border-radius: var(--radius-sm);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast);
}
.nav-action-btn:hover {
    background: var(--clr-cream);
    color: var(--clr-gold-dark);
}
.nav-action-btn svg {
    width: 18px;
    height: 18px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--clr-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════════════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════════════ */
.flash-container {
    position: fixed;
    top: 80px;
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 420px;
}
.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.4s var(--ease-out);
}
.flash-success  { background: #e8f5e9; color: var(--clr-success); border-left: 4px solid var(--clr-success); }
.flash-danger   { background: #ffebee; color: var(--clr-danger); border-left: 4px solid var(--clr-danger); }
.flash-warning  { background: #fff8e1; color: #f57f17; border-left: 4px solid var(--clr-warning); }
.flash-info     { background: #e3f2fd; color: var(--clr-info); border-left: 4px solid var(--clr-info); }
.flash-close {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    color: inherit;
    padding: 2px;
}
.flash-close:hover { opacity: 1; }


/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--space-3xl) + 3rem) 0 7.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--clr-white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--clr-navy);
}

/* Diagonal fabric-weave inspired pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.1) 10px,
            rgba(255,255,255,0.1) 11px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.1) 10px,
            rgba(255,255,255,0.1) 11px
        );
    animation: patternShift 20s linear infinite;
}

@keyframes patternShift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(22px, 22px); }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(11,26,46,0.8) 0%, transparent 50%),
        radial-gradient(ellipse 60% 80% at 80% 80%, rgba(11,26,46,0.8) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: var(--space-xl) var(--space-lg) 0;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--ff-heading);
    line-height: 1.05;
    margin-bottom: var(--space-lg);
}
.hero-line {
    display: block;
}
.hero-line-1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--clr-gold-light);
}
.hero-line-2 {
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--clr-white) 0%, var(--clr-gold-light) 50%, var(--clr-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 100% 50%; }
    50%      { background-position: 0% 50%; }
}

.hero-subtitle {
    font-family: var(--ff-accent);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

/* Hero stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    row-gap: var(--space-lg);
}
.hero-stat {
    text-align: center;
}
.hero-stat-number {
    font-family: var(--ff-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-gold);
}
.hero-stat-suffix {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    color: var(--clr-gold);
}
.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}
.bounce {
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(8px); }
}


/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    padding: var(--space-xl) 0;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
}
.trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-cream);
    border-radius: var(--radius-full);
    color: var(--clr-gold-dark);
    flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-navy);
}
.trust-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--clr-text-light);
}


/* ═══════════════════════════════════════════════════════
   SECTIONS — Common Styles
   ═══════════════════════════════════════════════════════ */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-sm);
}
.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--clr-navy);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}
.section-footer {
    text-align: center;
    margin-top: var(--space-2xl);
}


/* ═══════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════ */
.categories-section {
    background: var(--clr-ivory);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.category-card {
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.category-card-inner {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: border-color var(--duration-fast);
}
.category-card:hover .category-card-inner {
    border-color: var(--clr-gold);
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
    color: var(--clr-gold);
}
.category-placeholder svg { width: 48px; height: 48px; opacity: 0.6; }

.category-info {
    padding: var(--space-lg);
}
.category-info h3 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-navy);
    margin-bottom: 4px;
}
.category-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--duration-fast);
}
.category-card:hover .category-cta { gap: 8px; }


/* ═══════════════════════════════════════════════════════
   FEATURED PRODUCTS
   ═══════════════════════════════════════════════════════ */
.featured-section {
    background: var(--clr-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    align-items: start;
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-card-link {
    display: block;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    transition: border-color var(--duration-fast);
    text-decoration: none;
    color: inherit;
}
.product-card:hover .product-card-link {
    border-color: var(--clr-gold);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--clr-cream);
}
.product-image {
    display: block;
    width: 100%;
    height: auto;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-cream) 0%, var(--clr-border) 100%);
    color: var(--clr-warm-gray);
}
.product-image-placeholder svg { width: 40px; height: 40px; }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--clr-gold);
    color: var(--clr-navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.product-details {
    padding: var(--space-lg);
}
.product-category {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: 4px;
    display: block;
}
.product-name {
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-navy);
    margin-bottom: 6px;
    line-height: 1.3;
}
.product-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.product-fabric, .product-color {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    background: var(--clr-cream);
    padding: 2px 8px;
    border-radius: 100px;
}
.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--clr-border);
}
.product-price {
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-navy);
}
.product-unit {
    font-size: 0.78rem;
    color: var(--clr-text-light);
}

/* Empty state */
.empty-showcase {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}
.empty-showcase-inner {
    background: var(--clr-white);
    border: 2px dashed var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    max-width: 520px;
    margin: 0 auto;
}
.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--clr-cream);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--clr-gold);
}
.empty-icon svg { width: 36px; height: 36px; }
.empty-showcase h3 {
    font-family: var(--ff-heading);
    font-size: 1.4rem;
    color: var(--clr-navy);
    margin-bottom: var(--space-sm);
}
.empty-showcase p {
    color: var(--clr-text-light);
    margin-bottom: var(--space-lg);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}


/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */
.why-section {
    background: var(--clr-ivory);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}
.why-text {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.why-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}
.why-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    flex-shrink: 0;
}
.why-feature-icon svg { width: 20px; height: 20px; }
.why-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--clr-navy);
    margin-bottom: 2px;
}
.why-feature p {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

/* Visual stack cards */
.why-visual {
    position: relative;
    height: 440px;
}
.why-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}
.why-image-card {
    position: absolute;
    width: 240px;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--duration-slow) var(--ease-out);
}
.why-image-card:hover {
    transform: scale(1.05) !important;
}
.why-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-card-1 {
    top: 0;
    left: 10%;
    background: linear-gradient(150deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
    z-index: 1;
    transform: rotate(-6deg);
}
.why-card-2 {
    top: 40px;
    right: 5%;
    background: linear-gradient(150deg, var(--clr-gold-dark) 0%, var(--clr-gold) 100%);
    z-index: 2;
    transform: rotate(4deg);
}
.why-card-3 {
    bottom: 0;
    left: 25%;
    background: linear-gradient(150deg, #1a3a5c 0%, #2c5f8a 100%);
    z-index: 3;
    transform: rotate(-2deg);
}
.why-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 6px;
    padding: var(--space-lg);
    color: var(--clr-white);
    background: linear-gradient(180deg, rgba(11,26,46,0.06) 15%, rgba(11,26,46,0.88) 100%);
}
.why-card-content strong {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
}
.why-card-content span {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
}


/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.how-section {
    background: var(--clr-white);
}
.how-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-md);
}
.how-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    position: relative;
}
.how-step-number {
    font-family: var(--ff-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-cream);
    line-height: 1;
    margin-bottom: var(--space-md);
}
.how-step-icon {
    width: 64px;
    height: 64px;
    background: var(--clr-navy);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    margin: 0 auto var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
}
.how-step:hover .how-step-icon {
    background: var(--clr-gold);
    color: var(--clr-navy);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}
.how-step-icon svg { width: 24px; height: 24px; }
.how-step h3 {
    font-family: var(--ff-heading);
    font-size: 1.05rem;
    color: var(--clr-navy);
    margin-bottom: var(--space-sm);
}
.how-step p {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    line-height: 1.6;
}
.how-connector {
    display: flex;
    align-items: center;
    padding-top: 100px;
    color: var(--clr-border);
}
.how-connector svg { width: 24px; height: 24px; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-section {
    background: var(--clr-cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
}
.testimonial-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--clr-gold);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--ff-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--clr-cream);
    z-index: 0;
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}
.star-filled {
    width: 16px;
    height: 16px;
    color: var(--clr-gold);
    fill: var(--clr-gold);
}
.testimonial-text {
    font-family: var(--ff-accent);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--clr-text);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    background: var(--clr-navy);
    color: var(--clr-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-navy);
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--clr-text-light);
}


/* ═══════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.newsletter-section {
    background: var(--clr-ivory);
    padding-bottom: 0;
}
.newsletter-card {
    background: var(--clr-navy);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    overflow: hidden;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.newsletter-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}
.newsletter-content .section-eyebrow {
    color: var(--clr-gold);
}
.newsletter-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: var(--space-sm);
}
.newsletter-text {
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    overflow-wrap: anywhere;
}
.newsletter-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}
.newsletter-highlight {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.88);
    font-size: 0.82rem;
    font-weight: 600;
}
.newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    width: 100%;
}
.btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #07213b;
}
.btn-whatsapp:hover {
    background: #1fb857;
    border-color: #1fb857;
    color: var(--clr-white);
    box-shadow: 0 14px 28px rgba(37,211,102,0.22);
}
.newsletter-form { position: relative; }
.newsletter-input-group {
    display: flex;
    gap: var(--space-sm);
    max-width: 480px;
}
.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--clr-white);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    outline: none;
    transition: all var(--duration-fast);
}
.newsletter-input::placeholder {
    color: rgba(255,255,255,0.35);
}
.newsletter-input:focus {
    border-color: var(--clr-gold);
    background: rgba(255,255,255,0.12);
}
.newsletter-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: var(--space-sm);
    max-width: 520px;
    overflow-wrap: anywhere;
}
.newsletter-visual {
    position: relative;
    z-index: 1;
}
.newsletter-visual-card {
    width: 220px;
    height: 280px;
    border-radius: calc(var(--radius-xl) - 4px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: var(--shadow-xl);
}
.newsletter-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newsletter-decorative {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    animation: pulse 3s ease-in-out infinite;
}
.newsletter-decorative svg { width: 48px; height: 48px; opacity: 0.5; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.08); opacity: 0.7; }
}


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
    position: relative;
}
.footer-wave {
    position: relative;
    margin-top: -1px;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}
.footer-body {
    background: var(--clr-navy);
    padding: var(--space-2xl) 0;
    color: rgba(255,255,255,0.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-2xl);
}
.footer-logo .logo-main {
    color: var(--clr-white);
}
.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-top: var(--space-md);
    line-height: 1.6;
}
.footer-socials {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--duration-fast);
}
.footer-socials a:hover {
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    transform: translateY(-2px);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--ff-heading);
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: all var(--duration-fast);
}
.footer-col a:hover {
    color: var(--clr-gold);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    font-size: 0.85rem;
}
.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--clr-gold);
}

.footer-bottom {
    background: var(--clr-navy-dark);
    padding: var(--space-lg) 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.heart {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.15); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.15); }
    56%      { transform: scale(1); }
}


/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}
.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════
   AUTH PAGES — Login, Register, Forgot/Reset Password
   ═══════════════════════════════════════════════════════ */
.auth-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.auth-page-centered {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
        var(--clr-ivory);
}

/* ── Left Visual Panel ── */
.auth-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.auth-visual-bg {
    position: absolute;
    inset: 0;
    background: var(--clr-navy);
}
.auth-visual-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 11px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 11px);
}
.auth-visual-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.auth-visual-content {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl);
    max-width: 460px;
    color: var(--clr-white);
}
.auth-visual-logo {
    margin-bottom: var(--space-2xl);
}
.auth-visual-content h2 {
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.15;
}
.auth-visual-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}
.auth-visual-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.auth-visual-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
}
.auth-visual-feature svg {
    width: 20px;
    height: 20px;
    color: var(--clr-gold);
    flex-shrink: 0;
}

/* ── Right Form Panel ── */
.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    background: var(--clr-ivory);
    overflow-y: auto;
}
.auth-form-container {
    width: 100%;
    max-width: 440px;
}
.auth-form-narrow {
    max-width: 400px;
}

/* Mobile logo (hidden on desktop) */
.auth-mobile-logo {
    display: none;
    margin-bottom: var(--space-xl);
}

.auth-form-header {
    margin-bottom: var(--space-xl);
}
.auth-form-header h1 {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: var(--space-xs);
}
.auth-form-header p {
    font-size: 0.92rem;
    color: var(--clr-text-light);
}

/* Icon header (forgot/reset pages) */
.auth-icon-header {
    margin-bottom: var(--space-lg);
}
.auth-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}
.auth-icon-circle svg { width: 28px; height: 28px; }

/* ── Google Button ── */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
    cursor: pointer;
    transition: all var(--duration-fast);
    text-decoration: none;
}
.btn-google:hover {
    border-color: #c0c0c0;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* ── Divider ── */
.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}
.auth-divider span {
    font-size: 0.78rem;
    color: var(--clr-warm-gray);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* ── Form Styles ── */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--clr-navy);
}
.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-gold-dark);
    transition: color var(--duration-fast);
}
.form-link:hover { color: var(--clr-navy); }
.optional {
    font-weight: 400;
    color: var(--clr-warm-gray);
    font-size: 0.78rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--clr-warm-gray);
    pointer-events: none;
    z-index: 1;
}
.input-icon-wrapper input,
.input-icon-wrapper select {
    width: 100%;
    padding: 12px 14px 12px 42px;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--clr-text);
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--duration-fast);
}
.input-icon-wrapper input::placeholder {
    color: #b5b0a8;
}
.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--clr-warm-gray);
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color var(--duration-fast);
}
.password-toggle:hover { color: var(--clr-navy); }
.password-toggle svg { width: 18px; height: 18px; }

/* Checkbox */
.form-group-inline {
    display: flex;
    align-items: center;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--clr-text-light);
    cursor: pointer;
    user-select: none;
}
.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--clr-navy);
    cursor: pointer;
    border-radius: 3px;
}

/* Full-width button */
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Switch link */
.auth-switch {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.88rem;
    color: var(--clr-text-light);
}
.auth-switch a {
    font-weight: 600;
    color: var(--clr-gold-dark);
    transition: color var(--duration-fast);
}
.auth-switch a:hover { color: var(--clr-navy); }

.auth-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--clr-text-light);
}
.auth-back-link:hover { color: var(--clr-navy); }


/* ═══════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    .why-visual {
        height: 350px;
    }
}

/* Small tablet */
@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        gap: 2px;
        text-align: center;
        max-width: calc(100% - 40px);
    }
    .announcement-divider { display: none; }
    .announcement-bar {
        overflow: hidden;
    }

    /* Mobile nav — full-screen overlay */
    .hamburger { display: flex; z-index: 10000; }
    .hamburger.active span { background: var(--clr-white); }
    .nav-container {
        height: 64px;
        gap: 10px;
    }
    .nav-logo {
        flex: 1 1 auto;
        overflow: hidden;
    }
    .nav-actions {
        gap: 4px;
    }
    .nav-actions > .btn,
    .nav-actions > .nav-dropdown {
        display: none;
    }
    .nav-action-btn {
        padding: 8px;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: var(--clr-navy);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: var(--space-sm);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all var(--duration-normal) var(--ease-out);
        z-index: 9999;
        overflow-y: auto;
        padding: 6rem var(--space-2xl) var(--space-2xl);
    }
    .nav-mobile-only {
        display: block;
    }
    .nav-links.nav-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links .nav-link {
        font-family: var(--ff-heading);
        font-size: 1.6rem;
        font-weight: 500;
        padding: 14px 32px;
        color: rgba(255,255,255,0.85);
        border-radius: var(--radius-md);
    }
    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--clr-gold);
        background: rgba(201,168,76,0.1);
    }
    .nav-links .icon-xs { display: none; }
    .nav-links .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .nav-links.nav-open .dropdown-content {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-links .dropdown-content a {
        color: rgba(255,255,255,0.45);
        font-size: 1rem;
        padding: 6px 20px;
    }
    .nav-links .dropdown-content a:hover {
        color: var(--clr-gold);
        background: transparent;
    }
    .nav-action-label { display: none; }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .how-steps {
        flex-direction: column;
        align-items: center;
    }
    .how-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: clamp(1.5rem, 5vw, 2rem);
    }
    .newsletter-visual { display: none; }
    .newsletter-input-group {
        flex-direction: column;
    }
    .newsletter-highlights {
        flex-direction: column;
        align-items: flex-start;
    }
    .newsletter-text,
    .newsletter-note {
        max-width: none;
    }
    .newsletter-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero-stats {
        gap: var(--space-lg);
    }
    .hero-stat-number {
        font-size: 1.6rem;
    }
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0 var(--space-2xl);
        flex-direction: column;
    }
    .hero-content {
        padding-bottom: 0;
        width: 100%;
    }
    .hero-scroll-indicator {
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: var(--space-xl);
        align-self: center;
        text-align: center;
    }

    /* Auth pages — stack on mobile */
    .auth-page {
        grid-template-columns: 1fr;
    }
    .auth-visual {
        display: none;
    }
    .auth-mobile-logo {
        display: flex !important;
    }
    .auth-form-panel {
        padding: var(--space-xl) var(--space-lg);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 12px;
        gap: 8px;
    }
    .nav-logo {
        gap: 8px;
    }
    .logo-mark {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    .logo-main {
        font-size: 0.82rem;
        white-space: nowrap;
    }
    .logo-sub {
        font-size: 0.52rem;
        letter-spacing: 0.18em;
    }
    .nav-actions {
        gap: 2px;
    }
    .nav-action-btn {
        padding: 6px;
    }
    .hamburger {
        padding: 6px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .trust-items {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-title {
        font-size: clamp(1.8rem, 9vw, 2.35rem);
    }
    .newsletter-highlight {
        max-width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    .section {
        padding: var(--space-2xl) 0;
    }
}

/* Extra auth surfaces - verification and profile */
.auth-form-wide {
    max-width: 480px;
}

.auth-status-card,
.profile-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.auth-status-card {
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.auth-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.auth-status-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clr-warm-gray);
}

.auth-status-pill,
.profile-badge,
.profile-auth-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.auth-status-pill {
    background: rgba(201,168,76,0.14);
    color: var(--clr-gold-dark);
}

.auth-status-copy,
.profile-muted-copy {
    color: var(--clr-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.auth-email-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: var(--space-lg);
    padding: 14px 16px;
    background: var(--clr-cream);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--clr-navy);
    word-break: break-word;
}

.auth-email-pill svg {
    width: 18px;
    height: 18px;
    color: var(--clr-gold-dark);
    flex-shrink: 0;
}

.auth-inline-form {
    margin-bottom: var(--space-lg);
}

.auth-note-list {
    display: grid;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(11,26,46,0.03);
    border: 1px solid rgba(11,26,46,0.06);
    border-radius: var(--radius-md);
}

.auth-note-list p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
}

.profile-page {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background:
        radial-gradient(ellipse 50% 35% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
        var(--clr-ivory);
}

.profile-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.profile-eyebrow {
    display: inline-block;
    margin-bottom: var(--space-sm);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
}

.profile-hero h1 {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    color: var(--clr-navy);
    margin-bottom: var(--space-sm);
}

.profile-hero p {
    max-width: 560px;
    color: var(--clr-text-light);
    font-size: 1rem;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.profile-badge {
    background: var(--clr-white);
    color: var(--clr-navy);
    border: 1px solid var(--clr-border);
}

.profile-badge.is-verified,
.profile-auth-state.is-active {
    background: rgba(46,125,50,0.12);
    color: var(--clr-success);
    border: 1px solid rgba(46,125,50,0.18);
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
    gap: var(--space-xl);
}

.profile-card {
    padding: var(--space-xl);
}

.profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.profile-card-header-stack {
    align-items: flex-start;
    justify-content: flex-start;
}

.profile-card h2 {
    font-family: var(--ff-heading);
    font-size: 1.45rem;
    color: var(--clr-navy);
    margin-bottom: 6px;
}

.profile-card p {
    color: var(--clr-text-light);
}

.profile-avatar-shell {
    flex-shrink: 0;
}

.profile-avatar,
.profile-avatar-fallback {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.profile-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
    color: var(--clr-gold-light);
    font-family: var(--ff-heading);
    font-size: 2rem;
    text-transform: uppercase;
}

.profile-form .btn {
    margin-top: var(--space-sm);
}

.profile-address-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-sidebar {
    display: grid;
    gap: var(--space-xl);
    align-content: start;
}

.profile-auth-list {
    display: grid;
    gap: var(--space-md);
}

.profile-auth-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--clr-cream);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}

.profile-auth-item strong {
    display: block;
    color: var(--clr-navy);
    margin-bottom: 4px;
}

.profile-auth-item p {
    font-size: 0.88rem;
}

.profile-auth-state {
    background: rgba(12,26,46,0.08);
    color: var(--clr-warm-gray);
    border: 1px solid rgba(12,26,46,0.08);
    min-width: 88px;
}

.profile-mini-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-page {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .profile-hero,
    .profile-card-header,
    .auth-status-row,
    .profile-auth-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-address-row {
        grid-template-columns: 1fr;
    }
}
