/* ==========================================================================
   AZARETH STREETWEAR - MONOCHROMATIC TECH-NOIR DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
  --color-bg-darkest: #000000;
  --color-bg-darker: #0a0a0c;
  --color-bg-surface: rgba(10, 10, 12, 0.85);
  --color-text-primary: #ffffff;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #52525b;
  
  /* Noir High-Contrast Theme */
  --color-accent-white: #ffffff;
  --color-accent-silver: #f4f4f5;
  --color-accent-grey: #27272a;
  --color-accent-border: rgba(255, 255, 255, 0.1);
  --color-accent-border-active: rgba(255, 255, 255, 0.4);

  /* Fonts */
  --font-logo: 'Cinzel', serif;
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  
  --navbar-height: 85px;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-white);
}

/* ==========================================================================
   Base & Reset Elements
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-darkest);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Stark matte black background setup (no grid overlay) */

/* Ambient studio lighting diffusers (pure white and soft slate pools) */
.ambient-glow {
  position: fixed;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  top: -10%;
  right: -10%;
  background-color: #ffffff;
}
.glow-2 {
  bottom: -10%;
  left: -10%;
  background-color: #71717a;
}



/* ==========================================================================
   Typography & Shared Utilities
   ========================================================================== */
h1, h2, h3, h4, .btn, .countdown-val, .lookbook-text-graphic {
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.badge-noir {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-text-primary);
  background-color: var(--color-bg-darker);
  border: 1px solid var(--color-accent-border);
  border-radius: 2px;
  margin-bottom: 20px;
}

.text-sub {
  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 0.55em;
  color: var(--color-text-secondary);
}

.text-white { color: var(--color-accent-white); }
.text-muted { color: var(--color-text-secondary); }

.grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 968px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
}

.btn-primary {
  background-color: var(--color-accent-white);
  color: var(--color-bg-darkest);
  border: 1px solid var(--color-accent-white);
}
.btn-primary:hover {
  background-color: var(--color-bg-darkest);
  color: var(--color-accent-white);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
  pointer-events: none;
}
.btn-glow:active::after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0s;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-accent-border);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--color-accent-white);
  background-color: rgba(255, 255, 255, 0.03);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-full-width {
  width: 100%;
}

/* ==========================================================================
   Sticky Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--color-accent-border);
  height: 75px;
}

.navbar-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Replicating reference logo layout */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text-primary);
  height: 40px;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  fill: var(--color-accent-white);
  transition: var(--transition-normal);
  flex-shrink: 0;
  display: block;
  position: relative;
  top: -2px; /* Compensate for vertical path offset in SVG viewBox */
}

.logo-text-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  color: var(--color-accent-white);
  line-height: 1;
  display: block;
}

.logo-sub-star {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 8px;
  fill: var(--color-accent-white);
  opacity: 0.7;
  display: block;
}

.nav-logo:hover .nav-logo-icon {
  transform: rotate(90deg);
}

.nav-menu {
  display: flex;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent-white);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}
.nav-link:hover {
  color: var(--color-text-primary);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
  position: relative;
  padding: 8px;
  transition: var(--transition-fast);
}
.nav-icon-btn:hover {
  color: var(--color-accent-white);
  transform: scale(1.05);
}
.nav-icon-btn .icon {
  width: 18px;
  height: 18px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--color-accent-white);
  color: var(--color-bg-darkest);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.65rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn {
  padding: 10px 18px;
  font-size: 0.7rem;
  border: 1px solid var(--color-accent-white);
  color: var(--color-accent-white);
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: var(--transition-normal);
}
.nav-btn:hover {
  background-color: var(--color-accent-white);
  color: var(--color-bg-darkest);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 14px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger-bar {
  width: 100%;
  height: 1.5px;
  background-color: var(--color-text-primary);
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-darker);
    border-bottom: 1px solid var(--color-accent-border);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--navbar-height) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin-bottom: 45px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 0.85;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--color-accent-border);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-normal), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-img-wrapper:hover .hero-img {
  transform: scale(1.03);
}

/* Floating Tech Card */
.floating-tech-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: var(--color-bg-surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-accent-border);
  border-radius: 2px;
  z-index: 10;
  transition: var(--transition-normal);
}
.hero-img-wrapper:hover .floating-tech-card {
  border-color: var(--color-accent-white);
  transform: translateY(-4px);
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}
.tech-card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent-white);
  animation: pulse-dot 2s infinite;
}
.tech-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent-white);
}
.tech-card-meta {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Decorative Frames */
.vector-frame-top-left, .vector-frame-bottom-right {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--color-accent-white);
  border-style: solid;
  pointer-events: none;
}
.vector-frame-top-left {
  top: 14px;
  left: 14px;
  border-width: 1px 0 0 1px;
}
.vector-frame-bottom-right {
  bottom: 14px;
  right: 14px;
  border-width: 0 1px 1px 0;
}

