/**
 * No More Bottles UAE - Modern Design System
 * Inspired by Aesop, Allbirds, Glossier, Everlane
 */

:root {
    /* Brand */
    --primary: #1B4F9A;
    --primary-dark: #163F7B;
    --primary-light: #E8EEF8;
    --secondary: #00AEEF;
    --accent: #00C9A7;

    /* Neutrals — warm, editorial palette */
    --ink: #0E1116;
    --ink-soft: #1F2430;
    --gray-900: #111827;
    --gray-800: #1F2430;
    --gray-700: #3A4250;
    --gray-600: #5B6472;
    --gray-500: #8A92A0;
    --gray-400: #B5BBC5;
    --gray-300: #D9DDE3;
    --gray-200: #E8EBEF;
    --gray-100: #F3F5F7;
    --gray-50:  #F8F9FB;
    --cream:    #FAF8F4;
    --cream-2:  #F4F1EA;
    --white:    #FFFFFF;

    /* Status */
    --success: #10B981;
    --warning: #F59E0B;
    --danger:  #EF4444;
    --hot-color: #CC272B;
    --brand-red: #CC272B;
    --brand-red-light: rgba(204,39,43,.1);

    /* Type */
    --font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, .04);
    --shadow:    0 1px 2px rgba(15, 23, 42, .04), 0 1px 3px rgba(15, 23, 42, .04);
    --shadow-md: 0 6px 16px -4px rgba(15, 23, 42, .08), 0 2px 6px -2px rgba(15, 23, 42, .05);
    --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, .12), 0 8px 16px -8px rgba(15, 23, 42, .06);
    --shadow-xl: 0 30px 60px -16px rgba(15, 23, 42, .18);

    /* Radius */
    --radius-xs: 6px;
    --radius:    10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Motion */
    --ease: cubic-bezier(.22, .61, .36, 1);
    --t-fast: 160ms;
    --t: 240ms;
    --t-slow: 480ms;

    /* Layout */
    --container: 1240px;
    --container-wide: 1440px;
    --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'ss01', 'cv11';
}

a { color: var(--ink); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--primary); }

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

::selection { background: var(--primary); color: var(--white); }

/* Focus */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.375rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.005em;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--t-fast) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 8px 24px -8px rgba(27,79,154,.5);
}

.btn-accent {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-accent:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.btn-secondary:hover { background: #0098d4; border-color: #0098d4; color: var(--white); }

.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-ghost {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--ink);
}
.btn-ghost:hover { background: var(--gray-100); border-color: var(--gray-400); color: var(--ink); }

.btn-white {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}
.btn-white:hover { background: var(--cream-2); color: var(--ink); }

.btn-sm { padding: 10px 18px; font-size: 0.825rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-arrow::after {
    content: '→';
    transition: transform var(--t) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* Header */
.header {
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(15,23,42,.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--t) var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 32px;
}

.logo { display: inline-flex; align-items: center; gap: 8px; line-height: 0; }
.logo img { height: 38px; width: auto; transition: opacity var(--t) var(--ease); }
.logo:hover img { opacity: 0.8; }
.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.94rem;
    position: relative;
    padding: 6px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t) var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.main-nav a.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 6px; }

.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--ink-soft);
    border: none;
    cursor: pointer;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
    text-decoration: none;
}
.icon-btn:hover { background: var(--gray-100); color: var(--ink); }
.icon-btn i { width: 20px; height: 20px; }

.cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    color: var(--ink-soft);
    background: transparent;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
    border: none;
    cursor: pointer;
}
.cart-icon:hover { background: var(--gray-100); color: var(--ink); }

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--brand-red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--ink);
}

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14,17,22,.4);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12vh;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay form {
    width: min(680px, 92vw);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    transform: translateY(-20px);
    transition: transform var(--t) var(--ease);
}
.search-overlay.open form { transform: translateY(0); }
.search-overlay input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.125rem;
    font-family: inherit;
    background: transparent;
    color: var(--ink);
    padding: 8px 0;
}
.search-overlay input::placeholder { color: var(--gray-500); }
.search-overlay button {
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* Hero */
.hero-modern {
    position: relative;
    min-height: clamp(480px, 70vh, 640px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}
.hero-modern .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-modern .hero-media img,
.hero-modern .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-modern .hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,17,22,.10) 0%, rgba(14,17,22,.55) 100%);
}
.hero-modern.hero-right .hero-media::after {
    background: linear-gradient(90deg, rgba(14,17,22,0) 30%, rgba(14,17,22,.55) 75%, rgba(14,17,22,.7) 100%);
}
.hero-modern.hero-right .hero-inner { margin-left: auto; text-align: right; }
.hero-modern.hero-right .hero-inner p { margin-left: auto; }
.hero-modern.hero-right .hero-cta-row { justify-content: flex-end; }
.hero-modern.hero-right .hero-meta { justify-content: flex-end; }
.hero-modern .container { position: relative; z-index: 2; width: 100%; }
.hero-modern .hero-inner { max-width: 660px; color: var(--white); padding: 80px 0; }
.hero-modern .eyebrow { color: rgba(255,255,255,.85); }
.hero-modern h1 {
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
}
.hero-modern p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.55;
    color: rgba(255,255,255,.92);
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-modern .hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-modern .hero-meta {
    display: flex;
    gap: 28px;
    margin-top: 56px;
    flex-wrap: wrap;
}
.hero-modern .hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.92);
    font-size: 0.9rem;
}
.hero-modern .hero-meta-item i { width: 18px; height: 18px; color: var(--accent); }

