/* ==========================================================================
   AASCAARA 3D - Enhanced Stylesheet
   Three.js integration, 3D transforms, parallax effects, and immersive animations
   ========================================================================== */

:root {
  /* Core Colors */
  --ink: #111111;
  --grey-1: #4a4a4a;
  --grey-2: #767676;
  --grey-3: #a8a8a8;
  --line: #e4e2de;
  --line-strong: #111111;
  --bg: #ffffff;
  --bg-soft: #f5f4f1;
  --white: #ffffff;
  
  /* Accent Colors */
  --navy: #1f2f4d;
  --navy-dark: #152238;
  --navy-tint: #eef1f6;
  --ochre: #c98a3a;
  --ochre-dark: #a86f28;
  --ochre-tint: #faf3e8;
  
  /* Status Colors */
  --status-go: #2f6b4f;
  --status-go-bg: #eaf3ee;
  --status-attn: #a86f28;
  --status-attn-bg: #faf3e8;
  
  /* 3D Effect Colors */
  --glow-navy: rgba(31, 47, 77, 0.4);
  --glow-ochre: rgba(201, 138, 58, 0.4);
  --shadow-deep: rgba(17, 17, 17, 0.15);
  --shadow-3d: rgba(17, 17, 17, 0.25);
  
  /* Animation Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   3D Canvas Background
   ========================================================================== */

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
  25% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
  50% { transform: translateY(-20px) translateX(-10px); opacity: 0.3; }
  75% { transform: translateY(-40px) translateX(5px); opacity: 0.4; }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3 {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   Info Bar
   ========================================================================== */

.infobar {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 100;
}

.infobar-track {
  display: inline-flex;
  animation: scrollbar 26s linear infinite;
}

.infobar-track span {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 28px;
}

.infobar-track span::after {
  content: "•";
  margin-left: 28px;
  color: var(--grey-3);
}

@keyframes scrollbar {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

/* ==========================================================================
   Navigation - 3D Enhanced
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease-out-expo);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.logo-text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s var(--ease-out-expo);
}

.logo:hover .logo-text {
  transform: translateY(-2px);
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 150%;
  background: radial-gradient(ellipse, var(--glow-navy) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.logo:hover .logo-glow {
  opacity: 1;
}

.navlinks {
  display: flex;
  gap: 36px;
  align-items: center;
}

.navlinks a {
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width 0.3s var(--ease-out-expo);
}

.navlinks a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 18px;
  border: 1px solid var(--navy) !important;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--glow-navy);
}

.cart-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  padding: 9px 16px;
  background: none;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease-out-expo);
}

.cart-pill:hover {
  background: var(--ink);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cart-count {
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-pill:hover .cart-count {
  background: var(--white);
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
}

.lang-btn {
  background: var(--white);
  color: var(--grey-2);
  border: none;
  padding: 8px 12px;
  font-size: 11.5px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}

.lang-btn.active {
  background: var(--ink);
  color: var(--white);
}

.lang-btn:not(.active):hover {
  background: var(--bg-soft);
  color: var(--ink);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 24px;
  transition: transform 0.3s ease;
}

.burger:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   Hero Section - 3D Enhanced
   ========================================================================== */

.hero {
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 560px;
}

/* 3D Product Scene */
.hero-3d-scene {
  position: relative;
  background: linear-gradient(135deg, #f8f7f5 0%, #e8e6e3 50%, #f0eeeb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
}

.hero-3d-product {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-3d-wrapper {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d;
  animation: product-float 6s ease-in-out infinite;
}

@keyframes product-float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-10px) rotateY(5deg); }
  50% { transform: translateY(0) rotateY(0deg); }
  75% { transform: translateY(-10px) rotateY(-5deg); }
}

/* 3D Suit Construction */
.suit-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo);
}

.suit-jacket {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 220px;
  transform-style: preserve-3d;
}

