/* BootFanatics Design System - Premium Product Marketplace */
/* Modern premium UI/UX inspired by clean, minimalist e-commerce design */

/* ============================================================
   Design Tokens
   ============================================================ */

:root {
    /* ============================================================
       Core Color Palette - BootFanatics (Kenya-inspired
       Black / Red / White / Green) - normalized for accessibility
       ============================================================ */

    /* Core tokens */
    --color-black: #0B0B0B;
    --color-dark: #161616;
    --color-red: #D60000;
    --color-red-hover: #B80000;
    --color-green: #006B1B;
    --color-green-light: #008F24;
    --color-white: #FFFFFF;
    --color-off-white: #F7F7F5;
    --color-light-gray: #EBEBEB;
    --color-gray: #9CA3AF;
    --color-dark-text: #111111;
    --color-light-text: #FFFFFF;

    /* Derived shades & tints */
    --color-black-soft: var(--color-dark);
    --color-black-muted: #232323;
    --color-red-dark: var(--color-red-hover);
    --color-red-light: #FF6B63;
    --color-red-bg: #FCEBEB;
    --color-green-dark: #005515;
    --color-green-bg: #E9F6EC;

    /* Neutrals mapped onto the core palette */
    --color-gray-900: var(--color-dark-text);
    --color-gray-800: #2A2A2A;
    --color-gray-700: #3F3F46;
    --color-gray-600: #52525B;
    --color-gray-500: #6B7280;
    --color-gray-400: var(--color-gray);
    --color-gray-300: #D4D4D4;
    --color-gray-200: var(--color-light-gray);
    --color-gray-100: #F0F0EE;
    --color-gray-50: var(--color-off-white);

    /* Backward-compatible aliases */
    --black: var(--color-black);
    --white: var(--color-white);
    --gray-900: var(--color-gray-900);
    --gray-700: var(--color-gray-700);
    --gray-600: var(--color-gray-600);
    --gray-500: var(--color-gray-500);
    --gray-400: var(--color-gray-400);
    --gray-300: var(--color-gray-300);
    --gray-200: var(--color-gray-200);
    --gray-100: var(--color-gray-100);

    /* Brand accents */
    --brand: var(--color-red);
    --brand-hover: var(--color-red-hover);
    --brand-dark: var(--color-red-hover);
    --brand-on-dark: var(--color-red-light);
    --brand-light: var(--color-red-light);
    --brand-green: var(--color-green);

    /* Semantic Mappings */
    --primary: var(--color-black);
    --primary-hover: var(--color-dark);
    --secondary: var(--color-red);
    --secondary-hover: var(--color-red-hover);
    --accent: var(--color-green);

    /* Text colors (explicit per surface) */
    --text: var(--color-dark-text);
    --text-heading: var(--color-dark-text);
    --text-secondary: var(--color-gray-600);
    --text-muted: var(--color-gray-500);
    --muted-on-dark: var(--color-gray);
    --text-light: var(--color-gray);
    --text-inverse: var(--color-light-text);

    /* Borders */
    --border: var(--color-light-gray);
    --border-strong: #D4D4D4;
    --border-subtle: var(--color-gray-100);

    /* Backgrounds */
    --bg: var(--color-white);
    --bg-alt: var(--color-off-white);
    --bg-muted: var(--color-off-white);
    --bg-elevated: var(--color-white);

    /* Semantic State Colors */
    --success: var(--color-green);
    --success-bg: var(--color-green-bg);
    --error: var(--color-red);
    --error-bg: var(--color-red-bg);
    --warning: #8A6508;
    --warning-bg: #FFFAEB;

    /* Focus ring */
    --focus-ring: var(--color-red);

    /* Typography */
    --font-sans: 'Inter', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;

    /* Spacing scale */
    --space-4: 4px;
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-48: 48px;
    --space-64: 64px;
    --space-80: 80px;
    --space-96: 96px;
    --space-120: 120px;

    /* Radii - Modern rounded corners */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 999px;

    /* Shadows - Refined, softer shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.14);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 150ms var(--ease-smooth);
    --transition-normal: 250ms var(--ease-smooth);
    --transition-slow: 400ms var(--ease-smooth);
}

/* ============================================================
   Base / Typography
   ============================================================ */

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark-text);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-16);
    letter-spacing: -0.02em;
}

a { color: var(--text); transition: color var(--transition-fast); }
a:hover { color: var(--text); }

img { max-width: 100%; }

:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 2px;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section titles */
.section-title {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: var(--space-24);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title .accent { color: var(--brand); }

.section-title.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-title.white { color: var(--white); }

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-32);
}

/* Small label */
.small-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.small-label.brand-color { color: var(--brand); }

.small-label.hero { color: rgba(255,255,255,0.85); }

/* Body text */
.body-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
}

.small-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.lead {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-light-text);
    font-family: var(--font-sans);
}

.btn:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-light-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-light-text);
    border-color: var(--color-red);
}

.btn-primary:hover {
    background-color: var(--color-red-hover);
    border-color: var(--color-red-hover);
    color: var(--color-light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 0, 0, 0.3);
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-light-text);
    border-color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-light-text);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-full);
}

.btn-outline:hover {
    border-color: var(--color-dark-text);
    color: var(--color-dark-text);
    background: var(--bg-muted);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Red outline button (product page BUY NOW) */
.btn-outline-brand {
    background-color: transparent;
    color: var(--color-red);
    border: 2px solid var(--color-red);
    border-radius: var(--radius-full);
}

.btn-outline-brand:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 0, 0, 0.25);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--color-light-text);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-full);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-white);
    color: var(--color-light-text);
}

.btn-success {
    background-color: var(--color-green);
    color: var(--color-light-text);
    border-color: var(--color-green);
}

.btn-success:hover {
    background-color: var(--color-green-dark);
    border-color: var(--color-green-dark);
    color: var(--color-light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 107, 27, 0.3);
}

/* Disabled buttons must remain legible */
.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-lg { padding: 18px 40px; font-size: 14px; }
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-block { width: 100%; }

/* ============================================================
   Announcement / Promo Bar
   ============================================================ */

.announcement-bar {
    background-color: var(--color-green);
    color: var(--color-light-text);
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.03em;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-16);
    text-align: center;
    flex-wrap: wrap;
}

.announcement-bar .promo-content { font-size: 13px; letter-spacing: 0.02em; }

.announcement-bar .promo-code {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-green);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    vertical-align: middle;
}

.announcement-bar-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-light-text);
    opacity: 0.85;
    cursor: pointer;
    padding: 4px;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.announcement-bar-close:hover { opacity: 1; }

.announcement-bar-close svg { width: 16px; height: 16px; }

.announcement-bar.hidden { display: none; }

/* ============================================================
   Header / Navigation
   ============================================================ */

.main-header {
    background-color: var(--color-black);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: box-shadow var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
    padding: 10px 16px;
    min-height: 64px;
}

/* BootFanatics Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
}

.logo-text .red { color: var(--color-red); }
.logo-text .light { font-weight: 300; }

.logo img { max-height: 40px; height: 40px; }

/* Navigation */
.mega-menu-trigger,
.mega-menu-item > a.mega-menu-trigger {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    padding: 12px 14px;
    display: block;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.mega-menu-trigger:hover {
    color: var(--brand-on-dark);
    background: rgba(255,255,255,0.1);
}

/* Mega menu */
.mega-menu-item { position: relative; }

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    width: auto;
    min-width: 720px;
    background-color: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mega-menu-item:hover .mega-menu-content {
    display: block;
    animation: megaFadeIn 0.25s var(--ease-smooth);
}

@keyframes megaFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.mega-menu-column {
    padding: var(--space-32);
    border-right: 1px solid var(--border);
}

.mega-menu-column:last-child { border-right: none; }

.mega-menu-column-header {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text);
    margin-bottom: var(--space-16);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid var(--border);
}

.mega-menu-column-header a { color: var(--text); text-decoration: none; }
.mega-menu-column-header a:hover { color: var(--brand); }

.mega-model-list { list-style: none; padding: 0; margin: 0; }

.mega-model-item {
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--color-gray-100);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.mega-model-item:last-child { border-bottom: none; }

.mega-model-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    background: var(--bg-muted);
}

.mega-model-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.mega-model-item:hover .mega-model-name { color: var(--brand); }

.mega-size-list { list-style: none; padding: 0; margin: 0; }

.mega-size-item { padding: var(--space-8) 0; }

.mega-size-link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.mega-size-link:hover { color: var(--brand); }

.mega-brand-list { list-style: none; padding: 0; margin: 0; }

.mega-brand-item {
    padding: var(--space-12) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

.mega-brand-item:last-child { border-bottom: none; }

.mega-brand-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    transition: color 0.2s ease;
}

.mega-brand-link:hover { color: var(--brand); }

/* Single column variant */
.mega-menu-content.single-column { min-width: 320px; }
.mega-menu-content.single-column .mega-menu-grid { grid-template-columns: 1fr; }

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    flex-shrink: 0;
}

