/* ═══════════════════════════════════════════════════════════════
   GLEEZI — style.css
   Design System · CSS Custom Properties · Base Styles
   Version: 1.0 · 2026
═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ════════════════════════════════════
   DESIGN TOKENS — CSS Custom Properties
════════════════════════════════════ */

:root {

  /* ═══════════════════════════════
     FARBEN — Fashion 2026 Standard
  ═══════════════════════════════ */

  /* Backgrounds */
  --color-bg:           #FAFAFA;
  --color-bg-alt:       #F5F0EB;
  --color-bg-dark:      #1A1A1A;

  /* Text */
  --color-text:         #1C1C1C;
  --color-text-muted:   #6B6B6B;
  --color-text-light:   #FFFFFF;

  /* Brand Akzent */
  --color-accent:       #1A1A1A;
  --color-accent-hover: #333333;
  --color-gold:         #C8A96E;
  --color-sale:         #E53E3E;

  /* Borders */
  --color-border:       #E8E4DC;
  --color-border-dark:  #2C2C2C;

  /* ═══════════════════════════════
     TYPOGRAPHY — Premium Fashion
  ═══════════════════════════════ */

  --font-display:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:          'JetBrains Mono', 'Fira Code', monospace;

  /* Type Scale — Fashion 2026 */
  --text-xs:    0.75rem;          /* 12px */
  --text-sm:    0.875rem;         /* 14px — Fließtext, Nav */
  --text-base:  clamp(0.875rem, 1.1vw, 1rem); /* 14–16px — Body */
  --text-lg:    clamp(1rem, 1.5vw, 1.125rem);
  --text-xl:    clamp(1.125rem, 1.8vw, 1.25rem);
  --text-2xl:   clamp(1.25rem,  2vw,   1.5rem);
  --text-3xl:   clamp(1.375rem, 2.2vw, 1.5rem); /* ~22–24px — Section Titles */
  --text-4xl:   clamp(1.75rem,  3vw,   2.5rem);
  --text-hero:  clamp(2.5rem,   6vw,   5rem);

  /* ═══════════════════════════════
     SPACING — 8px Grid System
  ═══════════════════════════════ */

  --space-1:    0.25rem;
  --space-2:    0.5rem;
  --space-3:    0.75rem;
  --space-4:    1rem;
  --space-6:    1.5rem;
  --space-8:    2rem;
  --space-10:   2.5rem;
  --space-12:   3rem;
  --space-16:   4rem;
  --space-20:   5rem;
  --space-24:   6rem;

  /* ═══════════════════════════════
     LAYOUT
  ═══════════════════════════════ */

  --container-max:      1280px;
  --container-padding:  clamp(1rem, 4vw, 2rem);

  /* ═══════════════════════════════
     COMPONENTS
  ═══════════════════════════════ */

  --btn-height:         44px;
  --btn-padding-x:      1.75rem;
  --btn-radius:         2px;
  --btn-font-size:      0.875rem;  /* 14px */
  --btn-font-weight:    500;
  --btn-letter-spacing: 0.06em;

  --card-radius:        0px;
  --card-shadow:        0 1px 3px rgba(0,0,0,0.3);

  --transition:         0.2s ease;
  --transition-slow:    0.4s ease;

  --z-nav:              100;
  --z-sticky:           200;
  --z-modal:            300;
  --z-toast:            400;
}

/* ════════════════════════════════════
   RESET & BASE
════════════════════════════════════ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden; /* prevent horizontal scroll from off-screen mobile nav drawer */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevent horizontal scroll from off-screen mobile nav drawer */
}

main {
  margin: 0;
  padding: 0;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* prevents iOS Safari from zooming on focus */
}

/* Prevent double-tap zoom on all devices */
* {
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

/* ════════════════════════════════════
   SKIP NAVIGATION (Accessibility)
════════════════════════════════════ */

.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--space-3) var(--space-6);
  background: var(--color-accent);
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 500;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-nav:focus {
  top: 0;
}

/* ════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════
   USP BAR
════════════════════════════════════ */

.usp-bar {
  background: #000 !important;
  color: #fff !important;
  height: 45px;
  overflow: hidden;
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.usp-bar::before,
.usp-bar::after {
  content: none;
}

.usp-bar-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: none !important;
  -webkit-animation: none !important;
}

