@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Sora:wght@400;500;600&display=swap');

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

:root {
  --black: #0f0f0f;
  --white: #fdfbf7;
  --cream: #faf7f2;
  --rose: #c97c7c;
  --gold: #d4af37;
  --text-dark: #1a1612;
  --text-grey: #6b6b6b;
  --accent: #c97c7c;
  --grey-light: #f5f3f0;
  --grey-mid: #e8e3dd;
  --grey-dark: #333333;
  --grey-text: #666666;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Sora', system-ui, sans-serif;
  --nav-h: 64px;
  --transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Removed noise overlay for clarity */
body::before {
  content: '';
  display: none;
}

/* ── SKIP LINK (a11y) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.skip-link:focus { top: 8px; }

/* ── FOCUS VISIBLE (CRITICAL a11y — never remove) ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

/* high-contrast white outline inside dark elements */
.cart-drawer :focus-visible,
.cart-drawer__header :focus-visible,
footer :focus-visible,
.features :focus-visible,
.admin-header :focus-visible {
  outline-color: var(--white);
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
img {
  display: block;
  max-width: 100%;
  image-rendering: high-quality;
  -webkit-font-smoothing: antialiased;
}
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--grey-mid); }

/* ═══════════════════════════════════════
   PAGE TRANSITION OVERLAY
═══════════════════════════════════════ */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.page-transition.leaving { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  height: var(--nav-h);
  background: #fdfbf7;
  border: 1px solid #e8e3dd;
  display: flex;
  align-items: center;
  padding: 0 48px;
  border-radius: 100px;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(26, 22, 18, 0.08);
}

/* nav shrinks + gets border when scrolled */
.nav--scrolled {
  height: 56px;
  border-color: #e8d8d5;
  background: #fdfbf7;
  box-shadow: 0 12px 32px rgba(26, 22, 18, 0.1);
}

/* transparent nav over video hero — removed on scroll */
.nav--transparent {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
}
.nav--transparent .nav__logo,
.nav--transparent .nav__links a,
.nav--transparent .nav__cart-btn {
  color: var(--white);
}
.nav--transparent .nav__links a:hover { color: rgba(255,255,255,0.65); }
.nav--transparent .nav__hamburger span { background: var(--white); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-right: 48px;
}

.nav__links {
  display: flex;
  gap: 48px;
  align-items: center;
}

.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-grey);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav__links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__cart-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-grey);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.nav__cart-btn:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav__cart-icon { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--accent);
  color: var(--white);
  font-size: 9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(201, 124, 124, 0.25);
}

.cart-count.visible { opacity: 1; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ═══════════════════════════════════════
   HERO — EDITORIAL SPLIT
═══════════════════════════════════════ */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}
@keyframes heroVideoScale {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* ── CENTERED HERO LAYOUT ── */
.hero--editorial {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-light);
}

.hero__panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Text content — centered */
.hero__panel--text {
  background: transparent;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 40px 40px;
  clip-path: none;
  text-align: center;
  z-index: 3;
  position: absolute;
  inset: 0;
}

/* Vertical brand label down left edge */
.hero__vert-label {
  display: none;
}

/* Main text block */
.hero__text-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__eyebrow::before {
  content: '';
  display: none;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__title-line { display: block; }
.hero__title-line--italic { font-style: italic; }

.hero__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 540px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.hero__link--light {
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
}
.hero__link--light:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.7);
  gap: 14px;
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 52px;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}

/* Video background */
.hero__panel--video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroVideoScale 1.4s ease-out forwards;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  image-rendering: high-quality;
  filter: none !important;
}

/* Video overlay - MINIMAL to keep video crystal clear */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Light text readability overlay only */
.hero__panel--video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