.search-box { position: relative; }

.search-input {
    width: 200px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 9px 14px 9px 38px;
    font-size: 13px;
    font-family: var(--font-sans);
    background: rgba(255,255,255,0.08);
    color: var(--color-light-text);
    transition: all var(--transition-normal);
    outline: none;
}

.search-input::placeholder { color: rgba(255,255,255,0.5); }

.search-input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.search-btn {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

.search-btn:hover { color: var(--white); }

.cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: var(--color-light-text);
    position: relative;
    transition: all var(--transition-normal);
    text-decoration: none;
    font-size: 16px;
}

.cart-icon:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transform: translateY(-1px);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--brand);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Selectors */
.header-selector select,
.country-selector select {
    border: 1px solid var(--color-gray-600);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-size: 13px;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--color-light-text);
    background-color: var(--color-dark);
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239CA3AF' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.header-selector select:focus-visible,
.country-selector select:focus-visible {
    outline: 2px solid var(--brand-on-dark);
    outline-offset: 1px;
}

.account-link {
    font-size: 14px;
    color: var(--color-light-text);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.account-link:hover { color: var(--brand-on-dark); }

.logout-link {
    font-size: 13px;
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.logout-link:hover { color: var(--brand-on-dark); }

.user-account {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

/* ============================================================
   Hero
   ============================================================ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: var(--color-black);
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.hero-slide.active {
    display: flex;
    opacity: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,11,11,0.88) 0%, rgba(11,11,11,0.60) 50%, rgba(11,11,11,0.25) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: var(--color-light-text);
    max-width: 640px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    color: var(--color-light-text);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-20);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin-bottom: var(--space-32);
    max-width: 480px;
}

.hero-cta {
    font-size: 13px;
    padding: 16px 40px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
    align-items: center;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-slide.active {
    display: flex;
    opacity: 1;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,11,11,0.85) 0%, rgba(11,11,11,0.55) 55%, rgba(11,11,11,0.2) 100%);
    pointer-events: none;
}

/* Force readable light text for any content inside the dark hero */
.hero-section,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section p {
    color: var(--color-light-text);
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: var(--color-light-text);
    max-width: 640px;
}

.hero-slide .small-label.hero {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-16);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-slide .hero-title {
    font-size: 52px;
    line-height: 1.08;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-16);
}

.hero-slide .hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin-bottom: var(--space-32);
    max-width: 480px;
}

.hero-slide .hero-cta {
    font-size: 15px;
    padding: 16px 36px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-24);
    pointer-events: none;
    z-index: 10;
}

.hero-nav {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
    pointer-events: auto;
}

.hero-nav:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.hero-nav:focus {
    outline: 2px solid var(--brand-on-dark);
    outline-offset: 2px;
}

.hero-dots {
    position: absolute;
    bottom: var(--space-32);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-12);
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto;
}

.hero-dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.25);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-slide .hero-title { font-size: 42px; }
    .hero-slide .hero-subtitle { font-size: 16px; }
    .hero-nav { width: 48px; height: 48px; font-size: 18px; }
}

@media (max-width: 576px) {
    .hero-slide .hero-title { font-size: 32px; }
    .hero-slide .hero-subtitle { font-size: 15px; max-width: 100%; }
    .hero-slide .hero-cta { padding: 14px 28px; font-size: 14px; }
    .hero-controls { padding: 0 var(--space-16); }
    .hero-dots { bottom: var(--space-24); }
    .hero-dot { width: 10px; height: 10px; }
}

/* ============================================================
   Trust / Feature Strip
   ============================================================ */

.trust-strip {
    background-color: var(--white);
    padding: var(--space-24) 0;
    border-bottom: 1px solid var(--border);
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-24);
}

.trust-strip .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.trust-strip .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-red);
    font-size: 18px;
}

.trust-strip .title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-transform: uppercase;
}

/* ============================================================
   Category / Model Cards
   ============================================================ */

.model-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-24);
}

.model-collection-card {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-muted);
    text-decoration: none;
    aspect-ratio: 3/4;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.model-collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.model-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-collection-card:hover img { transform: scale(1.05); }

.model-collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-24);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.model-collection-overlay .brand-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.85;
}

.model-collection-overlay .model-name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* ============================================================
   Size Filter
   ============================================================ */

.size-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    align-items: center;
}

.size-filter {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-decoration: none;
    display: inline-block;
}

.size-filter:hover {
    border-color: var(--gray-400);
    background: var(--bg-muted);
}

.size-filter.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ============================================================
   Product Card
   ============================================================ */

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-20); }

.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.35s var(--ease-smooth), box-shadow 0.35s var(--ease-smooth), border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    border-color: var(--gray-300);
}

.hover-lift { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background-color: var(--bg-muted);
    display: block;
}

.product-card-images {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--bg-muted);
}

.product-card-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.product-card-images img.active { opacity: 1; transform: scale(1); }
.product-card-images img.next { opacity: 0; transform: scale(1.06); }

.product-card:hover .product-card-images img.active { opacity: 0; transform: scale(1.06); }
.product-card:hover .product-card-images img.next { opacity: 1; transform: scale(1); }

/* Condition label overlay */
.product-label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-light-text);
    background: var(--color-black);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Condition variants use solid fills + white text so they stay
   readable over both light and dark imagery */
.product-label.new,
.product-label.good,
.product-label.refurbished {
    background: var(--color-green);
    color: var(--color-light-text);
}

.product-label.used {
    background: var(--color-red);
    color: var(--color-light-text);
}

/* Sale badge */
.product-label.sale,
.product-badge-sale {
    background: var(--color-red);
    color: var(--white);
}

.product-info {
    padding: var(--space-16);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: var(--space-8);
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    transition: color var(--transition-fast);
}

.product-name:hover { color: var(--brand); }

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.original-price {
    font-size: 13px;
    color: var(--color-gray-500);
    text-decoration: line-through;
    font-weight: 400;
}

.sale-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--color-red);
}

.current-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
}

.from-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Add button */
.product-action {
    margin-top: var(--space-12);
}

.btn-add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    border: 1.5px solid var(--text);
    border-radius: var(--radius-full);
    padding: 11px 16px;
    cursor: pointer;
    transition: all var(--transition-normal);
    background: transparent;
}

.btn-add:hover {
    background-color: var(--color-black);
    color: var(--white);
    border-color: var(--color-black);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Hover reveal */
.product-card .btn-add {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.product-card:hover .btn-add {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .product-card .btn-add { opacity: 1; transform: none; }
}

/* ============================================================
   Carousel
   ============================================================ */

.carousel { position: relative; overflow: hidden; }

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: var(--space-24);
}

.carousel-slide {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}

.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--color-black);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    color: var(--white);
}

.carousel-btn:hover {
    background: var(--color-red);
    border-color: #095ECB;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-btn svg { width: 20px; height: 20px; }

.carousel-btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ============================================================
   Trustpilot Style Badge
   ============================================================ */

.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-12);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-16) var(--space-24);
}

.trustpilot-stars {
    display: inline-flex;
    gap: 2px;
    color: #00B67A;
}

.trustpilot-stars svg { width: 20px; height: 20px; fill: currentColor; }

.trustpilot-text { font-size: 14px; color: var(--text); }

.trustpilot-text strong { display: block; font-size: 16px; }

/* ============================================================
   Player / Social Proof
   ============================================================ */

.players-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-24);
    padding: var(--space-32) 0;
}

.player-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    text-align: center;
}

.player-avatar {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--color-gray-200);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--color-gray-600);
}

.player-name { font-size: 14px; font-weight: 600; }

.player-role { font-size: 12px; color: var(--text-secondary); }

/* ============================================================
   Brand Logos Section
   ============================================================ */

.brand-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-16);
}

.brand-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-32);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 24px;
    font-weight: 900;
    color: var(--color-gray-700);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.brand-logo-card:hover {
    border-color: var(--color-black);
    color: var(--color-black);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================================
   Used Boots
   ============================================================ */

.used-boots-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    transition: all 0.3s ease;
}

.used-boots-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-gray-300);
}

.condition-rating {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.condition-score { color: var(--color-red); font-weight: 800; }

.condition-bar {
    height: 8px;
    background: var(--color-gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    flex: 1;
}

.condition-bar-fill {
    height: 100%;
    background: var(--color-red);
    border-radius: var(--radius-full);
}

/* ============================================================
   Newsletter
   ============================================================ */

.newsletter-section { background: var(--bg-muted); }

.newsletter-form {
    display: flex;
    gap: var(--space-12);
    max-width: 460px;
}

.newsletter-form .form-control {
    flex: 1;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    padding: 14px 20px;
    font-size: 14px;
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark-text);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-form .form-control::placeholder { color: var(--color-gray-500); }

.newsletter-form .form-control:focus {
    border-color: #095ECB;
    box-shadow: 0 0 0 3px rgba(214,0,0,0.15);
}

.newsletter-submit { white-space: nowrap; }

/* ============================================================
   Section Spacing Utility
   ============================================================ */

.section-pad { padding: var(--space-80) 0; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
    background: var(--color-black);
    padding: var(--space-64) 0 var(--space-32);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: var(--space-32);
    padding-bottom: var(--space-48);
}

.footer-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: var(--space-32);
    padding-bottom: var(--space-48);
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: var(--space-20);
    font-weight: 700;
}

.footer-column ul { list-style: none; padding: 0; margin: 0; }

.footer-column ul li { margin-bottom: var(--space-8); }

.footer-column ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition-fast);
    line-height: 1.5;
    display: inline-block;
}