.hero-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.7);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll-cue::after {
    content: '';
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.5);
    animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue {
    0%, 100% { transform: scaleY(0.4); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

/* Marquee bar */
.marquee {
    background: var(--ink);
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}
.marquee-track {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    width: max-content;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; }
.marquee-track i { width: 14px; height: 14px; color: var(--accent); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Section */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section-sm { padding: 48px 0; }
.section-gray { background: var(--gray-50); }
.section-cream { background: var(--cream); }
.section-ink { background: var(--ink); color: var(--gray-200); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.section-header-flex h2 { margin: 0; }
.section-header-flex .eyebrow { margin-bottom: 8px; }
.section-header-flex .meta { color: var(--gray-600); margin-top: 8px; }

/* Featured Categories */
.category-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 320px;
    gap: 16px;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    cursor: pointer;
    isolation: isolate;
    color: var(--white);
    text-decoration: none;
    display: block;
}
.category-card.tall { grid-row: span 2; }
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,17,22,.0) 30%, rgba(14,17,22,.65) 100%);
    z-index: 1;
    transition: background var(--t) var(--ease);
}
.category-card:hover img { transform: scale(1.06); }
.category-card:hover::after { background: linear-gradient(180deg, rgba(14,17,22,.1) 20%, rgba(14,17,22,.75) 100%); }
.category-card .cc-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--white);
}
.category-card .cc-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
}
.category-card .cc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.01em;
}
.category-card .cc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-top: 10px;
    color: var(--white);
    transition: gap var(--t) var(--ease);
}
.category-card:hover .cc-link { gap: 12px; }

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 28px;
}
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Product card — modern minimal */
.product-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform var(--t) var(--ease);
    position: relative;
    isolation: isolate;
}
.product-card:hover { transform: translateY(-2px); }

.product-card-image {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease), opacity var(--t) var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--brand-red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.quick-actions {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.product-card:hover .quick-actions,
.product-card:focus-within .quick-actions { opacity: 1; transform: translateY(0); }
.quick-add {
    flex: 1;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 12px 14px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background var(--t) var(--ease);
}
.quick-add:hover { background: var(--primary); color: var(--white); }
.quick-wishlist {
    width: 42px;
    height: 42px;
    background: var(--white);
    color: var(--ink);
    border: none;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color var(--t) var(--ease), background var(--t) var(--ease);
    box-shadow: var(--shadow-sm);
}
.quick-wishlist:hover { color: var(--primary); }
.quick-wishlist i { width: 18px; height: 18px; }

.product-card-body { padding: 0 4px; }
.product-card-category {
    font-size: 0.72rem;
    color: var(--gray-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
}
.product-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.product-card-title a { color: var(--ink); }
.product-card-title a:hover { color: var(--primary); }
.product-card-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-water-options {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.water-option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
}
.water-option i { width: 12px; height: 12px; }

.product-card-pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 0;
    border: none;
    margin-bottom: 0;
}
.price-row { display: flex; align-items: baseline; gap: 6px; margin: 0; justify-content: flex-start; }
.price-label { font-size: 0.8rem; color: var(--gray-500); margin-right: 4px; }
.price-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.price-value.deposit { color: var(--gray-700); font-weight: 600; }
.price-value small.vat-label { font-size: 0.65rem; color: var(--gray-500); font-weight: 500; margin-left: 2px; letter-spacing: 0.04em; }

/* Product carousel */
.product-rail-wrap { position: relative; }
.product-rail {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scroll-behavior: smooth;
}
.product-rail::-webkit-scrollbar { display: none; }
.product-rail .product-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    min-width: 260px;
}
.rail-controls {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    justify-content: flex-end;
}
.rail-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.rail-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.rail-btn i { width: 18px; height: 18px; }
.rail-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.rail-btn:disabled:hover { background: var(--white); color: var(--ink); border-color: var(--gray-200); }