.jacket-front {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #2c3440 0%, #1f2f4d 50%, #152238 100%);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 
    inset 0 2px 4px rgba(255,255,255,0.1),
    inset 0 -2px 4px rgba(0,0,0,0.2),
    0 20px 40px rgba(31, 47, 77, 0.3);
}

.jacket-collar {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 30px;
  background: linear-gradient(180deg, #1f2f4d 0%, #152238 100%);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.jacket-lapel-left,
.jacket-lapel-right {
  position: absolute;
  top: 20px;
  width: 40px;
  height: 120px;
  background: linear-gradient(145deg, #3a4560 0%, #2c3440 100%);
  border-radius: 2px;
}

.jacket-lapel-left {
  left: 20px;
  transform: skewX(-8deg);
}

.jacket-lapel-right {
  right: 20px;
  transform: skewX(8deg);
}

.jacket-buttons {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jacket-buttons span {
  width: 12px;
  height: 12px;
  background: linear-gradient(145deg, #c98a3a 0%, #a86f28 100%);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.suit-pants {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 180px;
  transform-style: preserve-3d;
}

.pants-front {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2c3440 0%, #1f2f4d 50%, #152238 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 
    inset 0 2px 4px rgba(255,255,255,0.05),
    0 15px 30px rgba(31, 47, 77, 0.25);
}

.pants-crease-left,
.pants-crease-right {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.pants-crease-left { left: 35%; }
.pants-crease-right { right: 35%; }

.product-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadow-pulse 6s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(0.9); opacity: 0.8; }
}

.product-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 47, 77, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* 3D Controls */
.hero-3d-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.3d-control-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.3d-control-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--glow-navy);
}

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-2);
  margin-bottom: 20px;
}

.hero-title-3d {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  margin-bottom: 22px;
  position: relative;
}

.hero-title-3d::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--ochre));
  border-radius: 2px;
}

.hero p {
  color: var(--grey-1);
  font-size: 15.5px;
  max-width: 420px;
  margin-bottom: 14px;
}

.moq-line {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 20px 0 32px;
}

.moq-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  padding-top: 8px;
  transition: all 0.3s ease;
}

.moq-item:hover {
  transform: translateY(-2px);
}

.moq-item b {
  display: block;
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

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

/* 3D Buttons */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s var(--ease-out-expo);
  border: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.btn-3d {
  transform-style: preserve-3d;
  perspective: 500px;
}

.btn-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-3d:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--glow-navy);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-num {
  display: block;
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.1;
  position: relative;
}

.stat-num::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.4s var(--ease-out-expo);
}

.stat-item:hover .stat-num::after {
  width: 100%;
}

.stat-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-2);
  margin-top: 4px;
}

/* ==========================================================================
   Sections - 3D Enhanced
   ========================================================================== */

section {
  padding: 80px 0;
  position: relative;
}

.section-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-2);
  margin-bottom: 12px;
  display: block;
}

.section-desc {
  max-width: 380px;
  color: var(--grey-1);
  font-size: 14.5px;
}

/* ==========================================================================
   Order Paths - 3D Cards
   ========================================================================== */

.order-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  transform-style: preserve-3d;
}

.path-card {
  background: var(--white);
  padding: 36px;
  transition: all 0.4s var(--ease-out-expo);
  transform-style: preserve-3d;
}

.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.card-3d:hover {
  transform: translateY(-8px) translateZ(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.path-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-2);
  margin-bottom: 12px;
}

.path-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.path-card p {
  color: var(--grey-1);
  font-size: 14px;
  margin-bottom: 20px;
}

.path-list {
  list-style: none;
  margin-bottom: 24px;
}

.path-list li {
  font-size: 13px;
  color: var(--grey-1);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  transition: all 0.3s ease;
}

.path-list li:first-child {
  border-top: none;
}

.path-list li:hover {
  padding-left: 8px;
  color: var(--ink);
}

.path-list li b {
  color: var(--ink);
}

/* ==========================================================================
   Catalog - 3D Enhanced
   ========================================================================== */

.catalog-divider {
  height: 1px;
  background: var(--line);
}