.footer-column ul a:hover { color: var(--white); }

.footer-brand-col p,
.footer-brand p {
    font-size: 14px;
    color: var(--muted-on-dark);
    line-height: 1.7;
    margin-bottom: var(--space-16);
    max-width: 280px;
}

.footer-logo {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-bottom: var(--space-16);
    display: block;
    text-decoration: none;
    color: var(--white);
}

.footer-logo .red { color: #095ECB; }

/* Footer guarantee items */
.footer-guarantees {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-16);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-32) 0;
    margin-bottom: var(--space-32);
}

.footer-guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: 12px;
    color: var(--white);
    font-weight: 600;
    text-align: left;
}

.footer-guarantee .icon {
    color: var(--brand-on-dark);
    font-size: 18px;
    min-width: 22px;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-20);
    padding-top: var(--space-20);
    font-size: 13px;
    color: var(--muted-on-dark);
}

.footer-bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-16);
}

.footer-brand p { margin: 0; }

.payment-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-on-dark);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.footer-selectors-row {
    justify-content: center;
    gap: var(--space-32);
    border-top: 1px solid var(--border);
    padding-top: var(--space-20);
    margin-top: var(--space-8);
}

.footer-selector-group {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.footer-selector-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-on-dark);
    font-weight: 600;
    white-space: nowrap;
}

.footer-select {
    padding: 8px 12px;
    border: 1px solid var(--color-gray-600);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font-sans);
    background: var(--color-white);
    color: var(--color-dark-text);
    outline: none;
    cursor: pointer;
}

.footer-select:focus-visible {
    outline: 2px solid var(--brand-on-dark);
    outline-offset: 1px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.payment-icon {
    padding: 6px 12px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-600);
}

.footer-social { display: flex; gap: var(--space-12); }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    text-decoration: none;
    font-size: 15px;
}

/* Social links sit on the black footer - keep icons/borders light */
.footer .social-link {
    color: var(--color-gray);
    border-color: rgba(255,255,255,0.35);
}

.social-link:hover,
.footer .social-link:hover {
    color: var(--color-light-text);
    background: var(--color-red);
    border-color: #095ECB;
}

/* ============================================================
   Filters / Product Listing
   ============================================================ */

.filters-panel {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-24);
}

.filter-group { margin-bottom: var(--space-32); }
.filter-group:last-child { margin-bottom: 0; }

.filter-group h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-16);
    color: var(--text);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    margin-bottom: var(--space-8);
    font-size: 14px;
    color: var(--text);
    cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    accent-color: var(--brand);
    width: 16px;
    height: 16px;
}

.filter-options {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
}

.filter-option:hover { color: var(--brand); }

.filter-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Price filter inputs */
.price-filter { width: 100%; }

.price-inputs {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.price-inputs .sort-select { padding: 10px 12px; }

.price-sep {
    flex-shrink: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Sort toolbar */
.sort-wrapper form {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.sort-wrapper .sort-select {
    width: auto;
    min-width: 180px;
    padding: 9px 32px 9px 12px;
}

.sort-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 700;
}

/* Collection page header */
.collection-header {
    padding-bottom: var(--space-24);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-32);
}

.collection-header .section-title { margin-bottom: 4px; }

.sort-select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 10px 16px;
    font-size: 13px;
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark-text);
    outline: none;
    transition: border-color var(--transition-fast);
}

.sort-select:focus-visible {
    outline: 2px solid var(--focus-ring);
    outline-offset: 1px;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: var(--space-64) var(--space-24);
    background: var(--bg-muted);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--border);
}

.empty-state h4 {
    font-size: 22px;
    margin-bottom: var(--space-8);
    font-weight: 700;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: var(--space-24);
}

/* ============================================================
   Product Detail
   ============================================================ */

.product-gallery {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
}

.main-image img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

.product-thumbnails {
    display: flex;
    gap: var(--space-8);
    padding: var(--space-12);
    overflow-x: auto;
}

.thumbnail-item {
    width: 72px;
    height: 72px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition-fast);
}

.thumbnail-item.active { border-color: var(--brand); }
.thumbnail-item:hover { border-color: var(--gray-400); }

.thumbnail-item img { width: 100%; height: 100%; object-fit: cover; }

.product-info .product-label-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    margin-bottom: var(--space-12);
}

.product-name { font-size: 22px; font-weight: 700; margin-bottom: var(--space-8); }

.product-meta { display: flex; gap: var(--space-24); margin-bottom: var(--space-16); }

/* ============================================================
   Pre-order (PDP / cart / checkout)
   ============================================================ */

.product-label-badge-preorder {
    color: var(--color-light-text);
    background: var(--color-green);
    border-color: var(--color-green);
}

.preorder-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-green);
    margin-left: 4px;
    vertical-align: middle;
}

.size-button.is-preorder {
    border-style: dashed;
}

.preorder-panel {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-left: 3px solid var(--color-green);
    border-radius: var(--radius-md);
    padding: var(--space-16) var(--space-16) var(--space-12);
    margin-bottom: var(--space-16);
}

.preorder-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    margin-bottom: 6px;
}

.preorder-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.preorder-facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.preorder-facts i {
    color: var(--color-green);
    width: 18px;
    text-align: center;
}

.preorder-facts strong {
    color: var(--text);
}

#preorderCountdown {
    font-variant-numeric: tabular-nums;
}

.preorder-terms-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: 13px;
}

.preorder-terms-box summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

.preorder-terms-box p {
    color: var(--text-secondary);
    margin: 8px 0 0;
}

.product-meta .brand { font-size: 14px; color: var(--text-secondary); }

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-16);
    margin-bottom: var(--space-24);
}

.product-price .price-current { font-size: 30px; font-weight: 800; color: var(--text); }
.product-price .price-sale { font-size: 30px; font-weight: 800; color: var(--brand); }
.product-price .price-compare {
    font-size: 20px;
    color: var(--gray-500);
    text-decoration: line-through;
}

.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.size-button {
    padding: 12px 20px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.size-button:hover { border-color: var(--text); transform: translateY(-1px); }
.size-button.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.size-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.quantity-selector {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-btn {
    width: 44px;
    border: none;
    background: var(--bg-muted);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quantity-btn:hover { background: var(--gray-200); }

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark-text);
    outline: none;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ============================================================
   Toast
   ============================================================ */

.toast-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .model-collection-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: repeat(3, 1fr); }
    .footer-row { grid-template-columns: repeat(3, 1fr); }
    .footer-guarantees { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-title { font-size: clamp(28px, 4vw, 42px); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .header-selector { display: none; }
    .search-input { width: 160px; }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-12); }
    .model-collection-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-12); }
    .brand-logos { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: var(--space-24); }
    .footer-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-24); }
    .footer-guarantees { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: clamp(26px, 5vw, 34px); }
    .hero-bg { min-height: 440px; }
    .section-title { font-size: clamp(20px, 3vw, 24px); }
    .trust-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-8); }
    .trust-strip .title { font-size: 12px; }
    .logo-text { font-size: 22px; }
    .header-actions { gap: var(--space-8); }
    .search-input { width: 120px; padding-left: 34px; }
    .user-account { gap: var(--space-8); }
    .account-link { font-size: 13px; }
    .logout-link { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-16); }
    .footer-payments { flex-wrap: wrap; }
    .carousel-slide { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-12); }
    .hero-title { font-size: clamp(24px, 6vw, 30px); }
    .hero-bg { min-height: 400px; }
    .newsletter-form { flex-direction: column; }
    .btn-lg { padding: 16px 28px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-row { grid-template-columns: 1fr; }
    .footer-guarantees { grid-template-columns: 1fr; }
    .model-collection-grid { grid-template-columns: 1fr; }
    .brand-logos { grid-template-columns: 1fr; }
    .header-row { gap: var(--space-12); }
    .search-input { width: 88px; padding-left: 32px; padding-right: 8px; }
    .user-account .account-link + .account-link { display: none; }
}

/* ============================================================
   Mobile Menu + Drawers (hamburger, off-canvas, cart drawer)
   ============================================================ */

/* Hamburger toggle - visible on all viewports, part of flex layout */
.menu-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 0;
    transition: all var(--transition-normal);
    z-index: 5;
}

.menu-toggle:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }

.menu-toggle svg { width: 20px; height: 20px; }