/* Editorial */
.editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}
.editorial.reverse .editorial-media { order: 2; }
.editorial-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-media .badge-floating {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.85rem;
}
.editorial-media .badge-floating i { color: var(--primary); width: 18px; height: 18px; }
.editorial-content .eyebrow { margin-bottom: 16px; }
.editorial-content h2 { margin-bottom: 22px; }
.editorial-content p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.65; margin-bottom: 14px; }
.editorial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 36px 0;
    padding: 28px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}
.editorial-stat .num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
}
.editorial-stat .lbl {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 6px;
    display: block;
}

/* Why us / value props */
.value-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.value-prop {
    background: var(--white);
    padding: 36px 28px;
    text-align: left;
    transition: background var(--t) var(--ease);
}
.value-prop:hover { background: var(--cream); }
.value-prop-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.value-prop-icon i { width: 22px; height: 22px; }
.value-prop h4 { margin-bottom: 8px; font-size: 1.05rem; font-weight: 700; }
.value-prop p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* How it works (steps) */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}
.step {
    position: relative;
    padding: 40px 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.step:hover { border-color: var(--ink); transform: translateY(-4px); }
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}
.step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.step-icon i { width: 26px; height: 26px; }
.step h4 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover { border-color: var(--gray-300); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: 16px; color: #F5A623; }
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 24px;
    flex: 1;
}
.testimonial-card .author {
    font-weight: 700;
    color: var(--ink);
    font-size: 0.92rem;
}
.testimonial-card .company { color: var(--gray-500); font-size: 0.82rem; margin-top: 2px; }

/* UGC Strip */
.ugc-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}
.ugc-strip a {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    background: var(--gray-100);
    display: block;
}
.ugc-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--t-slow) var(--ease); }
.ugc-strip a:hover img { transform: scale(1.05); }

/* Trust logos */
.trusted-section { background: var(--cream); }
.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 80px);
    flex-wrap: wrap;
    padding: 12px 0;
}
.trust-logos img {
    height: clamp(48px, 6vw, 72px);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(100%);
    transition: opacity var(--t) var(--ease), filter var(--t) var(--ease), transform var(--t) var(--ease);
}
.trust-logos img:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.05); }
@media (max-width: 768px) {
    .trust-logos { gap: 28px; }
    .trust-logos img { height: 42px; }
}

/* Newsletter */
.newsletter {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: clamp(48px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,79,154,.4) 0%, rgba(27,79,154,0) 70%);
    pointer-events: none;
}
.newsletter h2 { color: var(--white); margin-bottom: 14px; }
.newsletter p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0; }
.newsletter-form-modern {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.newsletter-form-modern input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    min-width: 0;
}
.newsletter-form-modern input::placeholder { color: var(--gray-500); }
.newsletter-form-modern button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--t) var(--ease);
    white-space: nowrap;
}
.newsletter-form-modern button:hover { background: var(--primary-dark); }
.newsletter-perks {
    display: flex;
    gap: 24px;
    margin-top: 18px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.7);
    font-size: 0.85rem;
}
.newsletter-perks span { display: inline-flex; align-items: center; gap: 6px; }
.newsletter-perks i { width: 14px; height: 14px; color: var(--accent); }

/* FAQ */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 0 24px;
}
.faq-tab {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t) var(--ease);
}
.faq-tab:hover { border-color: var(--ink); color: var(--ink); }
.faq-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.faq-accordion { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color var(--t) var(--ease);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: transform var(--t) var(--ease); width: 20px; height: 20px; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-slow) var(--ease), padding var(--t) var(--ease);
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 24px; }
.faq-answer p { color: var(--gray-600); line-height: 1.7; }

/* Footer */
.footer {
    background: var(--ink);
    color: var(--gray-400);
    padding: 80px 0 28px;
    font-size: 0.92rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; max-width: 320px; color: var(--gray-400); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.06);
    color: var(--gray-300);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-social i { width: 16px; height: 16px; }