.usp-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.2s;
  pointer-events: none;
}

.usp-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.usp-item.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.usp-item:hover {
  color: #C8A96E;
}

.usp-item svg {
  display: inline;
  flex-shrink: 0;
  color: #C8A96E;
  transition: transform 0.2s;
}

.usp-item:hover svg {
  transform: scale(1.15);
}

.usp-divider {
  display: none;
}

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */

.nav-sentinel {
  height: 1px;
  position: absolute;
  top: 0;
  width: 100%;
  pointer-events: none;
}

.site-nav {
  position: relative;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: var(--z-nav);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.site-nav.is-sticky .nav-inner {
  height: 80px;
}

.site-nav.is-sticky .nav-logo img {
  height: clamp(20px, 1.6vw, 28px);
}

/* White text over hero video */
.site-nav .nav-logo,
.site-nav .nav-link,
.site-nav .nav-icon-btn {
  color: #fff;
}

.site-nav .nav-hamburger span {
  background: #fff;
}

/* Black nav — for light-background pages (product, about, etc.) */
.site-nav.nav-light {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: var(--z-nav);
}

.site-nav.nav-light .nav-logo,
.site-nav.nav-light .nav-link,
.site-nav.nav-light .nav-icon-btn {
  color: var(--color-text);
}

.site-nav.nav-light .nav-hamburger span {
  background: var(--color-text);
}

.site-nav.nav-light .nav-logo img {
  filter: invert(1);
}

.site-nav.nav-light.is-sticky {
  background: #fff;
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.site-nav.nav-light.is-sticky .nav-logo,
.site-nav.nav-light.is-sticky .nav-link,
.site-nav.nav-light.is-sticky .nav-icon-btn {
  color: var(--color-text);
}

.site-nav.nav-light.is-sticky .nav-hamburger span {
  background: var(--color-text);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  max-width: none;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  padding-top: 0;
  padding-bottom: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.nav-logo img {
  display: block;
  width: auto;
  height: clamp(20px, 1.6vw, 28px);
  max-width: 220px;
  object-fit: contain;
  object-position: center;
  margin: 0;
  aspect-ratio: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.75rem; /* 12px */
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link.nav-link-sale {
  color: var(--color-sale);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
  flex: 1;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text);
  transition: background var(--transition);
  position: relative;
}

.nav-icon-btn:hover {
  background: var(--color-bg-alt);
}

.nav-icon-btn:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  color: var(--color-text-light);
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* Mobile search button — hidden on desktop, shown on mobile via responsive.css */
.nav-search-mobile {
  display: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile Menu — Modern Slide-In */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: calc(var(--z-nav) + 1);
  overflow-y: auto;
  padding: 0;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  background: #e0e0e0;
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile-close {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4) 0 0;
  height: 90px;
  background: var(--color-bg);
  border-bottom: 1px solid #c0c0c0;
  z-index: 1;
}

.nav-mobile-close button {
  color: #1a1a1a !important;
}

.nav-mobile-close svg {
  width: 20px;
  height: 20px;
  stroke: #1a1a1a !important;
  color: #1a1a1a !important;
}

.nav-mobile nav {
  padding: 0;
}

.nav-mobile-logo {
  display: none;
}

.nav-mobile-close-logo {
  display: flex;
  align-items: center;
}

.nav-mobile-close-logo img {
  display: block;
  height: 10px;
  width: auto;
}

.nav-mobile-logo img {
  display: block;
  margin: 0;
  padding: 0;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding: 0;
}

.nav-mobile-link {
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  border-bottom: 1px solid #c0c0c0;
  padding: 11px var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), color var(--transition);
}

.nav-mobile-link::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--color-text);
  border-top: 1.5px solid var(--color-text);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.nav-mobile-link:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

/* Line under last link (Contact) */
.nav-mobile-links li:last-child .nav-mobile-link {
  border-bottom: 1px solid #c0c0c0;
}

/* Grey background between Contact line and banner */
.nav-mobile nav {
  background: #e0e0e0;
}

.nav-mobile-links {
  background: var(--color-bg);
}

/* About link — no auto-margin, flows directly below language selector */
.nav-mobile > .nav-mobile-link {
  border-top: 1px solid #c0c0c0;
  border-bottom: 1px solid #c0c0c0;
  background: var(--color-bg);
  margin-top: 0;
  margin-bottom: 0;
}

.nav-mobile-link--highlight {
  color: var(--color-text);
}

.nav-mobile-banner {
  display: block;
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-mobile-banner img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 10%;
}

.nav-mobile-banner-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--space-6);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-bg);
  border-bottom: 1px solid #c0c0c0;
}