/* Decorative editorial corner tag */
.hero__video-tag {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hero__video-tag span:first-child {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  line-height: 1;
}

.hero__video-tag span:last-child {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* HERO STAGGERED ENTRANCE ANIMATIONS */
.anim-hero-1 { opacity: 0; animation: heroFadeUp 0.7s ease-out forwards; animation-delay: 0.25s; }
.anim-hero-2 { opacity: 0; animation: heroFadeUp 0.85s ease-out forwards; animation-delay: 0.5s; }
.anim-hero-3 { opacity: 0; animation: heroFadeUp 0.85s ease-out forwards; animation-delay: 0.7s; }
.anim-hero-4 { opacity: 0; animation: heroFadeUp 0.75s ease-out forwards; animation-delay: 0.95s; }
.anim-hero-5 { opacity: 0; animation: heroFadeIn 0.75s ease-out forwards; animation-delay: 1.2s; }

@media (prefers-reduced-motion: reduce) {
  .anim-hero-1, .anim-hero-2, .anim-hero-3, .anim-hero-4, .anim-hero-5 {
    animation: none; opacity: 1;
  }
  .hero__video { animation: none; }
  .hero__scroll-line { animation: none; opacity: 0.4; }
}

/* ── BUTTONS (Premium Pill Design) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  background: var(--text-dark);
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border-radius: 100px;
  position: relative;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 22, 18, 0.15);
}

.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: #b86a6a; box-shadow: 0 12px 32px rgba(201, 124, 124, 0.25); }

.btn--outline { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }
.btn--outline:hover { background: var(--text-dark); color: var(--white); }

.btn--ghost { background: transparent; border-color: transparent; color: var(--accent); }
.btn--ghost:hover { color: #b86a6a; }

/* ── GLASS MORPHISM BUTTON (Premium) ── */
.btn--glass {
  background: rgba(250, 247, 242, 0.5);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(26, 22, 18, 0.12);
  color: var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 100px;
}

.btn--glass:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(201, 124, 124, 0.3);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.btn--glass:active {
  transform: scale(0.97);
}

/* ── MARQUEE STRIP ── */
.marquee {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 28px;
}

.marquee__sep {
  opacity: 0.35;
  padding: 0 !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ═══════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════ */
.section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section__eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
}

/* ═══════════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Product Card - Clean & Clear */
.product-card {
  position: relative;
  background: #fdfbf7;
  border: 1px solid #e8e3dd;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card:hover {
  border-color: #c97c7c;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(201, 124, 124, 0.15);
}

.product-card::before {
  content: '';
  display: none;
}

.product-card__image-wrap {
  position: relative;
  overflow: visible;
  aspect-ratio: 3/4;
  background: #f5f3f0;
  border-radius: 14px;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: high-quality;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
}

/* Editorial card index number */
.product-card__index {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}

/* Hover overlay */
.product-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
  z-index: 3;
  overflow: hidden;
}

.product-card:hover .product-card__overlay {
  background: rgba(0,0,0,0.14);
}

/* Add to cart button (slides up on hover) */
.product-card__add-btn {
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(135deg, #c97c7c 0%, #d4916f 100%);
  color: var(--white);
  border: 1.5px solid #e8a399;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100%);
  transition: all 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(201, 124, 124, 0.2);
  display: block;
}

.product-card:hover .product-card__add-btn,
.product-card__add-btn:focus-visible {
  transform: translateY(0);
  background: linear-gradient(135deg, #c97c7c 0%, #d4916f 100%);
  border-color: #e8a399;
  box-shadow: 0 12px 32px rgba(201, 124, 124, 0.35);
}


.product-card__info {
  padding: 24px 4px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1.3;
}

.product-card__material {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__price {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ── CURTAIN REVEAL ── */
.product-card__curtain {
  position: absolute;
  inset: 0;
  /* slightly darker than grey-light so the reveal reads clearly */
  background: #ebebeb;
  z-index: 10;
  pointer-events: none;
  transition: transform 1.0s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: var(--card-delay, 0s);
}

.product-card.visible .product-card__curtain {
  transform: translateY(-101%);
}

/* Cards: no opacity fade (curtain handles it) */
.product-card.reveal {
  opacity: 1 !important;
  transform: none !important;
  /* keep transition for tilt spring-back */
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* Fast transform tracking during tilt */
.product-card.tilting {
  transition: transform 0.06s linear !important;
}

/* Info section reveals after curtain lifts */
.product-card__info {
  transition: transform 0.65s ease, opacity 0.65s ease;
  transition-delay: calc(var(--card-delay, 0s) + 0.45s);
  transform: translateY(10px);
  opacity: 0;
}

.product-card.visible .product-card__info {
  transform: translateY(0);
  opacity: 1;
}

/* ── STACKED CARD INTERACTION ── */
.products-grid {
  perspective: 1200px;
}

.product-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0.35s ease;
  transform-origin: center;
}

/* ═══════════════════════════════════════
   EDITORIAL VIDEO SECTION
═══════════════════════════════════════ */
.editorial-video {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.editorial-video__container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
}

.editorial-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: high-quality;
  filter: none !important;
}

.editorial-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.04) 100%);
  z-index: 1;
  pointer-events: none;
}

.editorial-video__rotation-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  animation: fadeInOut 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.editorial-video__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 32px;
  max-width: 720px;
}