#catalog-wholesale {
  background: var(--bg-soft);
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 28px;
}

.search-input {
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  padding: 0 0 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink);
  width: 220px;
  margin-bottom: -1px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-bottom-color: var(--navy);
  width: 260px;
}

.search-input::placeholder {
  color: var(--grey-3);
}

.filter-btn {
  background: none;
  border: none;
  padding: 0 0 14px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-2);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.3s ease;
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.3s var(--ease-out-expo);
}

.filter-btn:hover {
  color: var(--navy);
}

.filter-btn.active {
  color: var(--navy);
}

.filter-btn.active::after {
  width: 100%;
}

.filter-formal.active {
  color: var(--navy);
}

.filter-casual.active {
  color: var(--ochre-dark);
}

/* Product Grids */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px 24px;
}

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

/* 3D Product Cards */
.featured-card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out-expo);
}

.featured-card:hover {
  transform: translateY(-10px) translateZ(30px);
}

.featured-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(165deg, #f2f1ed 0%, #e3e0d8 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 16px;
  perspective: 700px;
  border-radius: 8px;
  transition: all 0.4s var(--ease-out-expo);
}

.featured-visual:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-visual .fig,
.featured-visual img {
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo);
}

.featured-visual:hover .fig,
.featured-visual:hover img {
  transform: scale(1.05) rotateY(5deg);
}

.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.featured-body h3 {
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.featured-body .price {
  font-size: 15px;
}

/* Swatch Cards */
.swatch-card {
  background: var(--white);
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.4s var(--ease-out-expo);
}

.swatch-card:hover {
  transform: translateY(-8px) translateZ(20px);
}

.swatch-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(165deg, #f2f1ed 0%, #e3e0d8 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 14px;
  perspective: 700px;
  border-radius: 8px;
  transition: all 0.4s var(--ease-out-expo);
}

.swatch-visual:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.swatch-visual .fig {
  width: 56%;
  height: 74%;
  position: absolute;
  top: 13%;
  left: 22%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo);
}

.swatch-visual:hover .fig {
  transform: rotateY(15deg) scale(1.05);
}

