﻿:root {
  --bg: #f6f2ed;
  --surface: #fffdfa;
  --surface-soft: #f4ede4;
  --ink: #181512;
  --muted: #6b645d;
  --line: #e2d8cd;
  --brand: #d76328;
  --brand-2: #ff8f4f;
  --shadow: 0 20px 60px rgba(84, 52, 26, 0.14);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 170, 120, 0.26), transparent 24%),
    radial-gradient(circle at 10% 20%, rgba(255, 210, 170, 0.35), transparent 30%),
    var(--bg);
}

body.page-enter {
  opacity: 0;
}

body.page-ready {
  opacity: 1;
  transition: opacity 0.36s ease;
}

body.page-leave {
  opacity: 0;
  transition: opacity 0.26s ease;
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }

.section-width { width: min(1180px, 92vw); margin-inline: auto; }
.section-block { margin-top: clamp(44px, 7vw, 88px); }

.announcement {
  overflow: hidden;
  white-space: nowrap;
  background: #120f0c;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ticker {
  display: inline-flex;
  gap: 46px;
  padding: 11px 0;
  animation: ticker 20s linear infinite;
  min-width: max-content;
}

.ticker span { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  margin: 14px auto 0;
  width: min(1180px, 92vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: var(--shadow);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 164, 105, 0.34), transparent 32%),
    radial-gradient(circle at 75% 75%, rgba(255, 212, 177, 0.26), transparent 35%),
    #120f0c;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 5vw, 54px);
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.loader-mark::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 8px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #ffb27f, transparent);
  animation: loadPulse 1.1s ease-in-out infinite;
}

@keyframes loadPulse {
  0%, 100% { transform: scaleX(0.45); opacity: 0.6; }
  50% { transform: scaleX(1); opacity: 1; }
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(18px, 2vw, 24px);
}