.nav-mobile-banner-text::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--color-text);
  border-top: 1.5px solid var(--color-text);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.nav-mobile-lang {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #c0c0c0;
  background: var(--color-bg);
}


.nav-mobile-lang .lang-btn {
  padding: 9px var(--space-6) 9px calc(var(--space-6) + 8px);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #e8e4dc;
  font-size: 0.8125rem; /* 13px */
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-bg);
}

.nav-mobile-lang .lang-btn--active {
  font-weight: 600;
  color: var(--color-text);
}

.nav-mobile-lang .lang-btn:last-child {
  border-bottom: 1px solid #c0c0c0;
}

/* Overlay behind mobile menu */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: var(--z-nav);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ════════════════════════════════════
   HERO SECTION
════════════════════════════════════ */

/* Hero-header: top of hero flex column */
.hero-header {
  position: relative;
  z-index: var(--z-nav);
  width: 100%;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 50%),
    linear-gradient(to right, rgba(26,26,26,0.5) 0%, transparent 60%);
}

.hero > .container {
  padding-inline-start: clamp(0.75rem, 2vw, 1.5rem);
  margin-inline-start: 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text-light);
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 420px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ════════════════════════════════════
   SECTION UTILITIES
════════════════════════════════════ */

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  gap: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.15;
}

.section-title-light {
  color: var(--color-text-light);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
  max-width: 480px;
}

/* ════════════════════════════════════
   EDITORIAL JACKET GRID (Section 2 — Bottega Veneta Style)
════════════════════════════════════ */

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.editorial-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
}

.editorial-card-media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: var(--space-4);
  min-height: 200px;
}

@supports (aspect-ratio: 3/4) {
  .editorial-card-media {
    min-height: unset;
  }
}

.editorial-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-card:hover .editorial-card-media img {
  transform: scale(1.03);
}

.editorial-card-media .img-placeholder {
  width: 100%;
  height: 100%;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.6s ease;
}

.editorial-card:hover .editorial-card-media .img-placeholder {
  transform: scale(1.03);
}

.editorial-card-info {
  text-align: center;
  padding: 0 var(--space-2);
}

.editorial-card-label {
  font-family: var(--font-body);
  font-size: 0.6875rem; /* 11px */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.editorial-card-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.editorial-card-price {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ── Editorial Skeleton ── */
@keyframes gleezi-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.editorial-skeleton-img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
}

.editorial-skeleton-img,
.editorial-skeleton-line {
  background: linear-gradient(90deg, #ebebeb 25%, #f5f5f5 50%, #ebebeb 75%);
  background-size: 1200px 100%;
  animation: gleezi-shimmer 1.4s infinite linear;
  border-radius: 2px;
}

.editorial-skeleton .editorial-card-info {
  padding: var(--space-3) 0;
}

/* ── Section Eyebrow ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem; /* 11px */
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: left;
  margin-bottom: var(--space-3);
}

/* ════════════════════════════════════
   CTA BANNER SECTION (Section 3)
════════════════════════════════════ */

.cta-banner-section {
  position: relative;
}

.cta-banner {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.6) 100%
  );
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-16) var(--space-6);
  max-width: 600px;
}

.cta-banner-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-4);
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--color-text-light);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.cta-banner-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

/* White button on dark bg */
.btn-on-dark {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.btn-on-dark:hover:not(:disabled) {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}

/* ════════════════════════════════════
   KATEGORIE GRID
════════════════════════════════════ */

.kategorie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.kategorie-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: pointer;
}

.kategorie-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kategorie-card:hover .kategorie-card-img {
  transform: scale(1.04);
}

.kategorie-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.kategorie-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
}

.kategorie-card-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-1);
}

.kategorie-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-light);
}