.footer h4 {
    color: var(--white);
    font-size: 0.78rem;
    margin-bottom: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links li { margin: 0; }
.footer-links a, .footer-links span {
    color: var(--gray-400);
    font-size: 0.92rem;
    transition: color var(--t) var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-payment {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}
.footer-payment .pay-icon {
    background: var(--white);
    border-radius: var(--radius-xs);
    padding: 5px 8px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--ink);
    min-width: 40px;
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--gray-500);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--gray-500); transition: color var(--t) var(--ease); }
.footer-bottom-links a:hover { color: var(--white); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.whatsapp-float:hover {
    transform: scale(1.06);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}
.form-control {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form-control:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(14,17,22,.08);
}
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231F2430' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Newsletter form (legacy) */
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.875rem;
    background: var(--white);
    color: var(--ink);
}
.newsletter-form button {
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

/* Cart / checkout */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 16px; background: var(--gray-50); font-weight: 600; color: var(--gray-700); font-size: 0.85rem; }
.cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product-image { width: 80px; height: 80px; background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.cart-product-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-summary { background: var(--gray-50); padding: 32px; border-radius: var(--radius-lg); }
.cart-summary-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.cart-summary-row.total { border-bottom: none; font-size: 1.25rem; font-weight: 700; color: var(--ink); padding-top: 16px; }

/* Coming soon, alerts */
.coming-soon { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.coming-soon-icon { width: 120px; height: 120px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.coming-soon-icon i { width: 60px; height: 60px; color: var(--primary); }
.coming-soon h1 { margin-bottom: 16px; }
.coming-soon p { color: var(--gray-600); max-width: 500px; margin-bottom: 32px; }

.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-success { background: rgba(16,185,129,.1); color: var(--success); border: 1px solid rgba(16,185,129,.2); }
.alert-danger { background: rgba(239,68,68,.1); color: var(--danger); border: 1px solid rgba(239,68,68,.2); }
.alert-warning { background: rgba(245,158,11,.1); color: var(--warning); border: 1px solid rgba(245,158,11,.2); }

.quantity-input { display: inline-flex; align-items: center; gap: 2px; width: fit-content; }
.quantity-btn { width: 32px; height: 32px; border: none; background: transparent; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t) var(--ease); color: var(--ink); }
.quantity-btn:hover { background: var(--gray-100); }
.quantity-value { width: 44px; text-align: center; font-weight: 600; border: none; background: transparent; font-size: 1rem; color: var(--ink); padding: 4px 0; outline: none; -moz-appearance: textfield; }
.quantity-value::-webkit-outer-spin-button, .quantity-value::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.quantity-value:focus { background: var(--gray-100); border-radius: 6px; }

.contract-toggle { display: flex; gap: 12px; margin-bottom: 20px; }
.contract-option { flex: 1; padding: 16px; border: 2px solid var(--gray-200); border-radius: var(--radius); text-align: center; cursor: pointer; transition: all var(--t) var(--ease); }
.contract-option:hover { border-color: var(--ink); }
.contract-option.active { border-color: var(--ink); background: var(--cream); }
.contract-option input { display: none; }
.contract-label { font-weight: 600; margin-bottom: 4px; }
.contract-price { color: var(--ink); font-size: 1.25rem; font-weight: 700; }
.contract-note { font-size: 0.75rem; color: var(--gray-500); }

/* Tooltip icon next to "2 Year" / "3 Year" labels */
.contract-tooltip { display: inline-flex; align-items: center; margin-left: 4px; color: var(--gray-500); cursor: help; }
.contract-tooltip:hover, .contract-tooltip:focus { color: var(--ink); outline: none; }

/* "Save AED X/mo" pill on the 3-year contract option */
.contract-savings-pill {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Trust signals strip — sits between page content and the main footer */
.trust-strip {
    background: var(--cream);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 28px 0;
}
.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.trust-item {
    display: flex;
    gap: 14px;
    align-items: center;
}
.trust-item > i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 8px;
    background: var(--white);
    border-radius: 50%;
    color: var(--accent, #00C9A7);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.trust-item > div { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 0.92rem; color: var(--ink); }
.trust-item span { font-size: 0.78rem; color: var(--gray-600); }
.trust-item a { color: inherit; text-decoration: none; }
.trust-item a:hover { color: var(--ink); text-decoration: underline; }

.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 18px 0; font-size: 0.85rem; color: var(--gray-500); }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-separator { color: var(--gray-400); }

.page-header { background: var(--cream); padding: 64px 0 48px; text-align: center; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--gray-600); }

/* Section legacy compatibility */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature-item { display: flex; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.feature-icon { width: 48px; height: 48px; min-width: 48px; background: var(--primary-light); color: var(--primary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.feature-content h4 { margin-bottom: 4px; }
.feature-content p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

.sustainability-section { background: linear-gradient(135deg, var(--ink) 0%, #1F2430 100%); color: var(--white); padding: 56px; border-radius: var(--radius-xl); margin: 48px 0; }
.sustainability-section h3 { color: var(--white); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.sustainability-section h3 i { color: var(--accent); }
.sustainability-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sustainability-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.92); }
.sustainability-item i { color: var(--accent); }

.tech-sheet-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--gray-100); color: var(--ink); border-radius: var(--radius); font-weight: 600; transition: all var(--t) var(--ease); }
.tech-sheet-btn:hover { background: var(--ink); color: var(--white); }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { background: transparent; border-radius: 0; overflow: visible; transition: transform var(--t) var(--ease); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image { aspect-ratio: 4/3; background: var(--cream); overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 18px; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 0 4px; }
.blog-card-meta { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.blog-card-title { font-size: 1.18rem; line-height: 1.35; margin-bottom: 10px; font-weight: 700; }
.blog-card-title a { color: var(--ink); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 14px; line-height: 1.6; }

/* How it works (legacy) */
.how-it-works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-it-works-step { background: var(--white); padding: 40px 28px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); position: relative; transition: border-color var(--t) var(--ease), transform var(--t) var(--ease); }
.how-it-works-step:hover { border-color: var(--ink); transform: translateY(-4px); }
.how-it-works-step .step-number { position: absolute; top: 22px; right: 24px; font-size: 1.15rem; font-weight: 700; color: var(--gray-400); }
.how-it-works-step .step-icon { width: 56px; height: 56px; border-radius: var(--radius); background: var(--cream); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.how-it-works-step h4 { margin-bottom: 8px; }
.how-it-works-step p { color: var(--gray-600); font-size: 0.92rem; line-height: 1.6; margin: 0; }

/* Mobile menu drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    background: rgba(14,17,22,.4);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    background: var(--white);
    padding: 24px;
    transform: translateX(100%);
    transition: transform var(--t) var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer-nav a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); color: var(--ink); font-weight: 500; font-size: 1.05rem; }
.mobile-drawer-foot { margin-top: auto; padding-top: 24px; }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Vat */
.vat-label { font-size: 0.7rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.04em; }

/* Responsive */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .sustainability-list { grid-template-columns: 1fr; }
    .editorial { grid-template-columns: 1fr; }
    .editorial.reverse .editorial-media { order: 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .value-props { grid-template-columns: repeat(2, 1fr); }
    .how-it-works-grid, .steps { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; }
    .category-card.tall { grid-row: span 1; grid-column: span 2; }
    .newsletter { grid-template-columns: 1fr; padding: 48px 32px; }
    .product-rail .product-card { flex: 0 0 calc((100% - 24px) / 2); }
    .ugc-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }
    .main-nav { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .header-actions { gap: 2px; }
    .product-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .category-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .category-card.tall { grid-column: span 1; }
    .editorial-stats { grid-template-columns: 1fr; gap: 16px; }
    .product-rail .product-card { flex: 0 0 78%; }
    .ugc-strip { grid-template-columns: repeat(2, 1fr); }
    .cart-table { display: block; }
    .cart-table thead { display: none; }
    .cart-table tbody, .cart-table tr, .cart-table td { display: block; }
    .cart-table tr { margin-bottom: 20px; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; }
    .cart-table td { border: none; padding: 8px 0; }
    .hero-modern { min-height: 560px; }
    .hero-modern .hero-meta { gap: 16px; }
}

/* Admin (refreshed visuals) */
.admin-sidebar { width: 260px; background: var(--ink); color: var(--white); min-height: 100vh; position: fixed; left: 0; top: 0; }
.admin-logo { padding: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-nav { padding: 16px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: rgba(255,255,255,.7); transition: all var(--t) var(--ease); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.06); color: var(--white); }
.admin-main { margin-left: 260px; padding: 32px; background: var(--gray-100); min-height: 100vh; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 12px 16px; background: var(--gray-50); font-weight: 600; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.admin-table tr:hover td { background: var(--gray-50); }
.badge { display: inline-block; padding: 4px 12px; font-size: 0.75rem; font-weight: 500; border-radius: 50px; }
.badge-success { background: rgba(16,185,129,.1); color: var(--success); }
.badge-warning { background: rgba(245,158,11,.1); color: var(--warning); }
.badge-danger { background: rgba(239,68,68,.1); color: var(--danger); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 24px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.stat-card h3 { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 8px; }
.stat-card .value { font-size: 2rem; font-weight: 700; color: var(--ink); }
.stat-card.primary .value { color: var(--primary); }
.stat-card.secondary .value { color: var(--secondary); }
.stat-card.accent .value { color: var(--accent); }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; padding: 12px; background: var(--gray-50); border-radius: var(--radius); cursor: pointer; }
.checkbox-item input { width: 18px; height: 18px; }
.checkbox-item label { cursor: pointer; }

/* Legacy hero (kept for other pages) */
.hero { background: var(--ink); color: var(--white); padding: 80px 0; }
.hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 24px; }
.hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-with-image { background-size: cover; background-position: center; position: relative; min-height: 500px; display: flex; align-items: center; }

/* ──────────────────────────────────────────────────────────
   PLP — Shop / Listing Page
   ────────────────────────────────────────────────────────── */
.plp-hero { background: var(--cream); padding: 56px 0 36px; }
.plp-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.plp-hero p { color: var(--gray-600); max-width: 540px; }

.plp-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.plp-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }
.filter-block { border-bottom: 1px solid var(--gray-200); padding: 18px 0; }
.filter-block:first-child { padding-top: 0; }
.filter-block:last-child { border-bottom: none; }
.filter-block summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 4px 0;
}
.filter-block summary::-webkit-details-marker { display: none; }
.filter-block summary::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--ink);
    border-bottom: 1.5px solid var(--ink);
    transform: rotate(45deg);
    margin-right: 4px;
    transition: transform var(--t) var(--ease);
}
.filter-block[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.filter-block-body { padding: 14px 0 6px; display: flex; flex-direction: column; gap: 10px; }
.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--ink-soft);
    padding: 4px 0;
}
.filter-option input { accent-color: var(--ink); width: 16px; height: 16px; }
.filter-option .count { margin-left: auto; color: var(--gray-500); font-size: 0.82rem; }
.filter-clear {
    background: none;
    border: none;
    color: var(--gray-600);
    font-family: inherit;
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 8px;
}
.filter-clear:hover { color: var(--ink); }

.range-row { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-700); }
.range-row input[type="range"] { flex: 1; accent-color: var(--ink); }
.range-row .range-value { font-weight: 600; color: var(--ink); min-width: 70px; text-align: right; }