.editorial-video__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin-bottom: 22px;
}

.editorial-video__title {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}

.editorial-video__title em {
  font-style: italic;
}

.editorial-video__subtitle {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  margin-top: 16px;
  margin-bottom: 24px;
}

/* ── 3D GARMENT VIEWER ── */
.garment-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20,20,20,0.5) 0%, rgba(40,40,40,0.3) 100%);
}

.garment-viewer__hint {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}

.garment-viewer__info {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.garment-viewer__label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.garment-viewer__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════
   TESTIMONIALS SECTION
═══════════════════════════════════════ */
.testimonials {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.testimonials__header {
  position: sticky;
  top: 200px;
}

.testimonials__header .section__eyebrow {
  margin-bottom: 16px;
}

.testimonials__header .section__title {
  margin-bottom: 0;
}

.testimonials__header em {
  font-style: italic;
}

.testimonials__carousel {
  position: relative;
  height: 600px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.testimonials__track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: scrollTestimonials 30s linear infinite;
}

@keyframes scrollTestimonials {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  padding: 28px;
  border-radius: 0;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--black);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.testimonial-card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.75;
  margin-bottom: 18px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-light);
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.testimonial-card__role {
  font-size: 11px;
  color: var(--grey-text);
  letter-spacing: 0.05em;
}

.testimonial-card__rating {
  font-size: 11px;
  color: var(--grey-text);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .testimonials__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .testimonials__header {
    position: static;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 64px 20px;
  }
  .testimonials__carousel {
    height: 500px;
  }
}
.features {
  background: var(--black);
  color: var(--white);
  padding: 0;
  position: relative;
  z-index: 50;
  border-top: 1px solid rgba(255,255,255,0.1);
  height: auto;
  min-height: 140px;
  overflow: hidden;
}


.features__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  padding: 48px 60px;
  gap: 40px;
}

.delivery-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.delivery-step::after {
  content: '';
  position: absolute;
  bottom: -17px;
  right: -20px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

.delivery-step:last-child::after {
  display: none;
}

.delivery-step:last-child {
  border-bottom: none;
}

.delivery-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.delivery-time {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.feature-item__icon {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  stroke-width: 1.5;
}

.feature-item__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.feature-item__text {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   ABOUT SECTION (homepage strip) — LUXURY EDITORIAL
═══════════════════════════════════════ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: stretch;
  padding: 120px 60px;
  max-width: 1600px;
  margin: 0 auto;
  background: #faf7f2;
  position: relative;
  overflow: hidden;
}

.about-strip::before {
  content: '';
  display: none;
}

.about-strip::after {
  content: '';
  display: none;
}

.about-strip__image {
  aspect-ratio: 3/4;
  background: #f5f3f0;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(26, 22, 18, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-strip:hover .about-strip__image {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 22, 18, 0.15);
}

.about-strip__image::before {
  content: '';
  display: none;
}

.about-strip__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-strip:hover .about-strip__image img {
  transform: scale(1.03);
}

/* About Video Container - 3D Animated */
.about-strip__video-container {
  perspective: 1200px;
}

.about-strip__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: high-quality;
  filter: none !important;
}

.about-strip__video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 32px;
}