.fig .coat {
  position: absolute;
  top: 0;
  left: 8px;
  width: 60%;
  height: 58%;
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.fig .pant {
  position: absolute;
  top: 54%;
  left: 16%;
  width: 46%;
  height: 44%;
  border-radius: 1px;
  background: #2a2a2a;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.swatch-fig-1 .coat { background: linear-gradient(145deg, #3a4560, #2c3440); }
.swatch-fig-2 .coat { background: linear-gradient(145deg, #6a3540, #4a2530); }
.swatch-fig-3 .coat { background: linear-gradient(145deg, #5c5a55, #3c3a35); }
.swatch-fig-4 .coat { background: linear-gradient(145deg, #7b6a54, #5b4a34); }
.swatch-fig-5 .coat { background: linear-gradient(145deg, #30343a, #20242a); }
.swatch-fig-6 .coat { background: linear-gradient(145deg, #6a6058, #4a4038); }
.swatch-fig-7 .coat { background: linear-gradient(145deg, #8b9a7e, #6b7a5e); }
.swatch-fig-8 .coat { background: linear-gradient(145deg, #aa8a6a, #8a6a4a); }
.swatch-fig-9 .coat { background: linear-gradient(145deg, #6a7588, #4a5568); }
.swatch-fig-10 .coat { background: linear-gradient(145deg, #9a7c5e, #7a5c3e); }

.quick-add {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--white);
  border: 1px solid var(--ink);
  padding: 11px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 6px;
}

.swatch-card:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.swatch-body {
  padding: 0 2px 30px;
}

.swatch-body h3 {
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.swatch-meta {
  font-size: 12px;
  color: var(--grey-2);
  margin-bottom: 8px;
}

.price {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.swatch-moq {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.moq-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 2px;
}

.moq-chip.attn {
  background: var(--status-attn-bg);
  color: var(--status-attn);
}

.moq-chip.go {
  background: var(--status-go-bg);
  color: var(--status-go);
}

/* ==========================================================================
   Craftsmanship - 3D Enhanced
   ========================================================================== */

.craft {
  background: var(--bg-soft);
  position: relative;
}

.craft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fabric-list {
  list-style: none;
}

.fabric-item-3d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: all 0.3s var(--ease-out-expo);
  transform-style: preserve-3d;
}

.fabric-item-3d:first-child {
  border-top: 1px solid var(--line);
}

.fabric-item-3d:hover {
  transform: translateX(10px) translateZ(10px);
  background: rgba(255, 255, 255, 0.5);
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 -15px;
  border-radius: 8px;
}

.fabric-name {
  font-size: 15px;
  font-weight: 500;
}

.fabric-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}

.fabric-pct {
  font-family: 'Archivo Expanded', serif;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.fabric-item-3d:hover .fabric-pct {
  transform: scale(1.1);
}

.craft-note {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  font-size: 14px;
  color: var(--grey-1);
  border-radius: 8px;
}

.craft-note strong {
  color: var(--ink);
  display: block;
  margin-bottom: 10px;
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Reviews - 3D Cards
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  transform-style: preserve-3d;
}

.review-card {
  background: var(--white);
  padding: 28px;
  transition: all 0.4s var(--ease-out-expo);
}

.review-card:hover {
  transform: translateY(-6px) translateZ(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--ochre);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 14px;
  color: var(--grey-1);
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
}

.review-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-2);
  margin-top: 2px;
}

/* ==========================================================================
   Contact - 3D Enhanced
   ========================================================================== */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--grey-1);
  margin-bottom: 30px;
  max-width: 400px;
  font-size: 14.5px;
}

.contact-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  transition: all 0.3s ease;
}

.contact-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.contact-row:hover {
  padding-left: 10px;
  background: rgba(31, 47, 77, 0.03);
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
}

.contact-row h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-2);
  margin-bottom: 5px;
}

.contact-row span {
  font-size: 14px;
}

.whatsapp-btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 22px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 6px;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* 3D Form */
form {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  transition: all 0.4s var(--ease-out-expo);
}

.form-3d {
  transform-style: preserve-3d;
}

.form-3d:focus-within {
  transform: translateY(-5px) translateZ(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

.form-row label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-2);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(31, 47, 77, 0.1);
  transform: translateY(-1px);
}

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

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 15px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--navy);
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 6px;
}

.submit-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--glow-navy);
}

.consent-row {
  margin-bottom: 16px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--grey-1);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.consent-label input {
  margin-top: 2px;
  flex: none;
}

.consent-label a {
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
}

.form-note {
  font-size: 11.5px;
  color: var(--grey-2);
  margin-top: 12px;
  text-align: center;
}

.form-success {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px;
  font-size: 13px;
  margin-top: 16px;
  border-radius: 6px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: var(--ink);
  color: #c9c7c2;
  padding: 60px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--ochre), var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-grid p {
  font-size: 13px;
  color: #9c9a94;
  max-width: 260px;
}

.footer-col h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9c7c2;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #9c9a94;
  margin-bottom: 11px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #77756f;
  border-top: 1px solid #333230;
}

/* ==========================================================================
   Cart Drawer - 3D Enhanced
   ========================================================================== */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
  transition: right 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

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

.cart-head h3 {
  font-size: 15px;
}

.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cart-close:hover {
  transform: rotate(90deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 24px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(31, 47, 77, 0.03);
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--grey-2);
  margin-top: 2px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--grey-2);
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  color: #c44;
}

.cart-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--grey-2);
  font-size: 13px;
}

.cart-foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
}

.cart-foot-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  padding: 14px;
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 6px;
}

.cart-foot-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--glow-navy);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
  backdrop-filter: blur(5px);
  z-index: 90;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  display: block;
  opacity: 1;
}

/* ==========================================================================
   Product Modal - 3D Enhanced
   ========================================================================== */

.qty-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qty-input {
  width: 60px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  border-radius: 4px;
}

.add-btn {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  padding: 11px 12px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  border-radius: 4px;
}

.add-btn:hover {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px var(--glow-navy);
}

.add-btn.added {
  background: var(--status-go);
  color: var(--white);
  border-color: var(--status-go);
}

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(8px);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-modal-overlay.open {
  display: flex;
  opacity: 1;
}

.product-modal {
  background: var(--white);
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
}

.product-modal-overlay.open .product-modal {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  font-size: 18px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.product-modal-close:hover {
  background: var(--ink);
  color: var(--white);
  transform: rotate(90deg);
}

.viewer360 {
  background: linear-gradient(165deg, #f2f1ed 0%, #e3e0d8 100%);
  position: relative;
  min-height: 340px;
  overflow: hidden;
  perspective: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewer360-stage {
  width: 52%;
  height: 70%;
  position: relative;
  cursor: grab;
  transform-style: preserve-3d;
  transition: transform 0.05s linear;
  touch-action: pan-y;
}

.viewer360.dragging .viewer360-stage {
  cursor: grabbing;
  transition: none;
}

.viewer360-stage .fig {
  width: 100%;
  height: 100%;
  position: static;
}

.viewer360-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  border-radius: 8px;
}

.viewer360-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-2);
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.product-modal-body {
  padding: 34px 30px;
}

.product-modal-ticket {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-2);
  margin-bottom: 8px;
}

.product-modal-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: none;
  font-family: 'Archivo Expanded', sans-serif;
}