/* Mobile menu drawer (off-canvas left) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(420px, 92vw);
    background: var(--white);
    z-index: 1100;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: var(--space-28) var(--space-24);
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.45s var(--ease-smooth), visibility 0.45s ease;
    box-shadow: 0 0 60px rgba(0,0,0,0.18);
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover { border-color: var(--brand); color: var(--brand); }

.mobile-header {
    display: flex;
    align-items: center;
    padding: 4px 0 var(--space-24);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-16);
}

.mobile-logo { text-decoration: none; }

.mobile-menu nav { flex: 1; }

/* Accordion sections */
.accordion-section { border-bottom: 1px solid var(--border); }

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-16) 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
    cursor: pointer;
    user-select: none;
}

.accordion-header::after {
    content: '+';
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.accordion-header.active::after {
    transform: rotate(45deg);
    color: var(--brand);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.open {
    max-height: none;
    padding-bottom: var(--space-16);
}

.accordion-content a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.accordion-content a:hover { color: var(--brand); }

.mobile-brand-group {
    padding: var(--space-8) 0;
}

.mobile-brand-group strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: var(--space-8);
}

.mobile-brand-group a { padding: 6px 0 6px 8px; }

.mobile-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    border-top: 1px solid var(--border);
    padding-top: var(--space-16);
    margin-top: var(--space-16);
}

.mobile-footer a {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    text-decoration: none;
}

.mobile-footer a:hover { color: var(--brand); }

/* Overlays */
.mobile-menu-overlay,
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active,
.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart drawer (off-canvas right) */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: var(--white);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease-smooth), visibility 0.35s ease;
    box-shadow: 0 0 40px rgba(0,0,0,0.15);
}

.cart-drawer.open {
    transform: translateX(0);
    visibility: visible;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-24);
    border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 18px;
}

.cart-drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-drawer-close:hover { border-color: var(--brand); color: var(--brand); }

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-24);
    -webkit-overflow-scrolling: touch;
}

.cart-drawer-empty {
    text-align: center;
    color: var(--text-secondary);
    padding: var(--space-32) 0;
}

.cart-drawer-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-16);
    padding: var(--space-16) 0;
    border-bottom: 1px solid var(--border);
}

.cart-drawer-item-info { flex: 1; min-width: 0; }

.cart-drawer-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.cart-drawer-item-name:hover { color: var(--brand); }

.cart-drawer-item-meta { font-size: 13px; color: var(--text-secondary); }

.cart-drawer-item-total {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.cart-drawer-footer {
    padding: var(--space-24);
    border-top: 1px solid var(--border);
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-16);
}

.cart-drawer-footer .btn { margin-bottom: var(--space-8); width: 100%; }
.cart-drawer-footer .btn:last-child { margin-bottom: 0; }

/* Show hamburger when primary nav collapses */
@media (max-width: 992px) {
    .menu-toggle { display: inline-flex; }
}

/* Mobile: hide header logo, show hero-top logo */
@media (max-width: 768px) {
    .main-header .logo { display: none; }
    .hero-mobile-logo { display: block !important; }
    .header-row { justify-content: space-between; padding: 10px 16px; }
}

/* ============================================================
   Homepage - Shop by Brand / Model / Size pills
   ============================================================ */

.shop-by-section { padding: var(--space-64) 0; }

.shop-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    justify-content: center;
}

.shop-pill {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    background: var(--white);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.shop-pill:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shop-pill .shop-pill-small { font-weight: 500; opacity: 0.7; }

/* ============================================================
   Homepage - Editorial (Rare / Limited) section
   ============================================================ */

.editorial-section {
    position: relative;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: var(--space-80) 0;
}

.editorial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(214, 0, 0, 0.25), transparent 45%),
        linear-gradient(120deg, rgba(22, 22, 22, 0.9), rgba(22, 22, 22, 0.55));
    pointer-events: none;
}

.editorial-inner { position: relative; z-index: 2; }
.editorial-section .section-title { color: var(--white); }
.editorial-section .small-label { color: rgba(255, 255, 255, 0.7); }
.editorial-section .lead { color: rgba(255, 255, 255, 0.85); }
.editorial-section .btn-outline-light { border-color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   Homepage - Authenticity section
   ============================================================ */

.authenticity-section { background: var(--bg-muted); }

.auth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
}

.auth-item {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-24);
}

.auth-item .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    background: var(--brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.auth-item h4 { margin: 0 0 4px; font-size: 16px; }
.auth-item p { margin: 0; font-size: 14px; color: var(--text-secondary); }

/* ============================================================
   Homepage - Customer reviews
   ============================================================ */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-24);
}

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.review-stars { color: var(--brand); font-size: 14px; letter-spacing: 2px; }

.review-text { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0; flex: 1; }

.review-author { font-size: 13px; font-weight: 700; color: var(--text); }
.review-meta { font-size: 12px; color: var(--text-secondary); }

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-green);
}

/* ============================================================
   Homepage - Instagram / social gallery
   ============================================================ */

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-12);
}

.instagram-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-muted);
    display: block;
    text-decoration: none;
}

.instagram-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-tile:hover img { transform: scale(1.06); }

.instagram-tile .ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.instagram-tile:hover .ig-overlay { opacity: 1; }

/* ============================================================
   Homepage - Brand story
   ============================================================ */

.brand-story-section { padding: var(--space-80) 0; }

.brand-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.brand-story-image img { width: 100%; height: 100%; object-fit: cover; }

.brand-story-content .small-label { margin-bottom: var(--space-8); }
.brand-story-content .body-text { color: var(--text-secondary); }

.brand-story-stats {
    display: flex;
    gap: var(--space-32);
    margin-top: var(--space-24);
}

.brand-story-stat .stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.brand-story-stat .stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* ============================================================
   Homepage - New arrivals carousel header
   ============================================================ */

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
    margin-bottom: var(--space-24);
    flex-wrap: wrap;
}

/* Responsive for homepage sections */
@media (max-width: 992px) {
    .auth-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .brand-story-image { margin-bottom: var(--space-24); }
}

@media (max-width: 576px) {
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-story-stats { gap: var(--space-16); }
    .brand-story-stat .stat-value { font-size: 22px; }
}

/* Social links bar */
.social-links-bar { display: flex; justify-content: center; gap: var(--space-16); flex-wrap: wrap; }
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.social-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--bg-muted);
    transform: translateY(-2px);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
    margin-left: 8px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-gray-300);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--brand);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.toggle-switch input:focus-visible + .toggle-slider {
    outline: 2px solid var(--focus-ring);
    outline-offset: 2px;
}

/* Admin input with toggle */
.admin-input-with-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-input-with-toggle .admin-input {
    flex: 1;
}