/* Countdown Clock */
.countdown-container {
  background: var(--color-bg-darker);
  border: 1px solid var(--color-accent-border);
  border-radius: 2px;
  padding: 18px 24px;
  margin-bottom: 45px;
  max-width: 500px;
}
.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}
.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.countdown-val {
  font-size: 1.6rem;
  color: var(--color-text-primary);
  font-family: var(--font-headings);
  line-height: 1.1;
}
.countdown-unit {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.countdown-colon {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  padding-bottom: 8px;
}

@keyframes pulse-dot {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* ==========================================================================
   Marquee Sections
   ========================================================================== */
.marquee-section {
  width: 100vw;
  background-color: var(--color-bg-darker);
  border-y: 1px solid var(--color-accent-border);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-left: calc(-50vw + 50%);
}

.marquee-wrapper {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 32s linear infinite;
  padding-right: 40px;
}

.marquee-content span {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding: 0 25px;
  letter-spacing: 0.05em;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-accent-white);
  border-radius: 50%;
  display: inline-block;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* ==========================================================================
   Catalog & Product Grid
   ========================================================================== */
.catalog-section, .benefits-section, .lookbook-section, .testimonials-section, .faq-section, .cta-section {
  padding: 120px 0;
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  max-width: 600px;
  margin-bottom: 70px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--color-bg-darker);
  border: 1px solid var(--color-accent-border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--color-accent-border-active);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.product-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 0.9;
  background-color: #0b0b0d;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-normal), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img {
  transform: scale(1.02);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.55rem;
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  border-radius: 1px;
  z-index: 10;
}
.noir-badge {
  background-color: var(--color-accent-white);
  color: var(--color-bg-darkest);
}

/* Quick Add Button Slide Up */
.quick-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background-color: var(--color-accent-white);
  color: var(--color-bg-darkest);
  border: none;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transform: translateY(100%);
  transition: var(--transition-normal);
  z-index: 10;
}
.quick-add-btn svg {
  width: 14px;
  height: 14px;
}
.quick-add-btn:hover {
  background-color: var(--color-bg-darkest);
  color: var(--color-accent-white);
  border-top: 1px solid var(--color-accent-white);
}
.product-img-container:hover .quick-add-btn {
  transform: translateY(0);
}

.product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-type {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.product-stock {
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.product-title {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Color Options Dot System */
.color-options {
  display: flex;
  gap: 8px;
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition-fast);
}
.color-dot.active {
  border-color: var(--color-accent-white);
  transform: scale(1.1);
}

/* Size Chips */
.size-selector-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--color-accent-border);
  padding-top: 16px;
}
.size-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
}
.size-options {
  display: flex;
  gap: 6px;
}
.size-btn {
  background: none;
  border: 1px solid var(--color-accent-border);
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  width: 32px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
  cursor: pointer;
  transition: var(--transition-fast);
}
.size-btn:hover {
  border-color: var(--color-accent-white);
  color: var(--color-accent-white);
}
.size-btn.active {
  background-color: var(--color-accent-white);
  border-color: var(--color-accent-white);
  color: var(--color-bg-darkest);
  font-weight: 700;
}

/* ==========================================================================
   Bento Grid Benefits & Technology
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.bento-card {
  background: var(--color-bg-darker);
  border: 1px solid var(--color-accent-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: var(--transition-normal);
}
.bento-card.bento-col-2 {
  padding-top: 220px;
}
.bento-card:hover {
  border-color: var(--color-accent-border-active);
  transform: translateY(-4px);
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-content {
  position: relative;
  z-index: 10;
}

.bento-icon {
  margin-bottom: 24px;
}
.icon-lg {
  width: 32px;
  height: 32px;
}

.bento-title {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bento-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.bento-visual {
  height: 200px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.005);
  border-bottom: 1px solid var(--color-accent-border);
}

/* Bento Grid Spec Sheet Display */
.spec-sheet-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  max-width: 320px;
  background-color: var(--color-bg-darkest);
  border: 1px solid var(--color-accent-border);
  padding: 20px;
  border-radius: 2px;
  z-index: 10;
}
.spec-item-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-accent-border);
  padding-bottom: 8px;
  font-family: var(--font-headings);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.spec-item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.spec-label {
  color: var(--color-text-secondary);
}
.spec-value {
  color: var(--color-accent-white);
  font-weight: 700;
}