.plp-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.plp-toolbar .count { color: var(--gray-600); font-size: 0.92rem; }
.plp-toolbar .right { display: flex; gap: 8px; align-items: center; }
.sort-select {
    padding: 9px 36px 9px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--white) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%231F2430' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") right 12px center/14px no-repeat;
    appearance: none;
    color: var(--ink);
    cursor: pointer;
}
.view-toggle { display: inline-flex; border: 1px solid var(--gray-300); border-radius: var(--radius); overflow: hidden; }
.view-toggle button {
    background: var(--white);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--gray-600);
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.view-toggle button.active { background: var(--ink); color: var(--white); }
.view-toggle i { width: 16px; height: 16px; display: block; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border: 1px solid var(--gray-200);
    color: var(--ink);
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}
.filter-chip button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    display: inline-flex;
    padding: 0;
    line-height: 0;
}
.filter-chip button:hover { color: var(--ink); }

.mobile-filter-toggle {
    display: none;
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    gap: 8px;
}

/* List view */
.product-grid.list-view { grid-template-columns: 1fr; gap: 16px; }
.product-grid.list-view .product-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: center; padding: 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); }
.product-grid.list-view .product-card-image { aspect-ratio: 4/5; margin-bottom: 0; }
.product-grid.list-view .product-card-body { padding: 0; }

/* Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 0%, var(--gray-200) 50%, var(--gray-100) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.4s ease-in-out infinite;
    border-radius: var(--radius);
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--cream);
}
.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.empty-state-icon i { width: 36px; height: 36px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--gray-600); margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ──────────────────────────────────────────────────────────
   PDP — Product Detail Page
   ────────────────────────────────────────────────────────── */
.pdp-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; padding-top: 24px; }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.pdp-main-image {
    aspect-ratio: 4/5;
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.pdp-main-image:hover img { transform: scale(1.04); }
.pdp-main-image .image-zoom-hint {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}
.pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.pdp-thumb {
    aspect-ratio: 1;
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--t) var(--ease);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--ink); }
.pdp-thumb:hover { border-color: var(--gray-400); }

.pdp-info .pdp-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-weight: 600;
}
.pdp-info h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 10px; letter-spacing: -0.02em; }
.pdp-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--gray-700); font-size: 0.88rem; }
.pdp-rating .stars { color: #F5A623; display: inline-flex; gap: 1px; }
.pdp-info .lead { color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; font-size: 1.02rem; }

.pdp-section-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.water-options-display { display: flex; gap: 14px; margin: 6px 0 24px; flex-wrap: wrap; }
.water-option-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.water-option-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.water-option-icon.ambient { background: rgba(27,79,154,.1); color: var(--primary); }
.water-option-icon.cold { background: rgba(0,174,239,.1); color: var(--secondary); }
.water-option-icon.hot { background: var(--brand-red-light); color: var(--hot-color); }
.water-option-icon.sparkling { background: rgba(0,201,167,.1); color: var(--accent); }
.water-option-label { font-size: 0.74rem; color: var(--gray-700); font-weight: 500; }

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.availability-badge.in-stock { background: rgba(16,185,129,.12); color: var(--success); }
.availability-badge.out-of-stock { background: rgba(239,68,68,.12); color: var(--danger); }

.pdp-summary {
    background: var(--cream);
    padding: 22px;
    border-radius: var(--radius-lg);
    margin-bottom: 22px;
}
.pdp-summary .summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; color: var(--gray-700); }
.pdp-summary .summary-row.total { padding-top: 14px; border-top: 1px solid var(--gray-200); margin-top: 6px; }
.pdp-summary .summary-row.total strong { color: var(--ink); font-size: 1.05rem; }