.about-strip:hover .about-strip__video {
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-strip__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-strip__content .section__eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.about-strip__content .section__title {
  margin-bottom: 40px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.about-strip__content .section__title em {
  font-style: italic;
  font-weight: 400;
}

.about-strip__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-grey);
  line-height: 1.95;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1612 100%);
  color: var(--white);
  padding: 80px 40px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

/* ── SOCIAL MEDIA LINKS ── */
.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 124, 124, 0.1);
  color: var(--accent);
  border: 1px solid rgba(201, 124, 124, 0.2);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 32px rgba(201, 124, 124, 0.3);
}

.social-link svg {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link:hover svg {
  transform: scale(1.15);
}

.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--grey-mid);
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--grey-text);
  transition: color var(--transition);
  padding: 4px;
}

.cart-drawer__close:hover { color: var(--black); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--grey-text);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.cart-empty svg { opacity: 0.3; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-light);
}

.cart-item__img {
  width: 80px;
  height: 104px;
  object-fit: cover;
  background: var(--grey-light);
}

.cart-item__name {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}

.cart-item__price {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-text);
  margin-bottom: 12px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  background: none;
  border: 1px solid var(--grey-mid);
  /* visual 28px, but hit area expanded to 44px via padding */
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: border-color var(--transition);
  cursor: pointer;
}

.qty-btn:hover { border-color: var(--black); }

.qty-value {
  font-size: 14px;
  min-width: 24px;
  text-align: center;
}

.cart-item__remove {
  background: none;
  border: none;
  /* 44×44 touch target */
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--grey-text);
  transition: color var(--transition);
  cursor: pointer;
}

.cart-item__remove:hover { color: var(--black); }

.cart-drawer__footer {
  padding: 24px 28px 32px;
  border-top: 1px solid var(--grey-mid);
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-subtotal__label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-subtotal__value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transition: background var(--transition);
  font-family: var(--font-body);
}

.cart-checkout-btn:hover { background: #111; }

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
  z-index: 300;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════
   SUPPORTING PAGES — PAGE HERO
═══════════════════════════════════════ */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--grey-light);
  padding: 72px 40px;
  text-align: center;
}

.page-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
}

.page-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-text);
  line-height: 1.9;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════ */
.checkout-page {
  margin-top: var(--nav-h);
  padding: 60px 40px 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  margin-top: 48px;
}

.checkout-form-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  margin-bottom: 8px;
}

.checkout-subtitle {
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 40px;
}

.form-section-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-mid);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--grey-mid);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
}

/* custom dropdown arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-group input.error { border-color: #c00; }

.form-submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
  transition: background var(--transition);
}

.form-submit-btn:hover { background: #111; }
.form-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Order Summary */
.order-summary {
  background: var(--grey-light);
  padding: 36px;
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.order-summary__title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 24px;
}

.order-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: center;
}

.order-item__img {
  width: 60px;
  height: 78px;
  object-fit: cover;
  background: var(--grey-mid);
  flex-shrink: 0;
}

.order-item__name {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 4px;
}

.order-item__meta {
  font-size: 12px;
  color: var(--grey-text);
}

.order-item__price {
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  flex-shrink: 0;
}

.order-divider {
  border: none;
  border-top: 1px solid var(--grey-mid);
  margin: 20px 0;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-total-row span:first-child {
  font-size: 12px;
  color: var(--grey-text);
}

.order-total-row span:last-child {
  font-size: 13px;
  font-weight: 400;
}

.order-total-row.grand {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-dark);
}

.order-total-row.grand span:first-child {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-total-row.grand span:last-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.checkout-success.visible { display: block; }

.checkout-success__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 24px;
}

.checkout-success__title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
}

.checkout-success__text {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════ */
.admin-body {
  background: var(--grey-light);
  min-height: 100vh;
}

.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.admin-login__box {
  background: var(--white);
  padding: 56px 48px;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--grey-mid);
}