/* Bento Grid Shipping Status display */
.shipping-status-display {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 80%;
  max-width: 320px;
  background-color: var(--color-bg-darkest);
  border: 1px solid var(--color-accent-white);
  padding: 20px;
  border-radius: 2px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.status-indicator-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent-white);
}
.status-pulse-dot {
  width: 5px;
  height: 5px;
  background-color: var(--color-accent-white);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}
.status-details-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-accent-border);
  padding-top: 12px;
}
.status-detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-family: var(--font-body);
}
.detail-name {
  color: var(--color-text-muted);
}
.detail-value {
  color: var(--color-accent-white);
  font-weight: 700;
}

@media (max-width: 968px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-col-2 {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Lookbook Section
   ========================================================================== */
.lookbook-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-accent-border);
}

.item-large {
  aspect-ratio: 1.25;
}

.gallery-group-vertical {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.item-small {
  aspect-ratio: 1.45;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition-normal), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.01);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-location {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--color-accent-white);
  margin-bottom: 6px;
}

.gallery-tags {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

/* Steel card */
.gradient-bg-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.steel-gradient {
  background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
}
.lookbook-text-graphic {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  text-align: center;
  opacity: 0.05;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  user-select: none;
}

@media (max-width: 768px) {
  .lookbook-gallery {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Testimonials & Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--color-bg-darker);
  border: 1px solid var(--color-accent-border);
  border-radius: 4px;
  padding: 28px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card:hover {
  border-color: var(--color-accent-border-active);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  margin-right: 14px;
}

.user-info {
  flex: 1;
}

.user-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.verified-tag {
  font-size: 0.55rem;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--color-text-primary);
  border: 0.5px solid var(--color-accent-border);
  padding: 2px 6px;
  border-radius: 2px;
}

.user-handle {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.review-rating {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-accent-white);
  border: 1px solid var(--color-accent-border);
  padding: 4px 8px;
  border-radius: 1px;
}

.review-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-accent-border);
  padding-top: 14px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  text-align: left;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition-fast);
}
.faq-question:hover {
  color: var(--color-accent-white);
}

.icon-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-text-muted);
}
.faq-question:hover .icon-chevron {
  color: var(--color-accent-white);
}

.faq-item.active .icon-chevron {
  transform: rotate(180deg);
  color: var(--color-accent-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding-bottom: 26px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ==========================================================================
   CTA / Newsletter Section
   ========================================================================== */
.cta-card {
  background: linear-gradient(135deg, #121215 0%, #09090b 100%);
  border: 1px solid var(--color-accent-border);
  border-radius: 4px;
  padding: 70px 45px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.cta-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.cta-content {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
}

.cta-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
}

.cta-form {
  margin-bottom: 24px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.input-group {
  display: flex;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid var(--color-accent-border);
  background-color: var(--color-bg-darkest);
  border-radius: 2px;
  padding: 6px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  overflow: hidden;
}

.input-group:focus-within {
  border-color: var(--color-accent-white);
}

.cta-form.submitted .input-group {
  opacity: 0;
  max-height: 0;
  padding: 0;
  border-color: transparent;
  margin: 0 auto;
  pointer-events: none;
  transform: scale(0.95) translateY(-10px);
}

.form-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 16px;
  transition: opacity 0.3s ease;
}

.form-input::placeholder {
  color: var(--color-text-muted);
}

.form-btn {
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1);
  height: 38px;
}

.icon-arrow {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.form-btn:hover .icon-arrow {
  transform: translateX(4px);
}

.form-btn .btn-text {
  transition: opacity 0.3s ease;
}

.cta-form.submitting .form-btn .btn-text,
.cta-form.submitting .form-btn .icon-arrow {
  opacity: 0;
  pointer-events: none;
}

/* Spinner for submitting state */
.btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--color-accent-white);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cta-form.submitting .btn-spinner {
  opacity: 1;
  animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Elegant Typographic Success Screen */
.cta-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-form.submitted .cta-form-success {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  margin-top: 10px;
}

.success-title {
  font-family: var(--font-logo);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-accent-white);
  margin-bottom: 8px;
  text-align: center;
}

.success-subtitle {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  text-align: center;
  text-transform: uppercase;
}

.cta-fineprint {
  font-family: var(--font-headings);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .cta-card {
    padding: 40px 20px;
  }
  .input-group {
    flex-direction: column;
    background: none;
    border: none;
    gap: 12px;
    padding: 0;
  }
  .form-input {
    background-color: var(--color-bg-darkest);
    border: 1px solid var(--color-accent-border);
    border-radius: 2px;
    padding: 14px;
  }
  .form-btn {
    width: 100%;
    padding: 14px;
  }
}

/* ==========================================================================
   Shopping Drawer Overlay & Panels
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--color-bg-darker);
  border-left: 1px solid var(--color-accent-border);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}
.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--color-accent-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-fast);
}
.cart-close-btn:hover {
  color: var(--color-text-primary);
  transform: rotate(90deg);
}
.cart-close-btn svg {
  width: 18px;
  height: 18px;
}

/* Shipping Progress Bar */
.shipping-meter-container {
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid var(--color-accent-border);
}
.shipping-meter-label {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}
.shipping-meter-bg {
  width: 100%;
  height: 3px;
  background-color: var(--color-bg-darkest);
  overflow: hidden;
}
.shipping-meter-bar {
  height: 100%;
  background-color: var(--color-accent-white);
  transition: width 0.4s ease-out;
}

/* Cart Items List */
.cart-items-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.empty-cart-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}
.empty-cart-icon {
  width: 40px;
  height: 40px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.empty-cart-state p {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-accent-border);
}

.cart-item-img {
  width: 80px;
  height: 90px;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 2px;
  background-color: #0b0b0d;
}

.cart-item-details {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--color-text-primary);
}