nav { display: flex; gap: 22px; align-items: center; }
nav a {
  font-weight: 600;
  color: var(--muted);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  transition: transform 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav a.active,
nav a:hover { color: var(--ink); }

.nav-logout {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 14px;
  font-weight: 700;
}

.hero {
  margin-top: clamp(28px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #934013;
}

.hero h1, .section-head h1, .section-head h2, .editorial h2, .newsletter h2, .legal h1, .contact-layout h1, .product-info h1, .immersive-wall h2 {
  font-family: 'Syne', sans-serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 10px 0;
}

.hero h1 { font-size: clamp(34px, 5.2vw, 64px); max-width: 11ch; }
.sub { color: var(--muted); font-size: clamp(15px, 1.9vw, 18px); max-width: 48ch; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(215, 99, 40, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(215, 99, 40, 0.35); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.hero-stats strong { display: block; font-family: 'Syne', sans-serif; font-size: 28px; }
.hero-stats span { color: var(--muted); font-size: 13px; }

.hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-visual img,
.hero-visual video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  pointer-events: none;
}

.orb-a {
  width: 170px;
  height: 170px;
  background: rgba(255, 201, 164, 0.48);
  top: -30px;
  right: -20px;
  animation: floatA 6s ease-in-out infinite;
}

.orb-b {
  width: 120px;
  height: 120px;
  background: rgba(255, 128, 71, 0.24);
  left: -30px;
  bottom: 40px;
  animation: floatB 7.5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-band article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.feature-band h3 { margin: 0 0 6px; font-family: 'Syne', sans-serif; }
.feature-band p { margin: 0; color: var(--muted); }

.immersive-wall {
  width: min(1280px, 96vw);
  margin-inline: auto;
  min-height: clamp(380px, 65vw, 560px);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  display: grid;
  align-content: space-between;
  padding: clamp(18px, 4vw, 36px);
  background:
    linear-gradient(115deg, rgba(17, 12, 9, 0.2), rgba(17, 12, 9, 0.5)),
    url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.glass-panel {
  width: min(560px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  background: rgba(255, 248, 241, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(14px, 3vw, 24px);
  color: #fff;
}

.glass-panel .sub { color: rgba(255, 255, 255, 0.88); }
.rotating-copy { margin-left: auto; }
.rotating-text {
  margin: 8px 0 0;
  min-height: 1.4em;
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
}

.flip-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flip-card {
  perspective: 1100px;
  min-height: 330px;
  border-radius: 20px;
  outline: none;
}

.flip-card-inner {
  height: 100%;
  position: relative;
  border-radius: 20px;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip-front {
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 30%, rgba(16, 12, 8, 0.75));
}

.flip-front span {
  position: relative;
  z-index: 1;
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  color: #fff;
}

.flip-back {
  transform: rotateY(180deg);
  display: grid;
  align-content: center;
  gap: 10px;
  background: linear-gradient(140deg, #201811, #3d2b1f);
  color: #fef6ee;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.flip-back h3 { margin: 0; font-family: 'Syne', sans-serif; font-size: 32px; }
.flip-back p { margin: 0; color: rgba(254, 246, 238, 0.86); }

.parallax-stack {
  width: min(1280px, 96vw);
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.parallax-block {
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  align-content: end;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.parallax-media {
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.parallax-block::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(16, 10, 7, 0.08), rgba(16, 10, 7, 0.62));
}

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

.section-head h1, .section-head h2 { margin: 0; font-size: clamp(30px, 5vw, 56px); }
.section-head a { color: #934013; font-weight: 700; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card.is-hidden {
  display: none;
}

.empty-state {
  margin: 20px 0 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
}

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.quick-view.open {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 8, 7, 0.58);
  backdrop-filter: blur(3px);
}

.quick-view-panel {
  position: relative;
  z-index: 1;
  width: min(880px, 92vw);
  margin: min(12vh, 70px) auto 0;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}

.quick-view.open .quick-view-panel {
  transform: translateY(0) scale(1);
}

.quick-view-image-wrap img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

.quick-view-media {
  display: grid;
  gap: 10px;
}

.quick-view-image-wrap {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.quick-view-image-wrap img {
  transition: transform 0.2s ease;
}

.quick-view-image-wrap.zoomed img {
  transform: scale(1.8);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.thumb-btn {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.thumb-btn img {
  height: 74px;
  object-fit: cover;
}

.thumb-btn.active {
  border-color: #1d1814;
}

.quick-view-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card.product-flip {
  position: relative;
  perspective: 1200px;
  min-height: 580px;
}

.product-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.product-card.flipped .product-card-inner {
  transform: rotateY(180deg);
}

.product-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

.product-face.back {
  transform: rotateY(180deg);
  padding: 16px;
  gap: 10px;
}

.product-face.back h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
}

.back-detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.back-detail-list li {
  margin-bottom: 5px;
}

.flip-card-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 12px;
}

.product-card img {
  aspect-ratio: 0.83;
  object-fit: cover;
}

.card-body { padding: 16px; }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wish-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  background: #fff;
  font-size: 18px;
  line-height: 1;
}

.wish-toggle.active {
  color: #fff;
  border-color: #1f1a16;
  background: #1f1a16;
}

.meta-line {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.stock-badge {
  margin: 0 0 10px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.stock-in {
  background: #d9f6e3;
  color: #13603a;
}

.stock-out {
  background: #ffe2de;
  color: #8a291f;
}
.card-actions {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.card-actions .btn {
  padding: 10px 14px;
  font-size: 14px;
}

.card-actions .btn-outline {
  border-color: var(--line);
}

.variant-group {
  margin: 10px 0;
}

.variant-group strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.variant-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.variant-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.variant-chip.active {
  background: #1d1814;
  color: #fff;
  border-color: #1d1814;
}

.variant-chip.out {
  opacity: 0.45;
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}
.tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: #fbe7d8;
  color: #82340e;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 10px;
}

.product-card h3 { margin: 0; font-family: 'Syne', sans-serif; font-size: 24px; }
.price { margin: 10px 0; font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); }
.product-card a { color: #934013; font-weight: 700; }

.lift {
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.cart-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(215, 99, 40, 0.36);
  cursor: pointer;
}

.wishlist-fab {
  position: fixed;
  right: 18px;
  bottom: 74px;
  z-index: 90;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: #1f1a16;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(20, 14, 10, 0.35);
  cursor: pointer;
}

.wishlist-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: var(--surface);
  z-index: 99;
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(-102%);
  transition: transform 0.28s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: #1c1713;
  color: #fff;
  font-size: 12px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 7, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 98;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: var(--surface);
  z-index: 99;
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(102%);
  transition: transform 0.28s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

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

.cart-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.cart-items {
  margin: 0;
  padding: 12px;
  list-style: none;
  overflow: auto;
  display: grid;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.qty-controls span {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

.cart-remove {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
}

.editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 34px);
  align-items: center;
  background: linear-gradient(135deg, #1b1713, #2e231a);
  color: #fef8f2;
  border-radius: 26px;
  padding: clamp(22px, 4vw, 40px);
}

.editorial img {
  border-radius: 18px;
  min-height: 320px;
  object-fit: cover;
}

.editorial h2 { font-size: clamp(28px, 4vw, 48px); margin-top: 8px; }
.editorial p { color: rgba(255, 245, 236, 0.84); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.testimonial-grid p { margin-top: 0; color: var(--muted); }

.newsletter {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff7f1, #f6e8dd);
  padding: clamp(22px, 4vw, 40px);
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.newsletter h2 { font-size: clamp(28px, 4vw, 50px); margin: 0; max-width: 18ch; }
.newsletter form {
  display: flex;
  width: min(540px, 100%);
  gap: 10px;
}

.newsletter input, .contact-form input, .contact-form textarea, .checkout-form input, .checkout-form textarea, .checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
  font: inherit;
  background: #fff;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 15px;
  font-weight: 700;
  color: var(--muted);
}

.chip.active {
  background: #1d1814;
  color: #fff;
  border-color: #1d1814;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid .product-main {
  grid-column: 1 / -1;
  min-height: 460px;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-grid img {
  border-radius: 14px;
  min-height: 170px;
  object-fit: cover;
}

.product-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.product-info h1 { font-size: clamp(32px, 4vw, 54px); margin-bottom: 8px; }
.specs { color: var(--muted); padding-left: 18px; margin: 18px 0 0; }
.specs li { margin-bottom: 6px; }

.swatches { display: flex; gap: 8px; margin: 14px 0; }
.swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  background: #d96b31;
}
.swatch:nth-child(2) { background: #2d4b66; }
.swatch:nth-child(3) { background: #817d63; }
.swatch.active { box-shadow: 0 0 0 2px #201a16; }

.size-row { display: flex; gap: 8px; margin-bottom: 16px; }

.legal {
  width: min(900px, 92vw);
  margin: clamp(34px, 5vw, 60px) auto;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(20px, 3.6vw, 36px);
  box-shadow: var(--shadow);
}

.legal h1 { font-size: clamp(30px, 4vw, 52px); margin-top: 0; }
.legal h3 { font-family: 'Syne', sans-serif; margin-bottom: 6px; }
.legal p { color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-cards article {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.contact-cards h3 { margin: 0 0 4px; font-family: 'Syne', sans-serif; }
.contact-cards p { margin: 0; color: var(--muted); }

.contact-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--surface);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.checkout-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 16px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.checkout-form textarea {
  min-height: 110px;
  resize: vertical;
}

.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 14px;
  height: fit-content;
}

.checkout-summary h3 {
  margin: 0 0 10px;
  font-family: 'Syne', sans-serif;
}

.checkout-total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.site-footer {
  margin-top: clamp(50px, 7vw, 90px);
  padding: clamp(26px, 4vw, 38px) 4vw;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  background: #1a1512;
  color: #f7eee5;
}

.site-footer h4 { font-family: 'Syne', sans-serif; margin: 0 0 10px; }
.site-footer p, .site-footer a { color: rgba(247, 238, 229, 0.76); margin: 7px 0; display: block; }
.site-footer a:hover { color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero,
  .editorial,
  .product-layout,
  .checkout-layout,
  .contact-layout,
  .feature-band,
  .flip-grid,
  .testimonial-grid,
  .product-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-visual { min-height: 380px; }
  .immersive-wall { min-height: 420px; }
  .parallax-block { min-height: 300px; }
  .rotating-copy { margin-left: 0; }
  .quick-view-panel { grid-template-columns: 1fr; margin-top: 40px; }
  .quick-view-panel img { min-height: 220px; }

  .menu-toggle { display: inline-block; }
  nav {
    display: none;
    position: absolute;
    top: 66px;
    right: 14px;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    min-width: 200px;
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
}

@media (max-width: 600px) {
  .section-width { width: min(1180px, 94vw); }
  .site-header { padding: 10px 12px; }
  .hero { margin-top: 20px; }
  .hero h1 { font-size: clamp(30px, 10vw, 42px); }
  .section-head h1, .section-head h2 { font-size: clamp(26px, 8vw, 34px); }
  .hero-visual { min-height: 300px; }
  .immersive-wall { min-height: 320px; padding: 14px; }
  .parallax-block { min-height: 260px; }
  .glass-panel { padding: 12px; }
  .flip-back p { font-size: 14px; }
  .site-footer { padding: 24px 5vw 30px; }
  .cart-fab { right: 12px; bottom: 12px; }
  .wishlist-fab { right: 12px; bottom: 66px; }
  .card-actions { flex-direction: column; }
  .newsletter form { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr; }
  .flip-card { min-height: 280px; }
  .flip-front span, .flip-back h3 { font-size: 28px; }
  .product-card.product-flip,
  .product-card-inner {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker,
  .orb-a,
  .orb-b {
    animation: none !important;
  }
  .reveal,
  .btn,
  .flip-card-inner,
  .lift {
    transition: none !important;
  }
}