/* Cart redesign */
.cart-page{background:#f6f6f4;padding:54px 0 72px}.cart-page-header{display:flex;justify-content:space-between;align-items:end;margin-bottom:28px}.cart-eyebrow{color:var(--brand,#e30613);font-size:11px;font-weight:800;letter-spacing:1.5px;margin:0 0 8px}.cart-page h1{font-size:42px;margin:0 0 6px;font-weight:800;letter-spacing:-1.3px}.cart-page-header>div>p:last-child{color:#6b6b6b;margin:0}.cart-continue-link{color:#111;font-size:13px;font-weight:700;text-decoration:none}.cart-continue-link i{margin-right:7px}.cart-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:24px;align-items:start}.cart-lines-card,.cart-summary,.cart-empty-card{background:#fff;border:1px solid #e8e8e5;border-radius:3px}.cart-card-heading{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #e9e9e7;padding:22px 25px}.cart-card-heading h2,.cart-summary h2{font-size:18px;margin:0;font-weight:800}.cart-card-heading h2 span{display:inline-grid;place-items:center;background:#efefed;border-radius:20px;font-size:11px;min-width:22px;height:22px;vertical-align:middle}.cart-card-heading>span{font-size:12px;color:#888}.cart-item{display:flex;gap:20px;padding:23px 25px;border-bottom:1px solid #eeeeec}.cart-item:last-child{border-bottom:0}.cart-item-image{width:122px;height:105px;background:#f3f3f1;display:grid;place-items:center;flex:0 0 auto;overflow:hidden}.cart-item-image img{width:100%;height:100%;object-fit:cover}.cart-item-details{min-width:0;flex:1}.cart-item-title-row{display:flex;justify-content:space-between;gap:16px}.cart-item h3{font-size:16px;line-height:1.3;margin:3px 0 7px;font-weight:800}.cart-item-variant{font-size:13px;color:#666;margin:0}.cart-item-remove{border:0;background:transparent;color:#777;padding:0 2px;font-size:18px;height:24px}.cart-item-remove:hover{color:var(--brand,#e30613)}.cart-preorder-pill{display:inline-block;background:#fff0ef;color:#c7000b;border-radius:2px;padding:3px 6px;font-size:10px;font-weight:800;letter-spacing:.5px;text-transform:uppercase}.cart-preorder-note{font-size:11px;color:#7a5353;margin:10px 0 0}.cart-item-footer{display:flex;justify-content:space-between;align-items:end;margin-top:17px}.cart-item .quantity-selector{border:1px solid #d9d9d6;border-radius:2px;display:flex;align-items:center;height:35px}.cart-item .quantity-btn{width:33px;border:0;background:#fff;font-size:18px}.cart-item .quantity-input{border:0!important;width:31px!important;text-align:center;font-size:13px;padding:0!important}.cart-item-price{text-align:right}.cart-item-price span{display:block;color:#888;font-size:10px;text-transform:uppercase;letter-spacing:.7px}.cart-item-price strong{font-size:15px}.cart-summary{padding:25px;position:sticky;top:18px}.cart-summary-head{display:flex;align-items:center;justify-content:space-between;padding-bottom:20px;border-bottom:1px solid #e9e9e7}.cart-summary-head i{color:var(--brand,#e30613);font-size:20px}.cart-summary .summary-row{display:flex;justify-content:space-between;padding:17px 0 0;font-size:14px}.cart-summary .summary-row small{background:#eee;padding:1px 5px;border-radius:10px}.summary-discount{color:#178044}.summary-divider{height:1px;background:#e8e8e6;margin:19px 0}.summary-total{display:flex;justify-content:space-between;align-items:baseline}.summary-total>span{font-weight:800;font-size:16px}.summary-total strong{font-size:23px;letter-spacing:-.8px}.summary-total small{font-size:12px;letter-spacing:0}.cart-tax-note{color:#777;font-size:11px;margin:11px 0 20px}.cart-checkout-btn{display:flex;justify-content:center;align-items:center;gap:12px;background:var(--brand,#e30613);color:#fff;text-decoration:none;padding:15px 18px;font-size:13px;font-weight:800;letter-spacing:.8px;text-transform:uppercase}.cart-checkout-btn:hover{color:#fff;background:#bd000a}.cart-mobile-continue{display:block;text-align:center;color:#222;font-size:12px;font-weight:700;margin:16px 0;text-decoration:underline}.cart-secure-note{display:flex;gap:9px;align-items:center;background:#f5f5f3;padding:12px;font-size:11px;color:#666}.cart-secure-note i{color:#1d7b45}.cart-secure-note strong{display:block;color:#222;font-size:11px}.cart-empty-card{text-align:center;padding:64px 25px}.cart-empty-visual{width:76px;height:76px;border-radius:50%;background:#f4f4f1;display:grid;place-items:center;margin:0 auto 23px;position:relative;font-size:29px}.cart-empty-visual span{position:absolute;right:-3px;top:-4px;background:var(--brand,#e30613);color:#fff;border-radius:50%;font-size:11px;width:23px;height:23px;display:grid;place-items:center;font-weight:800}.cart-empty-card h2{font-size:26px;font-weight:800;margin:0 0 9px}.cart-empty-card>p:not(.cart-eyebrow){color:#777;margin:0 auto 25px;max-width:390px}.cart-empty-card .cart-checkout-btn{max-width:265px;margin:auto}.cart-empty-links{display:flex;justify-content:center;gap:23px;margin-top:27px}.cart-empty-links a{font-size:12px;font-weight:700;color:#222;text-decoration:underline}.cart-assurance{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;background:#111;color:#fff;margin-top:25px;padding:20px 25px}.cart-assurance>div{display:flex;gap:12px;align-items:center;font-size:11px;color:#bfbfbf}.cart-assurance i{font-size:19px;color:#fff}.cart-assurance strong{display:block;color:#fff;font-size:12px;margin-bottom:2px}
@media(max-width:991px){.cart-layout{grid-template-columns:1fr}.cart-summary{position:static}.cart-page{padding-top:34px}.cart-page h1{font-size:34px}}@media(max-width:575px){.cart-page{padding:28px 0 45px}.cart-page-header{align-items:start;margin-bottom:20px}.cart-page h1{font-size:30px}.cart-continue-link{display:none}.cart-card-heading{padding:18px}.cart-card-heading>span{display:none}.cart-item{padding:18px;gap:13px}.cart-item-image{width:88px;height:91px}.cart-item h3{font-size:14px}.cart-item-footer{margin-top:14px}.cart-summary{padding:20px}.cart-assurance{grid-template-columns:1fr;padding:20px;gap:16px}.cart-empty-card{padding:45px 20px}.cart-empty-links{gap:12px;flex-wrap:wrap}}

/* WhatsApp chat widget */
.whatsapp-widget{position:fixed;right:22px;bottom:22px;z-index:1050;display:flex;flex-direction:column;align-items:flex-end;gap:14px}
.whatsapp-float{position:relative;width:56px;height:56px;border-radius:50%;background:#25D366;color:#fff;border:0;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 14px rgba(0,0,0,.28);transition:transform .18s ease,box-shadow .18s ease;padding:0}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.05);color:#fff;box-shadow:0 8px 20px rgba(0,0,0,.32)}
.whatsapp-float:focus-visible{outline:2px solid var(--focus-ring,#D60000);outline-offset:3px}
.whatsapp-float svg{display:block}
.whatsapp-float .whatsapp-icon-close{display:none}
.whatsapp-widget.open .whatsapp-float .whatsapp-icon-chat{display:none}
.whatsapp-widget.open .whatsapp-float .whatsapp-icon-close{display:block}

.whatsapp-popup{width:340px;max-width:calc(100vw - 44px);background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,.22);opacity:0;visibility:hidden;transform:translateY(14px) scale(.96);transform-origin:bottom right;transition:opacity .2s ease,transform .2s ease,visibility .2s;margin-bottom:2px}
.whatsapp-popup.open{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.whatsapp-popup-header{display:flex;align-items:center;gap:11px;background:#25D366;color:#fff;padding:14px 14px}
.whatsapp-popup-avatar{width:38px;height:38px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.whatsapp-popup-meta{flex:1;min-width:0;line-height:1.25}
.whatsapp-popup-meta strong{display:block;font-size:14px;font-weight:700;color:#fff}
.whatsapp-popup-meta span{display:inline-flex;align-items:center;gap:5px;font-size:11.5px;color:rgba(255,255,255,.92)}
.whatsapp-online-dot{width:7px;height:7px;border-radius:50%;background:#b9f6ca;display:inline-block}
.whatsapp-popup-close{background:transparent;border:0;color:rgba(255,255,255,.85);cursor:pointer;padding:4px;display:flex;align-items:center;justify-content:center;border-radius:6px}
.whatsapp-popup-close:hover{color:#fff;background:rgba(255,255,255,.15)}
.whatsapp-popup-body{background:#ECE5DD;padding:18px 14px}
.whatsapp-bubble{position:relative;background:#fff;border-radius:10px;border-top-left-radius:2px;padding:10px 12px;font-size:13.5px;line-height:1.45;color:#333;max-width:88%;box-shadow:0 1px 1px rgba(0,0,0,.08)}
.whatsapp-bubble-time{display:block;font-size:10.5px;color:#8a8378;margin-top:9px}
.whatsapp-popup-footer{background:#fff;padding:12px 14px 14px}
.whatsapp-popup-cta{display:flex;align-items:center;justify-content:center;gap:9px;background:#25D366;color:#fff;text-decoration:none;font-weight:700;font-size:13.5px;padding:12px 16px;border-radius:10px;transition:background .15s ease,transform .15s ease}
.whatsapp-popup-cta:hover{background:#1fb959;color:#fff;transform:translateY(-1px)}
.whatsapp-popup-cta:focus-visible{outline:2px solid var(--focus-ring,#D60000);outline-offset:2px}
@media(max-width:575px){.whatsapp-widget{right:16px;bottom:16px}.whatsapp-float{width:50px;height:50px}.whatsapp-float svg{width:26px;height:26px}.whatsapp-popup{max-width:calc(100vw - 32px)}}

/* Admin setting hint */
.admin-setting-hint{display:block;font-size:11px;color:#888;margin-top:5px}
/* ================= Checkout redesign ================= */
.checkout-page{background:#f6f6f4;padding:54px 0 84px}
.checkout-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:28px}
.checkout-eyebrow{color:var(--brand,#e30613);font-size:11px;font-weight:800;letter-spacing:1.5px;margin:0 0 8px}
.checkout-section h1,.checkout-page h1{font-size:42px;font-weight:800;letter-spacing:-1.3px;margin:0 0 6px}
.checkout-head-sub{color:#6b6b6b;margin:0;font-size:14.5px}
.checkout-back-link{color:#111;font-size:13px;font-weight:700;text-decoration:none;white-space:nowrap}
.checkout-back-link i{margin-right:7px}
.checkout-back-link:hover{color:var(--brand,#e30613)}
.checkout-section .checkout-layout,
.checkout-layout{display:grid;grid-template-columns:minmax(0,1fr) 400px;gap:24px;align-items:start}

/* Cards */
.co-card{background:#fff;border:1px solid #e8e8e5;border-radius:3px}
.co-card+.co-card{margin-top:20px}
.co-card-head{display:flex;align-items:center;gap:12px;border-bottom:1px solid #e9e9e7;padding:19px 25px}
.co-card-head h2{font-size:17px;margin:0;font-weight:800}
.co-step{display:inline-grid;place-items:center;width:26px;height:26px;border-radius:50%;background:#111;color:#fff;font-size:12px;font-weight:800;flex:0 0 auto}
.co-card-body{padding:25px}
.co-count{margin-left:auto;font-size:12px;color:#888;background:#efefed;border-radius:20px;padding:3px 10px;font-weight:700}

/* Form fields */
.co-field label{font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#555;display:block;margin-bottom:7px}
.co-control{display:block;width:100%;border:1px solid #ddd;background:#fff;padding:12px 14px;font-size:14.5px;border-radius:2px;color:#111;transition:border-color .15s ease,box-shadow .15s ease;font-family:inherit}
.co-control::placeholder{color:#b3b3b0}
.co-control:focus{outline:none;border-color:#111;box-shadow:0 0 0 3px rgba(17,17,17,.08)}
textarea.co-control{resize:vertical;min-height:92px;line-height:1.55}
.co-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.co-field.invalid .co-control{border-color:var(--brand,#e30613)}

/* Payment option */
.co-payment{position:relative;display:flex;align-items:center;gap:14px;border:1px solid #e2e2df;border-radius:3px;padding:17px 18px;cursor:pointer;margin:0;transition:border-color .15s ease,box-shadow .15s ease}
.co-payment input{position:absolute;opacity:0;pointer-events:none}
.co-radio-dot{width:18px;height:18px;border-radius:50%;border:2px solid #cfcfcb;flex:0 0 auto;display:inline-block;position:relative;transition:border-color .15s ease}
.co-payment.selected{border-color:#111;box-shadow:inset 0 0 0 1px #111}
.co-payment.selected .co-radio-dot{border-color:#111}
.co-payment.selected .co-radio-dot::after{content:"";position:absolute;inset:3px;border-radius:50%;background:#111}
.co-pay-icon{width:44px;height:44px;background:#f6f6f4;border-radius:50%;display:grid;place-items:center;font-size:17px;color:#111;flex:0 0 auto}
.co-pay-text{display:flex;flex-direction:column;gap:2px;min-width:0}
.co-pay-text strong{font-size:14.5px;font-weight:800}
.co-pay-text small{color:#777;font-size:12.5px}
.co-pay-check{margin-left:auto;color:var(--brand,#e30613);font-size:16px;opacity:0;transform:scale(.7);transition:all .15s ease}
.co-payment.selected .co-pay-check{opacity:1;transform:scale(1)}
.co-secure-note{display:flex;align-items:center;gap:8px;color:#888;font-size:12.5px;margin:16px 0 0}
.co-secure-note i{color:#1d9d52}

/* Place order button */
.co-place-order{display:flex;align-items:center;justify-content:center;gap:12px;width:100%;margin-top:24px;background:#111;color:#fff;border:0;border-radius:3px;padding:17px 20px;font-size:14px;font-weight:800;letter-spacing:.08em;font-family:inherit;cursor:pointer;transition:background .15s ease,transform .1s ease}
.co-place-order:hover{background:var(--brand,#e30613)}
.co-place-order:active{transform:translateY(1px)}
.co-place-order:disabled{opacity:.65;cursor:wait}

/* Order summary */
.co-summary{position:sticky;top:90px}
.co-summary-body{padding-top:8px}
.co-summary-item{display:flex;align-items:center;gap:14px;padding:15px 0;border-bottom:1px solid #f0f0ee}
.co-summary-thumb{width:64px;height:64px;object-fit:cover;background:#f3f3f1;border-radius:2px;flex:0 0 auto}
.co-summary-info{min-width:0;flex:1;display:flex;flex-direction:column;gap:3px}
.co-summary-info strong{font-size:14px;font-weight:800;line-height:1.3}
.co-summary-info small{color:#666;font-size:12.5px}
.co-summary-price{font-size:14px;font-weight:700;white-space:nowrap}
.co-totals{padding:16px 0 4px}
.co-total-line{display:flex;justify-content:space-between;font-size:13.5px;color:#555;padding:5px 0}
.co-total-line span:last-child{color:#111;font-weight:600}
.co-total-line.co-discount span{color:#1d9d52!important;font-weight:700}
.co-total-divider{border-top:1px solid #e9e9e7;margin:10px 0}
.co-total-final{display:flex;justify-content:space-between;font-size:21px;font-weight:800;padding-top:2px}
.co-total-final span:last-child{color:var(--brand,#e30613)}
.co-perks{list-style:none;margin:16px 0 0;padding:14px 0 0;border-top:1px solid #f0f0ee;display:flex;flex-direction:column;gap:9px}
.co-perks li{display:flex;align-items:center;gap:10px;font-size:12.5px;color:#666}
.co-perks li i{color:#111;width:16px;text-align:center}

@media (max-width:991.98px){
  .checkout-layout{grid-template-columns:1fr}
  .co-summary{position:static;order:-1;margin-bottom:20px}
  .checkout-section h1,.checkout-page h1{font-size:32px}
}
@media (max-width:575.98px){
  .checkout-head{flex-direction:column;align-items:flex-start;gap:10px}
  .co-grid{grid-template-columns:1fr}
  .co-card-body{padding:20px}
}

/* ================= Search overlay ================= */
.search-overlay{position:fixed;inset:0;z-index:2000;background:rgba(17,17,17,.35);opacity:0;transition:opacity .18s ease}
.search-overlay.open{opacity:1}
.search-overlay-panel{background:#fafaf8;max-height:calc(100vh - 40px);overflow-y:auto;padding:34px clamp(20px,5vw,64px) 44px;transform:translateY(-12px);transition:transform .18s ease}
.search-overlay.open .search-overlay-panel{transform:translateY(0)}

/* Head */
.search-head{display:flex;align-items:center;gap:26px;max-width:1280px;margin:0 auto}
.search-overlay-input{flex:1;border:0;background:transparent;font-size:clamp(26px,3.4vw,40px);font-weight:800;color:#111;letter-spacing:-.02em;padding:6px 2px;min-width:0}
.search-overlay-input::placeholder{color:#c4c4c1;font-weight:700}
.search-overlay-input:focus{outline:none}
.search-erase{border:0;background:transparent;font-size:13px;font-weight:700;color:#111;cursor:pointer;padding:10px 6px;white-space:nowrap;font-family:inherit}
.search-erase:hover{color:var(--brand,#e30613)}
.search-close{border:0;background:transparent;color:#111;cursor:pointer;width:52px;height:52px;display:grid;place-items:center;border-radius:50%;transition:background .15s ease}
.search-close:hover{background:#ececea}
.search-divider{max-width:1280px;margin:14px auto 0;border-bottom:1.5px solid #111}

/* Results grid */
.search-results{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(0,1fr) minmax(0,1fr);transition:opacity .15s ease}
.search-results.is-loading{opacity:.45;pointer-events:none}
.search-results.empty{display:block}
.search-hint{padding:38px 4px;color:#777;font-size:14px;margin:0}
.search-col{padding:28px 30px 10px;min-width:0}
.search-col:first-child{padding-left:4px}
.search-col:last-child{padding-right:4px}
.search-col + .search-col{border-left:1px solid #d9d9d6}
.search-results.empty + * .search-col{border:0}
.search-results.empty .search-col{display:none}

/* Column head */
.search-col-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.search-col-head h3{font-size:12.5px;font-weight:800;letter-spacing:.14em;margin:0;color:#111}
.search-see-all{display:inline-flex;align-items:center;gap:9px;color:#111;font-size:12.5px;font-weight:600;text-decoration:none}
.search-see-all:hover{color:var(--brand,#e30613)}
.search-circle-arrow{width:30px;height:30px;border-radius:50%;background:#111;color:#fff;display:inline-grid;place-items:center;font-size:11px;transition:background .15s ease,transform .15s ease}
.search-see-all:hover .search-circle-arrow{background:var(--brand,#e30613);transform:translateX(2px)}

/* Products column */
.sp-item{display:flex;gap:16px;align-items:center;padding:11px 0;text-decoration:none;border-bottom:1px solid #f0f0ee}
.sp-item:last-child{border-bottom:0}
.sp-thumb{width:58px;height:66px;object-fit:cover;background:#f3f3f1;flex:0 0 auto}
.sp-info{min-width:0;display:flex;flex-direction:column;gap:3px}
.sp-brand{font-size:11px;color:#999;text-transform:uppercase;letter-spacing:.08em}
.sp-name{font-size:14px;font-weight:800;color:#111;line-height:1.3}
.sp-item:hover .sp-name{color:var(--brand,#e30613)}
.sp-price{font-size:12.5px;color:#666}

/* Suggestions column */
.search-suggestion-list{list-style:none;margin:0;padding:0}
.search-suggestion-list li{border-bottom:1px solid #f4f4f2}
.search-suggestion-list li:last-child{border-bottom:0}
.ss-item{display:block;width:100%;text-align:left;background:transparent;border:0;padding:10px 2px;font-size:14px;color:#333;font-family:inherit;cursor:pointer}
.ss-item:hover{color:#000}
.ss-item:hover mark.search-hl{background:#ffe95e}
mark.search-hl{background:#ffef60;color:inherit;padding:0 1px;border-radius:1px}

/* Collections column */
.sc-item{display:flex;gap:14px;align-items:center;padding:10px 0;text-decoration:none;border-bottom:1px solid #f0f0ee}
.sc-item:last-child{border-bottom:0}
.sc-thumb{width:54px;height:54px;object-fit:cover;background:#f3f3f1;flex:0 0 auto;border-radius:50%}
.sc-info{min-width:0;display:flex;flex-direction:column;gap:3px}
.sc-name{font-size:13px;font-weight:800;color:#111;letter-spacing:.04em;line-height:1.3}
.sc-item:hover .sc-name{color:var(--brand,#e30613)}
.sc-count{font-size:12px;color:#888}
.search-empty{color:#999;font-size:13px;margin:6px 0;padding:0}

@media (max-width:991.98px){
  .search-results{grid-template-columns:1fr 1fr}
  .search-col:nth-child(3){border-left:0;border-top:1px solid #d9d9d6;grid-column:1/-1;padding-left:4px}
}
@media (max-width:767.98px){
  .search-overlay-panel{padding:22px 18px 32px}
  .search-head{gap:12px}
  .search-overlay-input{font-size:22px}
  .search-results{grid-template-columns:1fr}
  .search-col{padding:22px 4px 6px}
  .search-col + .search-col{border-left:0;border-top:1px solid #d9d9d6}
}

/* ================= Navigation drawer (left, all viewports) ================= */
.mobile-menu{width:min(400px,92vw);padding:28px 26px 22px}
.drawer-panels{position:relative;flex:1;min-height:0;overflow:hidden;margin-top:34px}
.drawer-panel{position:absolute;inset:0;overflow-y:auto;transform:translateX(100%);visibility:hidden;transition:transform .28s cubic-bezier(.25,.46,.45,.94),visibility .28s ease;padding:2px 4px 2px 2px;-webkit-overflow-scrolling:touch}
.drawer-panel.active{transform:translateX(0);visibility:visible}
.drawer-panel.exit-left{transform:translateX(-28%);visibility:hidden}

.drawer-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}
.drawer-link{display:flex;align-items:center;justify-content:space-between;width:100%;gap:14px;background:transparent;border:0;padding:15px 2px;font-size:21px;font-weight:800;letter-spacing:.02em;color:#111;text-decoration:none;font-family:inherit;cursor:pointer;text-transform:uppercase;line-height:1.2}
.drawer-link span{flex:1;text-align:left}
.drawer-link svg{flex:0 0 auto;color:#111;transition:transform .15s ease}
.drawer-sub-toggle:hover svg,.drawer-link:hover span{color:var(--brand,#e30613)}
.drawer-sub-toggle:hover svg{transform:translateX(3px)}
.drawer-divider{border-top:1px solid var(--border);margin:16px 0}
.drawer-list-small a{display:block;padding:9px 2px;font-size:14px;font-weight:600;color:#555;text-decoration:none}
.drawer-list-small a:hover{color:#111}

.drawer-back{display:inline-flex;align-items:center;gap:10px;border:0;background:transparent;padding:12px 2px 18px;font-size:13px;font-weight:800;letter-spacing:.14em;color:#777;cursor:pointer;font-family:inherit;text-transform:uppercase}
.drawer-back:hover{color:#111}
.drawer-list-sub .drawer-link{font-size:17px;padding:11px 2px}
.drawer-link-thumb img{width:46px;height:46px;object-fit:cover;background:#f3f3f1;flex:0 0 auto}
.drawer-link-thumb{justify-content:flex-start;gap:14px;text-transform:none}
.drawer-link-thumb span{text-align:left;font-weight:800}

.drawer-footer{margin-top:18px;padding-top:16px;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;gap:12px}
.drawer-account{font-size:14px;font-weight:700;color:#111;text-decoration:none}
.drawer-account:hover{color:var(--brand,#e30613)}
.drawer-social{display:flex;gap:14px}
.drawer-social a{color:#666;font-size:17px;text-decoration:none}
.drawer-social a:hover{color:#111}

/* ================= Header icon button + currency selector ================= */
.search-icon-btn{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;border:1px solid var(--color-gray-600);background:transparent;color:var(--color-light-text);font-size:16px;cursor:pointer;transition:border-color .2s ease,background .2s ease,color .2s ease}
.search-icon-btn:hover{border-color:var(--brand-on-dark);background:var(--color-dark);color:var(--brand-on-dark)}

.currency-selector{position:relative}
.currency-flag-btn{display:inline-flex;align-items:center;gap:7px;background:transparent;border:1px solid rgba(255,255,255,.35);border-radius:999px;padding:8px 12px;color:#fff;font-size:13px;font-weight:700;font-family:inherit;cursor:pointer;transition:border-color .15s ease,background .15s ease}
.currency-flag-btn:hover{border-color:#fff;background:rgba(255,255,255,.1)}
.currency-flag{font-size:16px;line-height:1}
.currency-code{letter-spacing:.04em}
.currency-menu{position:absolute;top:calc(100% + 10px);right:0;min-width:210px;background:#fff;border:1px solid #e5e5e2;border-radius:4px;box-shadow:0 14px 34px rgba(0,0,0,.14);padding:6px;z-index:1300;display:none}
.currency-menu.open{display:block}
.currency-option{display:flex;align-items:center;gap:11px;width:100%;text-align:left;background:transparent;border:0;padding:9px 10px;border-radius:3px;font-size:13.5px;color:#111;font-family:inherit;cursor:pointer}
.currency-option:hover{background:#f4f4f2}
.currency-option.selected{background:#efefed;font-weight:700}
.currency-option .currency-option-label small{color:#888;font-weight:500}

@media (max-width:575.98px){
  .currency-flag-btn{padding:7px 9px}
  .currency-code{display:none}
  .currency-menu{right:-46px}
}

/* Hero: center hero-inner horizontally */
.hero-slide { justify-content: center; }

/* Account dropdown */
.user-account{position:relative}
.account-icon-btn{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;border:1px solid var(--color-gray-600);background:transparent;color:var(--color-light-text);font-size:16px;cursor:pointer;transition:border-color .2s ease,background .2s ease,color .2s ease}
.account-icon-btn:hover{border-color:var(--brand-on-dark);background:var(--color-dark);color:var(--brand-on-dark)}
.account-menu{position:absolute;top:calc(100% + 10px);right:0;min-width:220px;background:#fff;border:1px solid #e5e5e2;border-radius:4px;box-shadow:0 14px 34px rgba(0,0,0,.14);padding:6px;z-index:1300;display:none}
.account-menu.open{display:block}
.account-menu-header{padding:10px 12px;border-bottom:1px solid #eee;margin-bottom:6px;display:flex;flex-direction:column;gap:2px}
.account-menu-header strong{font-size:13.5px;color:#111}
.account-menu-header small{color:#888;font-size:11.5px;word-break:break-all}
.account-option{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:3px;font-size:13.5px;color:#111;text-decoration:none;font-family:inherit;background:transparent;border:0;width:100%;cursor:pointer}
.account-option:hover{background:#f4f4f2}
.account-option i{width:16px;text-align:center;color:#666;font-size:13px}
.account-option:hover i{color:var(--brand,#e30613)}

@media (max-width:575.98px){
  .account-menu{right:-40px}
}

/* Hero: center hero-inner and its contents */
.hero-slide.active{justify-content:center}
.hero-inner{margin-left:auto;margin-right:auto;text-align:center}
.hero-inner .hero-subtitle{margin-left:auto;margin-right:auto}

/* ================= Listing pages mobile optimization ================= */
.btn-filters-toggle{display:none}
@media (max-width:991.98px){
  /* Filters hidden behind a toggle button instead of stacking above products */
  .filters-collapse{display:none;margin-bottom:18px}
  .filters-collapse.open{display:block;animation:filtersIn .25s var(--ease-smooth)}
  .btn-filters-toggle{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--border);background:#fff;border-radius:var(--radius-full);padding:10px 16px;font-size:11px;font-weight:800;letter-spacing:.1em;color:#111;cursor:pointer;font-family:inherit;transition:all var(--transition-fast)}
  .btn-filters-toggle:hover{border-color:#111;transform:translateY(-1px)}
  .btn-filters-toggle[aria-expanded="true"]{background:#111;color:#fff;border-color:#111}
  .listing-toolbar{row-gap:10px}
  .collection-header{margin-bottom:18px;padding-bottom:14px}
  .products-section.section-pad{padding-top:22px;padding-bottom:40px}
  /* Product cards breathe better on small screens */
  .product-card-images{aspect-ratio:3/4}
  .product-info{padding:10px 12px 14px}
  .btn-add{width:100%;text-align:center;margin-top:8px}
}
@keyframes filtersIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}

/* Size selector attention state */
.size-selector.size-error .size-buttons{outline:2px solid var(--brand,#e30613);outline-offset:4px;border-radius:6px;animation:sizeNudge .5s ease}
@keyframes sizeNudge{0%,100%{transform:translateX(0)}25%{transform:translateX(-5px)}75%{transform:translateX(5px)}}

/* Admin quick-edit link on storefront pages */
.fs-edit-link{position:fixed;left:16px;bottom:16px;z-index:1500;display:inline-flex;align-items:center;gap:8px;background:#111;color:#fff;text-decoration:none;font-size:12.5px;font-weight:700;padding:10px 16px;border-radius:999px;box-shadow:0 8px 22px rgba(0,0,0,.25);transition:background .15s ease,transform .15s ease}
.fs-edit-link:hover{background:var(--brand,#e30613);color:#fff;transform:translateY(-2px)}

/* ================= Colorful footer social icons ================= */
.footer-social{display:flex;align-items:center;gap:10px}
.social-link{width:36px;height:36px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:15px;transition:transform .18s ease,filter .18s ease,box-shadow .18s ease}
.social-link:hover{transform:translateY(-3px);filter:brightness(1.1);color:#fff;box-shadow:0 6px 14px rgba(0,0,0,.25)}
.social-ig{background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%)}
.social-tw{background:#1DA1F2}
.social-fb{background:#1877F2}
.social-yt{background:#FF0000}

/* Keep footer content clear of the floating WhatsApp button */
body.has-whatsapp .footer{padding-bottom:110px}

/* ================= Carousel eye-catch effects (carousel-fx) ================= */
.carousel.carousel-fx .carousel-track{transition:transform .7s cubic-bezier(.22,.61,.36,1)}
.carousel-fx{position:relative;padding-bottom:16px}
.carousel-autoplay-bar{position:absolute;left:0;bottom:0;height:3px;width:0;background:linear-gradient(90deg,var(--brand,#e30613),#ff8a00);border-radius:3px;z-index:6;box-shadow:0 0 10px rgba(230,6,19,.45)}

/* Card lift + glow + image zoom + shine sweep on hover */
.carousel-fx .product-card{transition:transform .35s cubic-bezier(.22,.61,.36,1),box-shadow .35s ease,border-color .25s ease}
.carousel-fx .product-card:hover{transform:translateY(-8px) scale(1.02);border-color:var(--brand,#e30613);box-shadow:0 18px 38px rgba(230,6,19,.18),0 8px 20px rgba(0,0,0,.12);z-index:3}
.carousel-fx .product-card-images img{transition:transform .6s cubic-bezier(.22,.61,.36,1)}
.carousel-fx .product-card:hover .product-card-images img.active{transform:scale(1.07)}
.carousel-fx .product-card::before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.55) 50%,transparent 70%);transform:translateX(-130%);z-index:2;pointer-events:none}
.carousel-fx .product-card:hover::before{animation:cardShine .9s ease}
@keyframes cardShine{to{transform:translateX(130%)}}

/* Entrance pop for slides as they enter the viewport row */
.carousel-fx .carousel-slide{animation:slideIn .5s ease both}
@keyframes slideIn{from{opacity:.4;transform:translateY(10px) scale(.97)}to{opacity:1;transform:none}}

@media (prefers-reduced-motion:reduce){
  .carousel-fx .carousel-track,.carousel-fx .product-card,.carousel-fx .product-card-images img,.carousel-fx .carousel-slide{animation:none!important;transition:none!important}
}

/* ============================================================
   Skeleton Loading States
   ============================================================ */

@keyframes skeleton-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.skeleton {
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-card {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.skeleton-card .skeleton-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--color-gray-100);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-card .skeleton-body {
    padding: var(--space-16);
}

.skeleton-card .skeleton-line {
    height: 14px;
    background: var(--color-gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-8);
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.skeleton-card .skeleton-line.w-75 { width: 75%; }
.skeleton-card .skeleton-line.w-50 { width: 50%; }
.skeleton-card .skeleton-line.w-40 { width: 40%; }
.skeleton-card .skeleton-line.h-20 { height: 20px; }

/* ============================================================
   Auth / Form Styles
   ============================================================ */

.auth-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: var(--space-64) 0;
    background: var(--bg-muted);
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.auth-card-header {
    padding: var(--space-32) var(--space-32) var(--space-16);
    text-align: center;
}

.auth-card-header h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.auth-card-body {
    padding: var(--space-16) var(--space-32) var(--space-32);
}

.auth-card-body .form-group {
    margin-bottom: var(--space-20);
}

.auth-card-body label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.auth-card-body .form-control {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 14px 20px;
    font-size: 14px;
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark-text);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.auth-card-body .form-control::placeholder {
    color: var(--color-gray-400);
}

.auth-card-body .form-control:focus {
    border-color: var(--color-black);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.auth-card-body .invalid-feedback,
.auth-card-body .valid-feedback {
    font-size: 12px;
    margin-top: 4px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    margin: var(--space-24) 0;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-link {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: var(--space-24);
}

.auth-link a {
    color: var(--text);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.auth-link a:hover {
    color: var(--brand);
}

.alert-danger {
    background: var(--error-bg);
    color: var(--color-red);
    border: 1px solid rgba(214, 0, 0, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-12) var(--space-16);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-20);
}

.alert-success {
    background: var(--success-bg);
    color: var(--color-green);
    border: 1px solid rgba(0, 107, 27, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-12) var(--space-16);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-20);
}

/* ============================================================
   Pagination - Modern
   ============================================================ */

.pagination {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: var(--space-32) 0 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    background: var(--white);
    transition: all var(--transition-fast);
}

.page-link:hover {
    border-color: var(--text);
    color: var(--text);
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--color-black);
    border-color: var(--color-black);
    color: var(--white);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================================
   Blog Cards
   ============================================================ */

.blog-card {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-title a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-title a:hover {
    color: var(--brand);
}

/* ============================================================
   Smooth scroll behavior for all anchors
   ============================================================ */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ============================================================
   Container system
   ============================================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-24);
    padding-right: var(--space-24);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ============================================================
   Section padding utility
   ============================================================ */

.section-pad {
    padding: var(--space-80) 0;
}

@media (max-width: 768px) {
    .section-pad {
        padding: var(--space-48) 0;
    }
}

/* ============================================================
   Toast notification improvements
   ============================================================ */

.toast-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-black);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s var(--ease-smooth);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   Product detail page price and description
   ============================================================ */

.product-detail-section .product-name {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    min-height: auto;
    margin-bottom: var(--space-12);
}

.product-description p,
.product-attributes p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================================
   Product label badge improvements
   ============================================================ */

.product-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 5px 12px;
    margin-bottom: var(--space-12);
}

.product-label-badge-preorder {
    color: var(--color-light-text);
    background: var(--color-green);
    border-color: var(--color-green);
}

/* ============================================================
   Quantity selector improvements
   ============================================================ */

.quantity-selector {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.quantity-btn {
    width: 44px;
    border: none;
    background: var(--bg-muted);
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition-fast);
    color: var(--text);
}

.quantity-btn:hover { background: var(--gray-200); }

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-dark-text);
    outline: none;
    -moz-appearance: textfield;
}

/* ============================================================
   Admin quick-edit link
   ============================================================ */

.fs-edit-link {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    transition: background 0.2s ease, transform 0.2s ease;
}

.fs-edit-link:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

/* ============================================================
   Hero CTA & Subtitle
   ============================================================ */
.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  margin-bottom: var(--space-24);
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

/* ============================================================
   Accordion overrides for FAQ
   ============================================================ */
.custom-accordion .accordion-button {
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-lg) !important;
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  padding: var(--space-16) var(--space-20);
  box-shadow: none !important;
  transition: all var(--transition-fast);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--brand);
}

.custom-accordion .accordion-button::after {
  filter: invert(0.4);
}

.custom-accordion .accordion-body {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   About page stat numbers
   ============================================================ */
.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-muted);
}

/* ============================================================
   Product grid spacing improvements
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-16);
}

.product-grid.row {
  display: flex;
  flex-wrap: wrap;
}

.product-grid.row > [class*="col-"] {
  flex: 0 0 auto;
  width: auto;
}

/* ============================================================
   Info section cards
   ============================================================ */
.info-section .auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ============================================================
   Narrow container for forms
   ============================================================ */
.narrow-container {
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   Admin Alerts
   ============================================================ */
.admin-alert {
  padding: var(--space-12) var(--space-16);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-20);
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.admin-alert-success {
  background: rgba(0, 107, 27, 0.08);
  color: var(--color-green);
  border: 1px solid rgba(0, 107, 27, 0.2);
}

.admin-alert-danger {
  background: rgba(214, 0, 0, 0.08);
  color: var(--color-red);
  border: 1px solid rgba(214, 0, 0, 0.2);
}

.admin-alert-warning {
  background: rgba(200, 150, 0, 0.08);
  color: #8a6d00;
  border: 1px solid rgba(200, 150, 0, 0.2);
}