.kategorie-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

/* ════════════════════════════════════
   PRODUCT GRID
════════════════════════════════════ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

/* ════════════════════════════════════
   BRAND STORY
════════════════════════════════════ */

.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}

.brand-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-img-placeholder {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.brand-story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16) var(--space-12);
  background: var(--color-bg-dark);
}

.brand-story-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.brand-story-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.2;
  margin-bottom: var(--space-6);
}

.brand-story-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* ════════════════════════════════════
   SOCIAL PROOF / PRESS
════════════════════════════════════ */

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-12);
}

.press-logo-item {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  font-style: italic;
  color: var(--color-text-muted);
  opacity: 0.5;
  transition: opacity var(--transition);
  letter-spacing: -0.02em;
}

.press-logo-item:hover { opacity: 0.8; }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
}

.ugc-item {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  overflow: hidden;
  cursor: pointer;
}

.ugc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.ugc-item:hover img { transform: scale(1.05); }

/* ════════════════════════════════════
   PRE-FOOTER — Newsletter
════════════════════════════════════ */

.pre-footer {
  background: var(--color-bg-dark);
  padding: 2rem 0;
  text-align: left;
}

.pre-footer-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  font-style: normal;
  color: var(--color-text-light);
  margin-bottom: var(--space-3);
}

.pre-footer-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-8);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 0 var(--space-4);
}

.phone-input-group {
  display: flex;
  flex: 1;
}

.phone-dial-select {
  flex-shrink: 0;
  height: var(--btn-height);
  padding: 0 var(--space-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  width: 90px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}

.phone-dial-select:focus { border-color: var(--color-gold); }
.phone-dial-select option { background: #1a1a1a; color: #fff; }
.phone-dial-select optgroup { background: #1a1a1a; color: rgba(255,255,255,0.5); font-size: 0.7rem; }

.newsletter-input {
  flex: 1;
  height: var(--btn-height);
  padding: 0 var(--space-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--color-gold); }

.newsletter-submit {
  flex-shrink: 0;
}

.newsletter-submit .btn {
  border-radius: 0;
  height: var(--btn-height);
}

.gdpr-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  max-width: 400px;
  margin: 0 auto;
}

.gdpr-note a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */

.site-footer {
  border-top: none;
}

.footer-main {
  padding: 2rem 0;
  border-top: none;
}

.footer-main .container {
  max-width: none;
  padding-inline: clamp(1.5rem, 4vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
}

.footer-col {
  padding: 0;
  margin: 0;
}

.footer-brand {
  padding: 0;
  margin: 0;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-3);
}

.footer-logo img {
  filter: brightness(0);
  height: 10px;
  width: auto !important;
  display: block;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-text);
  color: var(--color-text-light);
  border-color: var(--color-text);
}

.social-link:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  margin-top: var(--space-4);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.lang-btn--active {
  border-color: var(--color-text);
  color: var(--color-text);
  font-weight: 600;
  background: rgba(255,255,255,0.06);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-links a:hover { color: var(--color-text); }

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.copyright a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.payment-icon {
  height: 24px;
  width: auto;
  opacity: 1;
  transition: opacity var(--transition);
}

.payment-icon:hover { opacity: 1; }

/* Payment Icon Pills (Fallback wenn keine SVGs) */
.payment-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  background: var(--color-bg);
  height: 24px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ════════════════════════════════════
   BREADCRUMB
════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--color-text); }

.breadcrumb-sep {
  color: var(--color-border);
}

/* ════════════════════════════════════
   PRODUCT PAGE LAYOUT
════════════════════════════════════ */

.product-page {
  padding: 160px 0 var(--space-20);
}

.product-breadcrumb {
  margin-bottom: var(--space-6);
}

.product-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.product-breadcrumb-link:hover {
  color: var(--color-text);
}

.product-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-12);
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 150px;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--color-bg-alt);
  overflow: hidden;
  margin-bottom: var(--space-3);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  will-change: transform;
}

.gallery-main:hover .gallery-main-img {
  transform: scale(1.06);
}


/* Disable hover scale on touch devices */
@media (hover: none) {
  .gallery-main:hover .gallery-main-img {
    transform: none;
  }
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
}