.product-modal-meta {
  font-size: 13.5px;
  color: var(--grey-1);
  margin-bottom: 16px;
}

.product-modal-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-modal-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 4px;
}

.product-modal-tag.attn {
  background: var(--status-attn-bg);
  color: var(--status-attn);
}

.product-modal-tag.go {
  background: var(--status-go-bg);
  color: var(--status-go);
}

.product-modal-table {
  width: 100%;
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 18px;
}

.product-modal-table td {
  padding: 7px 0;
}

.product-modal-table td:first-child {
  color: var(--grey-2);
}

.product-modal-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.product-modal-price {
  font-family: 'Archivo Expanded', sans-serif;
  font-size: 22px;
  margin-bottom: 16px;
}

.product-modal-price small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--grey-2);
  font-weight: 400;
  text-transform: none;
}

.product-modal-actions {
  display: flex;
  gap: 10px;
}

.product-modal-actions .qty-input {
  width: 64px;
}

.product-modal-actions .add-btn {
  flex: 1;
  padding: 12px;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.reveal-init {
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Stagger delays for grid items */
[data-reveal-index="0"] { transition-delay: 0ms; }
[data-reveal-index="1"] { transition-delay: 100ms; }
[data-reveal-index="2"] { transition-delay: 200ms; }
[data-reveal-index="3"] { transition-delay: 300ms; }
[data-reveal-index="4"] { transition-delay: 400ms; }
[data-reveal-index="5"] { transition-delay: 500ms; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-3d-scene {
    aspect-ratio: 4/3;
    min-height: 400px;
  }
  
  .hero-text {
    padding: 44px 32px;
  }
  
  .product-3d-wrapper {
    transform: scale(0.8);
  }
  
  .navlinks {
    display: none;
  }
  
  .burger {
    display: block;
  }
  
  .order-paths {
    grid-template-columns: 1fr;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .craft-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .contact {
    grid-template-columns: 1fr;
  }
  
  .form-two {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cart-drawer {
    width: 88%;
    right: -100%;
  }
  
  .product-modal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2px 14px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .wrap {
    padding: 0 20px;
  }
  
  .hero-3d-controls {
    bottom: 10px;
    right: 10px;
  }
  
  .3d-control-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .product-3d-wrapper {
    animation: none;
  }
  
  .particle {
    animation: none;
  }
}

/* ==========================================================================
   Loading Animation
   ========================================================================== */

.page-loading {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--line);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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