.pdp-cta-row { display: flex; gap: 10px; }
.pdp-cta-row .btn { flex: 1; }

.pdp-trust { display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap; color: var(--gray-600); font-size: 0.85rem; }
.pdp-trust span { display: inline-flex; align-items: center; gap: 6px; }
.pdp-trust i { width: 16px; height: 16px; color: var(--accent); }

.accordion { border-top: 1px solid var(--gray-200); margin-top: 28px; }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: inherit;
    text-align: left;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.98rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-trigger i { transition: transform var(--t) var(--ease); }
.accordion-item.open .accordion-trigger i { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease); color: var(--gray-700); line-height: 1.7; }
.accordion-item.open .accordion-content { max-height: 800px; padding-bottom: 18px; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--gray-200); }
.specs-table td { padding: 12px 0; font-size: 0.92rem; }
.specs-table .spec-key { color: var(--gray-600); width: 40%; }
.specs-table .spec-value { color: var(--ink); font-weight: 600; }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14,17,22,.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--ink);
}

/* Tech sheet button */
.tech-sheet-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--cream); color: var(--ink); border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; transition: background var(--t) var(--ease); }
.tech-sheet-btn:hover { background: var(--ink); color: var(--white); }

/* ──────────────────────────────────────────────────────────
   Cart drawer (slide-out)
   ────────────────────────────────────────────────────────── */
.cart-drawer {
    position: fixed;
    inset: 0;
    background: rgba(14,17,22,.4);
    backdrop-filter: blur(6px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
}
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.cart-drawer-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(440px, 96vw);
    background: var(--white);
    transform: translateX(100%);
    transition: transform var(--t) var(--ease);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--gray-200);
}
.cart-drawer-header h3 { font-size: 1.1rem; margin: 0; }
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 24px;
}
.cart-drawer-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: center;
}
.cart-drawer-item-img { aspect-ratio: 1; background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.cart-drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-item .name { font-weight: 600; color: var(--ink); font-size: 0.92rem; line-height: 1.3; margin-bottom: 4px; }
.cart-drawer-item .meta { font-size: 0.8rem; color: var(--gray-500); }
.cart-drawer-item .price { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.cart-drawer-foot {
    border-top: 1px solid var(--gray-200);
    padding: 22px 24px;
    background: var(--cream);
}
.cart-drawer-foot .row { display: flex; justify-content: space-between; padding: 6px 0; }
.cart-drawer-foot .row.total { font-weight: 700; font-size: 1.05rem; color: var(--ink); padding-top: 10px; border-top: 1px solid var(--gray-200); margin-top: 6px; }
.cart-drawer-foot .actions { display: grid; gap: 10px; margin-top: 14px; }

/* ──────────────────────────────────────────────────────────
   Checkout — Multi-step
   ────────────────────────────────────────────────────────── */
.checkout-progress {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.checkout-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 0.9rem;
}
.checkout-step .num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    transition: all var(--t) var(--ease);
}
.checkout-step.active { color: var(--ink); font-weight: 600; }
.checkout-step.active .num { background: var(--ink); color: var(--white); }
.checkout-step.done .num { background: var(--accent); color: var(--white); }
.checkout-step.done::after,
.checkout-step:not(:last-child)::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gray-300);
    margin-left: 8px;
}

.checkout-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 18px;
}
.checkout-card h3 { margin-bottom: 22px; font-size: 1.15rem; }

.terms-acceptance { padding: 12px 0; }
.terms-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.terms-checkbox-label input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); }
.terms-checkbox-label a { text-decoration: underline; color: var(--ink); }

/* ──────────────────────────────────────────────────────────
   Account portal
   ────────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.account-sidebar {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 22px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}
.account-sidebar .me {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 14px;
}
.account-sidebar .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.account-sidebar .me .name { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.account-sidebar .me .email { font-size: 0.78rem; color: var(--gray-600); }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--ink-soft);
    font-size: 0.92rem;
    transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.account-nav a:hover { background: var(--white); color: var(--ink); }
.account-nav a.active { background: var(--ink); color: var(--white); }
.account-nav i { width: 16px; height: 16px; }
.account-nav a:hover i,
.account-nav a.active i { color: inherit; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.dash-stat {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}
.dash-stat .label { font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 6px; }
.dash-stat .value { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.data-table thead th {
    text-align: left;
    padding: 14px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--cream);
    border-bottom: 1px solid var(--gray-200);
}
.data-table tbody td { padding: 16px 18px; border-bottom: 1px solid var(--gray-100); font-size: 0.92rem; color: var(--ink-soft); vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--cream); }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 600;
}
.status-pill.success { background: rgba(16,185,129,.1); color: var(--success); }
.status-pill.warning { background: rgba(245,158,11,.1); color: var(--warning); }
.status-pill.danger { background: rgba(239,68,68,.1); color: var(--danger); }
.status-pill.neutral { background: var(--gray-100); color: var(--gray-700); }

/* ──────────────────────────────────────────────────────────
   Article (about, blog post, legal)
   ────────────────────────────────────────────────────────── */