.cart-item-meta {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-accent-border);
  width: fit-content;
  border-radius: 1px;
}
.qty-btn {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.qty-btn:hover {
  color: var(--color-text-primary);
}
.qty-val {
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  text-align: center;
}

.cart-item-remove-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
  transition: var(--transition-fast);
}
.cart-item-remove:hover {
  color: #f43f5e;
}
.cart-item-remove svg {
  width: 14px;
  height: 14px;
}

/* Cart Footer checkout area */
.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--color-accent-border);
  background-color: rgba(0, 0, 0, 0.4);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cart-summary-row.text-muted {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-bottom: 24px;
}
.cart-subtotal-val {
  font-size: 1.1rem;
  color: var(--color-text-primary);
}

.icon-checkout {
  width: 14px;
  height: 14px;
  margin-left: 8px;
}

.checkout-assurance {
  text-align: center;
  font-family: var(--font-headings);
  font-size: 0.55rem;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-top: 16px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background-color: var(--color-bg-darker);
  border-top: 1px solid var(--color-accent-border);
  padding: 90px 0 45px;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.25fr 1.75fr;
  gap: 70px;
  margin-bottom: 70px;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--color-accent-white);
  position: relative;
  top: -2.5px; /* Compensate for vertical path offset in SVG viewBox */
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 360px;
  margin-bottom: 30px;
}

/* Pulse system light indicator */
.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--color-accent-border);
  padding: 8px 14px;
  border-radius: 1px;
  width: fit-content;
}
.status-indicator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent-white);
  display: inline-block;
}
.status-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--color-accent-white);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-link {
  display: block;
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  transition: var(--transition-fast);
}
.footer-link:hover {
  color: var(--color-accent-white);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--color-accent-border);
  padding-top: 40px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-size: 0.6rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-legal-link {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}
.footer-legal-link:hover {
  color: var(--color-text-secondary);
}
.legal-separator {
  color: rgba(255, 255, 255, 0.03);
}