.gallery-thumb {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.gallery-thumb.is-active {
  border-color: var(--color-text);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.product-info {
  padding-top: var(--space-2);
}

.product-brand {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.product-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.stars {
  color: #1a1a1a;
  font-size: var(--text-sm);
  letter-spacing: 1px;
}

.rating-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.rating-count a {
  text-decoration: underline;
}

.product-price-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin: var(--space-4) 0;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.product-price {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
}

.product-price-original {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.product-price-badge {
  background: var(--color-sale);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
}

/* Color Swatches */
.product-option-label {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-3);
  display: flex;
  gap: var(--space-2);
}

.product-option-value {
  font-weight: 400;
  color: var(--color-text-muted);
}

.color-swatches {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.color-swatch:hover,
.color-swatch.is-active {
  outline-color: var(--color-text);
}

.color-swatch:focus-visible {
  outline-color: var(--color-text);
}

/* Size Selector */
.size-selector-wrap {
  margin-bottom: var(--space-6);
}

.size-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.size-guide-link {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.size-btn {
  min-width: 48px;
  height: 48px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
  color: var(--color-text);
}

.size-btn:hover {
  border-color: var(--color-text);
}

.size-btn:active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.size-btn.is-active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.size-btn.is-unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-btn:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

@keyframes size-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.size-grid.shake {
  animation: size-shake 0.4s ease;
}

/* Quantity */
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
  margin-bottom: var(--space-6);
  border-radius: var(--btn-radius);
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.qty-btn:hover { background: var(--color-bg-alt); }

.qty-input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  font-size: var(--text-base);
  font-weight: 500;
  background: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Add to Cart */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.btn-atc {
  min-height: 56px;
  font-size: var(--text-base);
}

/* Trust Row */
.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-5);
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.product-delivery {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

/* Product Tabs */
.product-tabs {
  margin-top: var(--space-16);
  border-top: 1px solid var(--color-border);
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}

.tab-btn:hover { color: var(--color-text); }

.tab-btn.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.tab-panel {
  padding: var(--space-8) 0;
  display: none;
}

.tab-panel.is-active { display: block; }

.tab-content {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 680px;
}

.tab-content p + p { margin-top: var(--space-4); }

.tab-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-top: var(--space-3);
}

.tab-content li { margin-bottom: var(--space-2); }

/* Reviews */
.reviews-section {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.reviews-summary {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

.reviews-avg {
  text-align: center;
  flex-shrink: 0;
}

.reviews-avg-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.reviews-avg-stars {
  color: var(--color-gold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}

.reviews-avg-count {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-card {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-border);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-3);
}

.reviewer-avatar {
  width: 40px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.reviewer-meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-3);
}

.review-verified {
  color: #22c55e;
  font-weight: 500;
}

.review-stars {
  color: var(--color-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.review-title {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

.review-body {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
  padding: var(--space-16) 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  cursor: pointer;
  font-weight: 500;
  font-size: var(--text-base);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  color: var(--color-text);
  gap: var(--space-4);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ════════════════════════════════════
   PRODUCT DESIGNED-FOR SECTION (Gymshark Style)
════════════════════════════════════ */

.designed-for-section {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.designed-for-tabs {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  scrollbar-width: none;
}

.designed-for-tabs::-webkit-scrollbar { display: none; }

.designed-for-tab {
  padding: 6px var(--space-5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: all var(--transition);
}

.designed-for-tab:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.designed-for-tab.is-active {
  color: var(--color-text);
  border-color: var(--color-text);
  background: transparent;
}

.designed-for-panel {
  display: none;
}

.designed-for-panel.is-active {
  display: block;
}

/* Designed For Layout */
.designed-for-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-12) 0;
}

.designed-for-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: var(--space-10);
}

.designed-for-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.feature-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.designed-for-image {
  aspect-ratio: 4/5;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.designed-for-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Description Panel */
.description-content {
  padding: var(--space-10) 0;
  max-width: 680px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.description-content p + p {
  margin-top: var(--space-4);
}

.description-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-top: var(--space-4);
}

.description-content li {
  margin-bottom: var(--space-2);
}

/* You might also like */
.you-might-like {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
}

.you-might-like-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  margin-bottom: var(--space-8);
  letter-spacing: -0.01em;
}

/* Product Contact Section */
.product-contact-section {
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.product-contact-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.product-contact-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.product-contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}

.product-contact-link:hover {
  color: var(--color-text-muted);
}

/* ════════════════════════════════════
   RELATED PRODUCTS
════════════════════════════════════ */

.related-section {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--color-border);
}

/* ════════════════════════════════════
   RECENTLY VIEWED
════════════════════════════════════ */

.recently-viewed {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
}

/* ════════════════════════════════════
   CART PAGE
════════════════════════════════════ */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  align-items: start;
  padding: var(--space-12) 0 var(--space-20);
}

.cart-items {
  border-top: 1px solid var(--color-border);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.cart-item-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 600;
  font-size: var(--text-lg);
}

.cart-summary {
  background: var(--color-bg-alt);
  padding: var(--space-8);
  position: sticky;
  top: 80px;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-lg);
  font-weight: 600;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

/* ════════════════════════════════════
   COOKIE CONSENT
════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin: 0;
}

.cookie-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    padding: 20px;
  }
}

/* ════════════════════════════════════
   WHATSAPP CHAT BUTTON
════════════════════════════════════ */

/* Hide WhatsApp when nav menu is open */
body.nav-is-open .whatsapp-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hide WhatsApp when cart drawer is open */
body.cart-is-open .whatsapp-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  30%       { transform: translateY(-6px); }
  60%       { transform: translateY(-3px); }
}

.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s ease-in-out infinite, wa-bounce 3.5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.whatsapp-btn:hover {
  animation: none;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  color: #fff;
}

.whatsapp-btn-label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-btn-label { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
}

.cookie-text a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.cookie-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 16px;
  font-size: 13px;
  border-radius: 10px;
}

/* ════════════════════════════════════
   LEGAL PAGES
════════════════════════════════════ */

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-16) 0 var(--space-24);
}

.legal-page h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.legal-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.legal-page h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.legal-page h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-page p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.legal-page ul {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal-page li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.legal-page a {
  color: var(--color-text);
  text-decoration: underline;
}

/* ════════════════════════════════════
   FOCUS STYLES — Accessibility
════════════════════════════════════ */

:focus-visible {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ════════════════════════════════════
   PLACEHOLDERS
════════════════════════════════════ */

.img-placeholder {
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════
   BRAND LOADER
════════════════════════════════════ */
#gleezi-loader {
  display: none !important;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
#gleezi-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#gleezi-loader img {
  width: 160px;
  height: auto;
  animation: gleezi-pulse 2.6s ease-in-out infinite;
}
@keyframes gleezi-pulse {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 0px rgba(0,0,0,0));
  }
  50% {
    opacity: 0.5;
    filter: drop-shadow(0 3px 14px rgba(0,0,0,0.10));
  }
}
@media (prefers-reduced-motion: reduce) {
  #gleezi-loader img {
    animation: none;
  }
}

/* In-container image loader (product gallery) */
.gallery-brand-loader-wrap {
  position: relative;
  display: inline-block;
}
.gallery-brand-loader {
  width: 110px;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1)   0%,
    rgba(0,0,0,1)   20%,
    rgba(0,0,0,0.1) 45%,
    rgba(0,0,0,0.1) 55%,
    rgba(0,0,0,1)   80%,
    rgba(0,0,0,1)   100%
  );
  -webkit-mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1)   0%,
    rgba(0,0,0,1)   20%,
    rgba(0,0,0,0.1) 45%,
    rgba(0,0,0,0.1) 55%,
    rgba(0,0,0,1)   80%,
    rgba(0,0,0,1)   100%
  );
  mask-size: 300% 100%;
  mask-repeat: no-repeat;
  animation: gleezi-mask-sweep 2s ease-in-out infinite;
}
@keyframes gleezi-mask-sweep {
  0%   {
    -webkit-mask-position: -100% center;
    mask-position: -100% center;
  }
  100% {
    -webkit-mask-position: 200% center;
    mask-position: 200% center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-brand-loader {
    animation: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ════════════════════════════════════
   CATEGORY NAV LINKS
════════════════════════════════════ */

/* Category links hidden below 1100px */
.nav-cat-link {
  display: none !important;
}
@media (min-width: 1100px) {
  .nav-cat-link {
    display: list-item !important;
  }
}

/* Active state for category + shop links */
.nav-link.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── Mobile Category Sub-menu ── */
.nav-mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px var(--space-6);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--color-text);
  background: none;
  border: none;
  border-bottom: 1px solid #c0c0c0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}
.sub-toggle-icon {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--color-text);
  border-top: 1.5px solid var(--color-text);
  transform: rotate(135deg); /* always ∨ */
  flex-shrink: 0;
}
.nav-mobile-sub {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Level-1 sub-links (parent categories: All Jackets, Bags) ── */
.nav-mobile-sub-link {
  display: block;
  padding: 9px var(--space-6) 9px calc(var(--space-6) + 12px);
  font-size: 0.8125rem;
  color: var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile-sub-link:hover,
.nav-mobile-sub-link.is-active {
  color: var(--color-text);
  opacity: 0.65;
}

/* ── Sub-group: parent category row (link + arrow) ── */
.nav-mobile-sub-group {
  list-style: none;
}
.nav-mobile-sub-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile-sub-group-header .nav-mobile-sub-link {
  border-bottom: none;
  flex: 1;
}

/* ── Level-2 sub-sub: sub-category links (indented) ── */
.nav-mobile-sub-sub {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-bg-alt);
}
.nav-mobile-sub-sub-link {
  display: block;
  padding: 8px var(--space-6) 8px calc(var(--space-6) + 24px);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile-sub-sub-link:hover,
.nav-mobile-sub-sub-link.is-active {
  color: var(--color-text);
  font-weight: 500;
}

/* ── Desktop: parent category with hover dropdown ── */
.nav-cat-parent {
  position: relative;
}
.nav-cat-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  min-width: 140px;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.nav-cat-parent:hover .nav-cat-dropdown,
.nav-cat-parent:focus-within .nav-cat-dropdown {
  display: block;
}
.nav-cat-dropdown li {
  list-style: none;
}
.nav-cat-dropdown-link {
  display: block;
  padding: 7px 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.nav-cat-dropdown-link:hover {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

/* ════════════════════════════════════
   LIVE SEARCH RESULTS — Premium Editorial
════════════════════════════════════ */

.search-results {
  /* override .container — match search-inner width */
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 2rem 2rem;
  box-sizing: border-box;
}
.search-results:empty { display: none; }

/* Result count header */
.search-result-count {
  padding: 1.25rem 0 0.5rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

/* Product row */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
  transition: opacity 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { opacity: 0.65; }

/* Product image */
.search-result-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  flex-shrink: 0;
  background: #F2F0EC;
  display: block;
}
.search-result-img--empty {
  background: var(--color-border);
}

/* Product info */
.search-result-info {
  flex: 1;
  min-width: 0;
}
.search-result-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.15s;
}
.search-result-price {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.3125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Loading / error status */
.search-status {
  padding: 2.5rem 0 1rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── No-results state ── */
.search-no-results {
  padding: 2.5rem 0 2rem;
}
.search-no-results-title {
  font-size: var(--text-xl);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.search-no-results-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

/* ── Empty state / category suggestions ── */
.search-suggest {
  padding: 0.25rem 0 0;
}
.search-suggest-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 1rem 0 0.75rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}
.search-suggest-chips {
  display: flex;
  flex-direction: column;
}
.search-suggest-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.15s;
}
.search-suggest-chip::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.4;
}
.search-suggest-chip:hover { opacity: 0.5; }

/* ── Mobile ── */
@media (max-width: 767px) {
  .search-results     { padding: 0 1.25rem 1.5rem; }
  .search-result-img  { width: 72px; height: 72px; }
  .search-result-item { gap: 1rem; padding: 0.75rem 0; }
  .search-result-name { font-size: 0.875rem; }
}

@media (max-width: 480px) {
  .search-results     { padding: 0 1rem 1.25rem; }
  .search-result-img  { width: 64px; height: 64px; }
  .search-result-item { gap: 0.75rem; padding: 0.625rem 0; }
}

@media (max-width: 374px) {
  .search-results    { padding: 0 0.875rem 1rem; }
  .search-result-img { width: 60px; height: 60px; }
}