.admin-login__logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}

.admin-login__sub {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 40px;
}

.admin-login__error {
  display: none;
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  color: #c00;
  font-size: 12px;
  padding: 10px 14px;
  margin-bottom: 20px;
}

.admin-login__error.visible { display: block; }

.admin-panel {
  display: none;
  min-height: 100vh;
}

.admin-panel.visible { display: block; }

.admin-header {
  background: var(--black);
  color: var(--white);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header__logo {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-header__sub {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.admin-logout-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  transition: border-color var(--transition);
}

.admin-logout-btn:hover { border-color: var(--white); }

.admin-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--grey-mid);
}

.stat-card__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 10px;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 300;
}

.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  overflow-x: auto;
}

.admin-table-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-table-title {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-text);
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--grey-mid);
  background: var(--grey-light);
}

.admin-table td {
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 300;
  border-bottom: 1px solid var(--grey-light);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-table tr:hover td { background: #fafafa; }

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
}

.status-badge--pending { background: #fffbe6; color: #806b00; border: 1px solid #f5e060; }
.status-badge--confirmed { background: #e6f4ea; color: #1a6b2e; border: 1px solid #7fbf8f; }
.status-badge--shipped { background: #e6eeff; color: #1a3a8a; border: 1px solid #7fa0e0; }

.status-select {
  font-family: var(--font-body);
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--grey-mid);
  background: var(--white);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}

.admin-refresh-btn {
  background: none;
  border: 1px solid var(--grey-mid);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  transition: border-color var(--transition);
  color: var(--black);
}

.admin-refresh-btn:hover { border-color: var(--black); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .features__inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .section { padding: 64px 20px; }
  .section__header { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Mobile hero: FULL VIDEO with text overlay */
  .hero--editorial {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
    min-height: 600px;
    position: relative;
  }

  .hero__panel--text {
    position: absolute;
    inset: 0;
    z-index: 10;
    clip-path: none;
    padding: 100px 20px 40px 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    order: unset;
    min-height: unset;
    height: unset;
  }

  .hero__text-inner {
    padding: 0 !important;
  }

  .hero__panel--video {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    width: 100%;
    height: 100%;
    min-height: unset;
    order: unset;
  }

  .hero__panel--video::before { display: none !important; }
  .hero__video-tag { display: none; }
  .hero__vert-label { display: none; }

  .hero__eyebrow { font-size: 11px; margin-bottom: 12px; color: var(--white); }
  .hero__title { font-size: 36px !important; line-height: 1.1; margin-bottom: 16px; color: var(--white); }
  .hero__subtitle { font-size: 13px !important; max-width: 100%; line-height: 1.6; margin-bottom: 24px; color: var(--white); }
  .hero__cta { flex-direction: column; gap: 12px; }
  .hero__link { width: 100%; text-align: center; color: var(--white); }
  .hero__scroll { display: none; }

  .editorial-video { height: 60vh; min-height: 340px; }

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


  .about-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 16px !important;
    background: #faf7f2 !important;
  }

  .about-strip::before { display: none !important; }
  .about-strip::after { display: none !important; }

  .about-strip__image { aspect-ratio: 3/4; border-radius: 16px; }
  .about-strip__video-container { aspect-ratio: 3/4; border-radius: 16px; }

  .about-strip__content {
    max-width: 100%;
    padding: 20px 0 !important;
    border-left: none !important;
    border-top: none !important;
  }

  .about-strip__content .section__title { font-size: 26px; margin-bottom: 16px; line-height: 1.2; }
  .about-strip__text { font-size: 13px; margin-bottom: 16px; }

  .features__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 20px;
    gap: 24px;
  }

  .delivery-step {
    gap: 6px;
    padding-bottom: 12px;
  }

  .delivery-label {
    font-size: 11px;
  }

  .delivery-time {
    font-size: 10px;
  }

  /* Testimonials FIX */
  .testimonials {
    padding: 48px 16px !important;
  }

  .testimonials__inner {
    display: flex;
    flex-direction: column;
  }

  .testimonials__carousel {
    display: flex;
    flex-direction: column !important;
    gap: 16px;
  }

  .testimonials__track {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    transform: none !important;
  }

  .testimonial-card {
    width: 100% !important;
    transform: none !important;
  }

  .section { padding: 48px 16px !important; }

  .btn {
    padding: 14px 32px !important;
    font-size: 12px !important;
    width: auto;
    min-height: 44px;
  }

  .btn--glass {
    padding: 14px 32px !important;
  }

  .btn--outline {
    padding: 14px 32px !important;
  }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 48px 16px 40px; }

  .footer__brand-name { font-size: 16px; }
  .footer__brand-desc { font-size: 12px; margin-bottom: 16px; }
  .footer__social { gap: 12px; }
  .social-link { width: 40px; height: 40px; }

  .cart-drawer { width: 100vw; }
  .checkout-page { padding: 40px 16px 80px; }
  .form-row { grid-template-columns: 1fr; }

  .admin-content { padding: 20px 16px; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .admin-header { padding: 0 16px; }
  .page-content { padding: 40px 16px 72px; }
  .page-hero { padding: 40px 16px; }

  /* Remove any fixed widths that break mobile */
  .hero__cta a { width: 100% !important; }
  .marquee { padding: 12px 0; }
  .marquee__track span { font-size: 10px; padding: 0 16px; }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 56px;
  }

  body {
    font-size: 13px;
  }

  /* Extra small device optimizations */
  .nav {
    top: 12px;
    padding: 0 16px;
    height: 48px;
  }

  .nav__logo {
    font-size: 16px;
    margin-right: 12px;
  }

  .nav__cart-icon { width: 18px; height: 18px; }

  .hero__title { font-size: clamp(32px, 9vw, 52px); margin-bottom: 20px; }
  .hero__subtitle { font-size: 12px; margin-bottom: 32px; }
  .hero__eyebrow { font-size: 10px; margin-bottom: 16px; }
  .hero__cta { gap: 12px; }

  .section__title { font-size: clamp(24px, 6vw, 40px); }
  .section__eyebrow { font-size: 10px; }

  .btn {
    padding: 12px 28px;
    font-size: 11px;
  }

  .btn--glass {
    padding: 12px 28px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-card__image-wrap {
    border-radius: 10px;
  }

  .product-card__info {
    padding: 16px 12px 20px;
  }

  .product-card__name {
    font-size: 14px;
  }

  .product-card__price {
    font-size: 13px;
  }

  .products-grid { grid-template-columns: 1fr; gap: 8px; }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 16px;
  }

  .about-strip__image { aspect-ratio: 2/3; border-radius: 16px; }
  .about-strip__content {
    padding: 20px 16px;
    border-top: 1.5px solid rgba(201, 124, 124, 0.2);
    padding-top: 24px;
  }

  .about-strip__content .section__title { font-size: 24px; margin-bottom: 16px; }
  .about-strip__text { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

  .features__inner {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 16px;
  }

  .delivery-step {
    padding-bottom: 8px;
  }

  .delivery-label {
    font-size: 10px;
  }

  .delivery-time {
    font-size: 9px;
  }

  .testimonials {
    padding: 48px 12px;
  }

  .testimonials__header {
    margin-bottom: 32px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-card__text {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .testimonial-card__author {
    font-size: 12px;
  }

  .footer__brand-name { font-size: 18px; }
  .footer__brand-desc { font-size: 12px; max-width: 100%; margin-bottom: 16px; }
  .footer__col-title { font-size: 9px; margin-bottom: 12px; }
  .footer__col ul li a { font-size: 12px; }

  .editorial-video { height: 60vh; min-height: 340px; }
  .editorial-video__label { font-size: 10px; }
  .editorial-video__title { font-size: clamp(28px, 7vw, 48px); }
  .editorial-video__subtitle { font-size: 12px; margin-top: 12px; }

  .admin-stats { grid-template-columns: 1fr 1fr; }

  /* Touch-friendly spacing */
  .social-link { width: 40px; height: 40px; margin: 4px; }
  .social-link:active { transform: scale(0.95); }

  .cart-drawer { width: 100vw; }
  .checkout-page { padding: 30px 16px 80px; }
  .form-row { grid-template-columns: 1fr; }
}

/* Extra small devices (< 375px) */
@media (max-width: 375px) {
  .hero__title { font-size: clamp(24px, 8vw, 44px); }
  .section__title { font-size: clamp(20px, 5vw, 36px); }
  .product-card { margin: 0 -2px; }
  .nav { padding: 0 12px; }
  .section { padding: 48px 12px; }
  .footer__top { gap: 24px; }
}

/* Tablet & Medium devices (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .section { padding: 80px 32px; }

  .hero__title { font-size: clamp(48px, 6vw, 80px); }
  .about-strip {
    gap: 60px;
    padding: 100px 32px;
  }

  .product-card {
    border-radius: 14px;
  }

  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1px; }

  .testimonials { padding: 64px 32px; }
  .testimonials__carousel { gap: 24px; }
}

/* Large screens (> 1024px) */
@media (min-width: 1025px) {
  .section { padding: 100px 60px; }
  .nav { padding: 0 48px; }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .about-strip {
    gap: 100px;
    padding: 120px 60px;
  }
}

/* Landscape mode optimizations */
@media (max-height: 600px) and (orientation: landscape) {
  .hero--editorial { height: auto; min-height: 500px; }
  .editorial-video { height: 60vh; min-height: 350px; }
  .nav { top: 8px; }
}

/* High DPI screens (Retina displays) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body { -webkit-font-smoothing: subpixel-antialiased; }
}

/* ═══════════════════════════════════════
   MOBILE FORM & INPUT OPTIMIZATION
═══════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e8e3dd;
  font-family: var(--font-body);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 124, 124, 0.1);
}

/* iOS-specific input optimization */
@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: 16px !important;
    padding: 14px 16px !important;
  }
}

/* Mobile button hover vs tap feedback */
@media (hover: none) {
  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.96);
    transition: all 0.15s ease;
  }

  .social-link:active {
    transform: scale(0.92);
  }

  .product-card:hover {
    transform: none;
  }

  .product-card:active {
    transform: translateY(-4px);
  }
}