.article-hero {
    padding: 80px 0 48px;
    background: var(--cream);
    text-align: center;
}
.article-hero .eyebrow { margin-bottom: 16px; }
.article-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.article-hero p { color: var(--gray-600); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.article-hero .meta { color: var(--gray-500); font-size: 0.85rem; margin-top: 18px; }

.article-cover { aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; margin: 0 auto 48px; max-width: 1000px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 720px; margin: 0 auto; color: var(--gray-700); font-size: 1.05rem; line-height: 1.8; }
.prose h2 { font-size: 1.65rem; margin: 48px 0 16px; color: var(--ink); }
.prose h3 { font-size: 1.25rem; margin: 32px 0 12px; color: var(--ink); }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose blockquote {
    border-left: 3px solid var(--ink);
    padding-left: 20px;
    margin: 24px 0;
    color: var(--ink);
    font-style: italic;
}
.prose img { border-radius: var(--radius); margin: 24px 0; }

/* ──────────────────────────────────────────────────────────
   Auth (login, register, forgot)
   ────────────────────────────────────────────────────────── */
.auth-shell {
    height: calc(100vh - var(--header-h));
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.auth-side {
    position: relative;
    background: var(--cream);
    overflow: hidden;
}
.auth-side img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.auth-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,17,22,.0) 40%, rgba(14,17,22,.55) 100%);
}
.auth-side-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: var(--white);
}
.auth-side-text .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 12px; }
.auth-side-text h2 { color: var(--white); font-size: 2rem; }
.auth-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 48px;
    overflow-y: auto;
}
.auth-form { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: 1.75rem; margin-bottom: 8px; }
.auth-form .sub { color: var(--gray-600); margin-bottom: 32px; }
.auth-form .alt {
    text-align: center;
    margin-top: 24px;
    color: var(--gray-600);
    font-size: 0.92rem;
}
.auth-form .alt a { color: var(--ink); text-decoration: underline; font-weight: 600; }

/* ──────────────────────────────────────────────────────────
   Contact / Generic two-column
   ────────────────────────────────────────────────────────── */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-card-list { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: border-color var(--t) var(--ease);
}
.contact-card:hover { border-color: var(--ink); }
.contact-card .ic {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-card .ic i { width: 20px; height: 20px; }
.contact-card .label { font-weight: 700; color: var(--ink); margin-bottom: 2px; font-size: 0.95rem; }
.contact-card .value { color: var(--gray-700); font-size: 0.92rem; }

.cta-band {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px;
    text-align: center;
    margin: 64px 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,79,154,.4) 0%, rgba(27,79,154,0) 70%);
    pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); margin: 0 auto 28px; max-width: 520px; position: relative; }
.cta-band .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ──────────────────────────────────────────────────────────
   Responsive (additional)
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .plp-layout { grid-template-columns: 1fr; gap: 24px; }
    .plp-sidebar { position: static; }
    .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
    .pdp-gallery { position: static; }
    .account-layout { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .auth-shell { grid-template-columns: 1fr; }
    .auth-side { display: none; }
    .split-2 { grid-template-columns: 1fr; gap: 32px; }
    .checkout-progress { gap: 12px; }
    .checkout-step { font-size: 0.82rem; }
    .checkout-step:not(:last-child)::after { width: 16px; }
    .checkout-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .cart-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}
@media (max-width: 768px) {
    .plp-toolbar { flex-direction: column; align-items: stretch; }
    .plp-toolbar .right { justify-content: flex-end; }
    .product-grid.list-view .product-card { grid-template-columns: 120px 1fr; }
    .pdp-cta-row { flex-direction: column; }
    .dash-stats { grid-template-columns: 1fr; }
    .data-table { font-size: 0.82rem; }
    .data-table thead { display: none; }
    .data-table, .data-table tbody, .data-table tr, .data-table td { display: block; }
    .data-table tr { padding: 14px; border-bottom: 1px solid var(--gray-200); }
    .data-table td { padding: 4px 0; border: none; }
    .cta-band { padding: 40px 24px; }
}