@media (max-width: 850px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-legal-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

.product-card[data-delay="100"], .bento-card[data-delay="100"], .review-card[data-delay="100"], .gallery-item[data-delay="100"] {
  transition-delay: 0.08s;
}
.product-card[data-delay="200"], .bento-card[data-delay="200"], .review-card[data-delay="200"], .gallery-item[data-delay="200"] {
  transition-delay: 0.16s;
}
.product-card[data-delay="300"], .bento-card[data-delay="300"], .review-card[data-delay="300"], .gallery-item[data-delay="300"] {
  transition-delay: 0.24s;
}
.product-card[data-delay="400"] {
  transition-delay: 0.32s;
}

/* ==========================================================================
   Premium Motion Graphics & Animation System
   ========================================================================== */

/* --- Hero Section Entrance Animations --- */
@keyframes heroFadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeSlideRight {
  0% { opacity: 0; transform: translateX(-50px) scale(0.97); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes heroImageReveal {
  0% { opacity: 0; transform: scale(1.08); filter: grayscale(100%) blur(8px); }
  60% { filter: grayscale(100%) blur(0px); }
  100% { opacity: 1; transform: scale(1); filter: grayscale(100%) blur(0px); }
}
@keyframes badgeSlideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes borderDraw {
  0% { opacity: 0; width: 0; height: 0; }
  50% { opacity: 1; width: 24px; height: 0; }
  100% { opacity: 1; width: 24px; height: 24px; }
}
@keyframes floatCardSlideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes countdownPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Hero entrance sequencing */
.hero-section .badge-noir {
  animation: badgeSlideIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-section .hero-title {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.hero-section .hero-description {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.hero-section .countdown-container {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}
.hero-section .hero-actions {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
.hero-section .hero-img-wrapper {
  animation: heroImageReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-section .floating-tech-card {
  animation: floatCardSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}
.hero-section .vector-frame-top-left,
.hero-section .vector-frame-bottom-right {
  animation: borderDraw 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.0s both;
}

/* --- Ambient Floating Motion --- */
@keyframes ambientFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(0.5deg); }
  50% { transform: translateY(-6px) rotate(0deg); }
  75% { transform: translateY(-15px) rotate(-0.5deg); }
}
@keyframes ambientGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.06; }
  33% { transform: translate(30px, -20px) scale(1.05); opacity: 0.08; }
  66% { transform: translate(-20px, 15px) scale(0.97); opacity: 0.04; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.ambient-glow {
  animation: ambientGlowDrift 18s ease-in-out infinite;
}
.ambient-glow.glow-2 {
  animation-delay: -6s;
  animation-duration: 22s;
}

/* Floating tech card gentle hover */
.floating-tech-card {
  animation: ambientFloat 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* --- Logo Spin & Pulse on Load --- */
@keyframes logoEntrance {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes logoTextSlide {
  0% { opacity: 0; letter-spacing: 0.4em; }
  100% { opacity: 1; letter-spacing: 0.16em; }
}

.nav-logo-icon {
  animation: logoEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.logo-text {
  animation: logoTextSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* --- Section Title Reveal Animations --- */
@keyframes titleLineExpand {
  0% { width: 0; }
  100% { width: 60px; }
}

.section-header .section-title {
  position: relative;
}
.section-header.reveal-fade-up.active .section-title::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--color-accent-white);
  margin-top: 16px;
  animation: titleLineExpand 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* --- Product Card Hover Micro-Animations --- */
.product-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-title {
  letter-spacing: 0.03em;
  transition: letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-badge {
  transform: scale(1.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Quick Add button slide-up with bounce */
@keyframes slideUpBounce {
  0% { transform: translateY(100%); }
  70% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.product-img-container:hover .quick-add-btn {
  animation: slideUpBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* --- Bento Card Interactive Glow --- */
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.bento-card:hover::before {
  opacity: 1;
}

/* --- Review Card Stagger Entrance --- */
@keyframes reviewSlideUp {
  0% { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.review-card.reveal-fade-up.active {
  animation: reviewSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.review-card[data-delay="100"].reveal-fade-up.active {
  animation-delay: 0.12s;
}
.review-card[data-delay="200"].reveal-fade-up.active {
  animation-delay: 0.24s;
}

/* Review card hover lift */
.review-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover {
  transform: translateY(-8px);
}

/* --- FAQ Accordion Smooth Expand --- */
.faq-item .faq-question {
  transition: color 0.3s ease, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-question {
  padding-left: 12px;
  border-left: 2px solid var(--color-accent-white);
}
.faq-answer {
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0;
}
.faq-item.active .faq-answer {
  opacity: 1;
}

/* --- CTA Section Shimmer Border --- */
.cta-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 25%, transparent 50%, rgba(255,255,255,0.15) 75%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  border-radius: 5px;
  z-index: -1;
  opacity: 0.5;
}

/* CTA input focus glow */
.input-group:focus-within {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.4s ease, border-color 0.3s ease;
}

/* --- Button Click Ripple Effect --- */
@keyframes btnRipple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.4; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  pointer-events: none;
}
.btn-primary:active::before {
  animation: btnRipple 0.5s ease-out;
}

/* --- Gallery / Lookbook Hover Zoom & Overlay --- */
.gallery-item {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
  transform: scale(1.01);
}
.gallery-overlay {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* --- Marquee Speed Variation on Hover --- */
.marquee-section:hover .marquee-content {
  animation-duration: 50s;
}

/* --- Navbar Slide-Down Entrance --- */
@keyframes navSlideDown {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.navbar {
  animation: navSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

/* Navbar link stagger on load */
.nav-link:nth-child(1) { animation: heroFadeSlideUp 0.5s ease 0.4s both; }
.nav-link:nth-child(2) { animation: heroFadeSlideUp 0.5s ease 0.5s both; }
.nav-link:nth-child(3) { animation: heroFadeSlideUp 0.5s ease 0.6s both; }
.nav-link:nth-child(4) { animation: heroFadeSlideUp 0.5s ease 0.7s both; }

/* --- Footer Subtle Entrance --- */
@keyframes footerFadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.footer-brand-column { animation: footerFadeIn 0.8s ease 0.1s both; }
.footer-link-col:nth-child(1) { animation: footerFadeIn 0.6s ease 0.2s both; }
.footer-link-col:nth-child(2) { animation: footerFadeIn 0.6s ease 0.3s both; }
.footer-link-col:nth-child(3) { animation: footerFadeIn 0.6s ease 0.4s both; }

/* --- Cart Drawer Slide Animation Enhancement --- */
.cart-drawer {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer-overlay {
  transition: opacity 0.4s ease;
}

/* --- Countdown Digit Flip Effect --- */
.countdown-val {
  display: inline-block;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.countdown-val.tick {
  animation: digitTick 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes digitTick {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(-3px) scale(1.08); }
  100% { transform: translateY(0) scale(1); }
}

/* --- Badge Shimmer on Scroll --- */
.badge-noir {
  position: relative;
  overflow: hidden;
}
.badge-noir::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.6s ease;
}
.reveal-fade-up.active .badge-noir::after,
.hero-section .badge-noir::after {
  animation: badgeShimmer 2s ease 0.8s both;
}
@keyframes badgeShimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* --- Smooth Page Load Fade --- */
@keyframes pageLoad {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
body {
  animation: pageLoad 0.6s ease both;
}

/* --- Pulse animation for status dots --- */
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
.status-pulse-dot,
.tech-card-dot,
.status-indicator-dot {
  animation: statusPulse 2s ease-in-out infinite;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
  z-index: 10000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* --- Smooth Scroll Snap Feel --- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Page Loader / Entrance Reveal Animation
   ========================================================================== */
body.loading {
  overflow: hidden;
  height: 100vh;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #050507;
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.page-loader.loaded {
  transform: translateY(-100%);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  width: 95px;
  height: 95px;
  color: var(--color-accent-white);
  overflow: visible;
}

.loader-logo .draw-path {
  fill: rgba(255, 255, 255, 0);
  stroke: var(--color-accent-white);
  stroke-width: 1.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  transition: fill 0.6s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.6s ease;
}

.loader-logo .spine-v {
  animation: drawLine 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.loader-logo .spine-h {
  animation: drawLine 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.loader-logo .shape-a {
  animation: drawLine 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.page-loader.filling-logo .loader-logo .draw-path {
  fill: rgba(255, 255, 255, 1);
  stroke: transparent;
}

.loader-line-container {
  width: 130px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.loader-progress-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-accent-white);
  transform: scaleX(0);
  transform-origin: left;
  animation: loadProgress 2.2s cubic-bezier(0.45, 0, 0.15, 1) forwards;
}

@keyframes loadProgress {
  to {
    transform: scaleX(1);
  }
}

.loader-text {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--color-accent-white);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInLoaderText 0.8s ease-out 1.2s forwards;
}

@keyframes fadeInLoaderText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ==========================================================================
   Monochromatic Theme Switcher Override
   ========================================================================== */

/* Theme Toggle button show/hide icon logic */
html.light-theme .theme-icon-sun {
  display: none !important;
}
html.light-theme .theme-icon-moon {
  display: block !important;
}

/* Light Theme Variables Override */
html.light-theme {
  --color-bg-darkest: #ffffff;
  --color-bg-darker: #f6f6f9;
  --color-bg-surface: rgba(255, 255, 255, 0.85);
  --color-text-primary: #050507;
  --color-text-secondary: #4b4b54;
  --color-text-muted: #8e8e93;
  
  --color-accent-white: #000000;
  --color-accent-silver: #1e1e24;
  --color-accent-grey: #e5e5ea;
  --color-accent-border: rgba(0, 0, 0, 0.08);
  --color-accent-border-active: rgba(0, 0, 0, 0.35);
}

/* Smooth transition properties specifically for color variables (does not hijack layout/transforms) */
body, header, section, footer, .navbar, .nav-menu, .nav-link, .nav-btn, .btn, .product-card, .cta-card, .cart-drawer, .input-group, .form-input, .form-btn, .ambient-glow, .logo-text, .logo-sub-star, .nav-logo-icon {
  transition-property: background-color, color, border-color, stroke, fill;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Specific Element Adjustments */
html.light-theme .ambient-glow {
  filter: invert(1);
  opacity: 0.03;
}

html.light-theme ::-webkit-scrollbar-track {
  background: #ffffff;
}

html.light-theme ::-webkit-scrollbar-thumb {
  background: #d1d1d6;
}

html.light-theme .status-pulse-dot {
  background-color: #000000;
}

/* Light Theme Component Fixes */

/* 1. Scrolled Navbar background in light mode */
html.light-theme .navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--color-accent-border);
}

/* 2. Lookbook Graphic Steel Card inversion */
html.light-theme .steel-gradient {
  background: linear-gradient(135deg, #e4e4e7 0%, #f4f4f5 100%);
}

/* 3. Lookbook Gallery Image bottom gradient overlay inversion */
html.light-theme .gallery-overlay {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.88));
}

/* 4. Newsletter Card background inversion */
html.light-theme .cta-card {
  background: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-darkest) 100%);
  border-color: var(--color-accent-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

html.light-theme .cta-card::after {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

html.light-theme .cta-card::before {
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 25%, transparent 50%, rgba(0, 0, 0, 0.04) 75%, transparent 100%);
}

/* 5. Cart Drawer shadow softening */
html.light-theme .cart-drawer {
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Conversion Urgency & Social Proof (CRO Enhancements)
   ========================================================================== */

/* 1. Sleek minimal FOMO toast */
.fomo-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--color-bg-darker);
  border: 1px solid var(--color-accent-border);
  padding: 14px 20px;
  border-radius: 2px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120px) scale(0.95);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  max-width: 320px;
}

html.light-theme .fomo-toast {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.fomo-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.fomo-toast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ef4444; /* bright red pulse */
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  animation: fomoPulse 1.8s infinite;
  flex-shrink: 0;
}

@keyframes fomoPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.fomo-toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fomo-toast-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.fomo-toast-desc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
}

/* 2. Cart Reservation banner */
.cart-reservation-banner {
  background-color: var(--color-bg-darkest);
  border-top: 1px solid var(--color-accent-border);
  border-bottom: 1px solid var(--color-accent-border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  font-weight: 700;
  animation: bannerPulse 2s infinite ease-in-out;
}

@keyframes bannerPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.timer-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #e11d48; /* soft red warning dot */
  animation: timerPulse 1.5s infinite;
}

@keyframes timerPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

#cart-timer-clock {
  font-family: monospace;
  font-size: 0.72rem;
  color: #e11d48;
}

/* Floating live viewer count badge */
.viewer-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(10, 10, 12, 0.75);
  border: 1px solid var(--color-accent-border);
  padding: 4px 8px;
  font-family: var(--font-headings);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  font-weight: 700;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
  transition: opacity 0.3s ease;
}

html.light-theme .viewer-badge {
  background-color: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  color: #050507;
}

.viewer-pulse-dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background-color: #ef4444; /* active red pulse indicator */
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  animation: viewerPulse 1.8s infinite;
}

@keyframes viewerPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   Custom Graphic Streetwear Cursors
   ========================================================================== */

@media (pointer: fine) {
  /* Hide standard browser cursors */
  body, a, button, input, select, textarea, .color-dot, .size-btn, .product-card, .quick-add-btn, .nav-btn, .cart-close-btn, .mobile-menu-toggle {
    cursor: none !important;
  }

  .custom-cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    z-index: 1000000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    color: var(--color-accent-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
  }

  .cursor-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  }

  .cursor-normal {
    width: 34px;
    height: 34px;
    opacity: 1;
    transform: scale(1);
  }

  .cursor-hover {
    width: 58px;
    height: 58px;
    opacity: 0;
    transform: scale(0.6);
    /* Soft infinite rotation for tech interface theme */
    animation: hoverCursorSpin 10s linear infinite;
  }

  @keyframes hoverCursorSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* Hover active state overrides */
  .custom-cursor-container.hovered .cursor-normal {
    opacity: 0;
    transform: scale(0.4);
  }

  .custom-cursor-container.hovered .cursor-hover {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide custom cursor on mobile touch screens */
@media (pointer: coarse) {
  .custom-cursor-container {
    display: none !important;
  }
}

/* ==========================================================================
   Cinematic Motion Graphics & Video Overlay Package
   ========================================================================== */

/* 1. Looping Film Grain Overlay (Turbulence SVG Filter) */
.video-grain-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 99999;
  animation: grainNoise 8s steps(10) infinite;
}

@keyframes grainNoise {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -15%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0%); }
  70% { transform: translate(0%, 15%); }
  80% { transform: translate(3%, 15%); }
  90% { transform: translate(-10%, 10%); }
}

/* 2. VHS CRT Scanlines Overlay */
.video-scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.14) 50%
  );
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 99998;
  opacity: 0.28;
  transition: opacity 0.5s ease;
}

html.light-theme .video-scanlines {
  opacity: 0.06;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 50%, 
    rgba(0, 0, 0, 0.05) 50%
  );
  background-size: 100% 4px;
}

/* 3. Hero Animated Vector Motion Graphics background */
.hero-motion-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  opacity: 0.18;
  pointer-events: none;
}

html.light-theme .hero-motion-graphic {
  opacity: 0.08;
}

.hero-motion-graphic svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wave-path {
  transform-origin: center;
  animation: waveContour 24s ease-in-out infinite alternate;
}

.wave-1 {
  animation-duration: 20s;
}

.wave-2 {
  animation-duration: 28s;
}

.wave-3 {
  animation-duration: 18s;
}

@keyframes waveContour {
  0% { transform: scaleY(0.85) skewX(-1.5deg) translateY(0); }
  100% { transform: scaleY(1.15) skewX(1.5deg) translateY(12px); }
}

/* 4. Ken Burns Slow Zoom Loop for Lookbook Grid Images */
.gallery-img {
  animation: kenBurnsZoom 35s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes kenBurnsZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

/* ==========================================================================
   Dynamic Product Detail Page (PDP) Overlay Styles
   ========================================================================== */

body.pdp-open {
  overflow: hidden !important;
}

.pdp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

html.light-theme .pdp-overlay {
  background-color: rgba(255, 255, 255, 0.98);
}

.pdp-overlay.open {
  transform: translateY(0);
}

.pdp-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 80px 24px 60px;
  margin: 0 auto;
}

/* Close Button styling */
.pdp-close-btn {
  position: absolute;
  top: 30px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-border);
  background: transparent;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  z-index: 10;
}

.pdp-close-btn svg {
  width: 18px;
  height: 18px;
}

.pdp-close-btn:hover {
  border-color: var(--color-accent-white);
  color: var(--color-accent-white);
}

/* Split-screen layout grid */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* Left Column: Images stacking */
.pdp-images-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-main-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 0.95;
  background-color: #0b0b0d;
  border: 1px solid var(--color-accent-border);
  overflow: hidden;
  border-radius: 2px;
}

html.light-theme .pdp-main-image-wrapper {
  background-color: #f7f7f9;
}

.pdp-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* Secondary Thumbnail strip */
.pdp-thumbnails-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.pdp-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background-color: #0b0b0d;
  border: 1px solid var(--color-accent-border);
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.55;
  transition: border-color 0.2s, opacity 0.2s;
}

html.light-theme .pdp-thumb {
  background-color: #f7f7f9;
}

.pdp-thumb:hover, .pdp-thumb.active {
  opacity: 1;
  border-color: var(--color-text-primary);
}

/* Right Column: Spec details */
.pdp-details-column {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
}

.pdp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.pdp-category {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.pdp-stock-nudge {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: #ef4444;
  font-weight: 700;
  text-transform: uppercase;
}

.pdp-title {
  font-family: var(--font-headings);
  font-size: 2.00rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 8px 0;
  line-height: 1.1;
  color: var(--color-text-primary);
}

.pdp-price {
  font-family: var(--font-secondary);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.pdp-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-accent-border);
  margin-bottom: 24px;
}

.pdp-description {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

.pdp-options-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdp-option-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--color-text-primary);
}

/* Option selections */
.pdp-sizes-options {
  display: flex;
  gap: 10px;
}

.pdp-size-btn {
  width: 46px;
  height: 42px;
  border: 1px solid var(--color-accent-border);
  background: transparent;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

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

.pdp-size-btn.active {
  background-color: var(--color-text-primary);
  color: var(--color-bg-darkest);
  border-color: var(--color-text-primary);
}

.pdp-colors-options {
  display: flex;
  gap: 10px;
}

.pdp-color-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.2s;
}

html.light-theme .pdp-color-dot {
  border-color: rgba(0, 0, 0, 0.15);
}

.pdp-color-dot.active {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--color-text-primary);
}

/* Purchase Button */
.pdp-add-btn {
  background-color: var(--color-text-primary);
  color: var(--color-bg-darkest);
  border: 1px solid var(--color-text-primary);
  width: 100%;
  padding: 16px;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color 0.25s, color 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pdp-add-btn:hover {
  background-color: transparent;
  color: var(--color-text-primary);
}

/* Trust Badges */
.pdp-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--color-accent-border);
  padding-top: 20px;
}

.trust-badge-item {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .pdp-container {
    padding-top: 70px;
  }
  .pdp-close-btn {
    top: 20px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-details-column {
    position: static;
  }
  .pdp-title {
    font-size: 1.7rem;
  }
}