/* ═══════════════════════════════════════
   NOTCH & SAFE AREA SUPPORT
═══════════════════════════════════════ */
@supports (padding: max(0px)) {
  body {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .nav {
    top: max(12px, env(safe-area-inset-top));
  }

  footer {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }

  .cart-drawer {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}

/* Smooth scroll behavior for all browsers */
@supports (scroll-behavior: smooth) {
  html {
    scroll-behavior: smooth;
  }
}

/* Better text selection on mobile */
::selection {
  background: rgba(201, 124, 124, 0.3);
  color: var(--text-dark);
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ═══════════════════════════════════════
   SCROLL-REVEAL ANIMATIONS
═══════════════════════════════════════ */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes revealRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* base: invisible until JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* product card stagger */
.product-card.reveal {
  transition-delay: var(--card-delay, 0s);
}

/* split reveal (about section) — Premium Spring Animation */
.reveal-split__img {
  opacity: 0;
  transform: translateY(48px) scale(0.94);
  transition: opacity 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-split__text {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s, transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}
.reveal-split.visible .reveal-split__img {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-split.visible .reveal-split__text {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-split__img, .reveal-split__text {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ── ABOUT STRIP tweak for content padding ── */
.about-strip__content {
  padding: 0 20px;
}

/* ── MOBILE NAV OVERLAY ── */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nav__mobile-overlay.open {
  display: flex;
  opacity: 1;
}
.nav__mobile-overlay a {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: opacity var(--transition);
}
.nav__mobile-overlay a:hover { opacity: 0.45; }
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
  padding: 8px;
}

/* hamburger → X transform */
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
