:root {
  --bg: #09090b;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --accent: #e4e4e7;
  --border: #27272a;
  --primary: #fafafa;
  --primary-text: #09090b;
  --success: #86efac;
  --warn: #fbbf24;
  --danger: #fca5a5;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

body.no-scroll { overflow: hidden; }

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

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

button, input, textarea, select { font: inherit; }

.promo-banner {
  background: linear-gradient(90deg, #18181b, #27272a);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header.scrolled { border-bottom-color: var(--border); }

.logo {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span { color: var(--muted); }

.nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

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

.nav a.active { font-weight: 600; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
}

.search-wrap input {
  border: none;
  background: transparent;
  color: var(--text);
  width: 120px;
  outline: none;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  padding: 0 10px;
  flex-shrink: 0;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.97);
  backdrop-filter: blur(12px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: grid;
  gap: 0.25rem;
  padding: 5.5rem 1.5rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-nav a {
  padding: 0.75rem 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-text);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.cart-count.is-empty { display: none; }

.cart-count.pulse { animation: pulse 0.35s ease; }

@keyframes pulse {
  50% { transform: scale(1.2); }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-stats div { display: grid; gap: 0.15rem; }
.hero-stats strong { font-size: 1.1rem; }
.hero-stats span { color: var(--muted); font-size: 0.85rem; }

.hero-visual { position: relative; }

.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.35rem;
}

.hero-shop-btn { justify-self: start; margin-top: 0.25rem; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.75);
  color: var(--text);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.hero-arrow.prev { left: 0.75rem; }
.hero-arrow.next { right: 0.75rem; }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active { background: var(--primary); width: 24px; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  margin: 1rem calc(50% - 50vw) 2rem;
  width: 100vw;
  max-width: 100vw;
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  min-height: 240px;
  cursor: pointer;
  transition: transform 0.25s ease;
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover { transform: translateY(-3px); }

.category-card:hover img { transform: scale(1.06); }

.category-card div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.category-card h3 { margin: 0; }
.category-card p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.9rem; }

.shop { margin-top: 1rem; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section-head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2rem); }

.lookbook .section-head {
  align-items: flex-start;
}

.lookbook-sub {
  max-width: 280px;
  text-align: right;
}

.section-sub {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.shop-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.sort-select {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-btn {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--primary-text);
  background: var(--primary);
  border-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.skeleton-grid {
  display: contents;
}

.skeleton-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
}

.skeleton-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(90deg, var(--surface-2), #252528, var(--surface-2));
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
}

.skeleton-line {
  height: 14px;
  margin: 1rem 1rem 0.5rem;
  border-radius: 4px;
  background: var(--surface-2);
  animation: shimmer 1.2s infinite;
}

.skeleton-line.short { width: 40%; margin-bottom: 1rem; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.product-card:hover .product-overlay {
  opacity: 1;
  transform: none;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.92);
  color: var(--primary-text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 1;
}

.product-badge.inline { position: static; display: inline-block; }

.product-body {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: start;
}

.product-meta h3 { margin: 0; font-size: 1rem; }
.product-meta p { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.85rem; }

.price { font-weight: 700; white-space: nowrap; }
.price.lg { font-size: 1.35rem; }

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}

.size-select {
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 2rem 0;
  grid-column: 1 / -1;
}

.lookbook { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); }

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 0.85rem;
}

.lookbook-item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
}

.lookbook-item.tall { grid-row: span 2; }

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lookbook-item:hover img { transform: scale(1.04); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

.quote-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.quote-card p { margin: 0 0 0.75rem; font-size: 0.95rem; }
.quote-card footer { color: var(--muted); font-size: 0.85rem; }

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  align-items: center;
}

.about-card h2 { margin-top: 0; }
.about-card p { color: var(--muted); }

.about-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.newsletter {
  margin-top: 4rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--surface), #101012);
  display: grid;
  gap: 1rem;
}

.newsletter h2 { margin: 0.25rem 0; }
.newsletter p { margin: 0; color: var(--muted); }

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  max-width: 480px;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}

.contact {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.contact h2 { margin-top: 0; }
.contact > p { color: var(--muted); max-width: 680px; }

.contact form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
  margin-top: 1.5rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-status, .cart-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  margin: 0;
}

.form-status.ok, .cart-status.ok { color: var(--success); }
.form-status.err, .cart-status.err { color: var(--danger); }

.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-grid p { color: var(--muted); font-size: 0.9rem; margin: 0.5rem 0 0; }

.footer-grid h4 {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-grid a {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.footer-copy {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 50;
}

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

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

.cart-header, .cart-footer {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.cart-footer { border-bottom: 0; border-top: 1px solid var(--border); }

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

.cart-header h2 { margin: 0; font-size: 1.2rem; }

.shipping-bar-wrap {
  height: 4px;
  background: var(--bg);
}

.shipping-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #86efac, #fafafa);
  transition: width 0.35s ease;
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  overflow: auto;
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.cart-item img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  border-radius: 0.65rem;
}

.cart-item h4 { margin: 0 0 0.15rem; font-size: 0.95rem; }
.cart-item p { margin: 0; color: var(--muted); font-size: 0.82rem; }

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
}

.icon-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.cart-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0;
  line-height: 1.7;
}

.link { color: var(--text); text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.btn.primary {
  background: var(--primary);
  color: var(--primary-text);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn.small { padding: 0.7rem 1rem; font-size: 0.85rem; }
.btn.full { width: 100%; }

.product-modal {
  width: min(920px, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0;
  background: var(--surface);
  color: var(--text);
  position: relative;
}

.product-modal::backdrop { background: rgba(0, 0, 0, 0.65); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-gallery { background: var(--surface-2); }

.modal-gallery > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.modal-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
}

.modal-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.modal-thumb.active { border-color: var(--primary); }

.modal-thumb img {
  width: 56px;
  height: 70px;
  object-fit: cover;
  display: block;
}

.modal-info {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.modal-info h2 { margin: 0; }
.modal-info p { margin: 0; color: var(--muted); }

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--primary);
  color: var(--primary-text);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 80;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  pointer-events: none;
}

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

.page-center {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.status-card {
  max-width: 480px;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
}

.status-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.status-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-weight: 800;
}

.status-icon.ok { background: rgba(134, 239, 172, 0.15); color: var(--success); }
.status-icon.warn { background: rgba(251, 191, 36, 0.15); color: var(--warn); }

.track-card { max-width: 560px; text-align: left; }
.track-form { display: grid; gap: 1rem; margin: 1.25rem 0; text-align: left; }
.track-items { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: 0.5rem; color: var(--muted); }
.track-shipping { color: var(--success); margin: 0.5rem 0 1rem; }
.order-summary { text-align: left; margin: 1.25rem 0; }
.order-summary ul { padding-left: 1.1rem; color: var(--muted); }

.product-card.sold-out { opacity: 0.72; }
.product-badge.sold-out-badge { background: rgba(252, 165, 165, 0.92); color: #450a0a; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

@media (max-width: 900px) {
  .nav, .search-wrap { display: none; }
  .menu-btn { display: flex; }
  .hero, .about, .modal-body { grid-template-columns: 1fr; }
  .categories, .testimonials, .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-item.tall { grid-row: span 1; }
  .lookbook-sub { text-align: left; max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-controls { align-items: stretch; }
  .filters { justify-content: flex-start; }
  .product-overlay { opacity: 1; transform: none; }
  .section-head { align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero { padding-top: 1rem; }
  .product-actions { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
  .hero-stats { gap: 1rem; }
  .search-wrap input { width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal:not(.visible), .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-track { animation: none; }
}

.guide-page {
  max-width: 720px;
  margin: 6rem auto 4rem;
  padding: 0 1.25rem;
}

.guide-page article {
  margin: 2rem 0;
  color: var(--muted);
  line-height: 1.7;
}

.guide-page h2 {
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}

.faq {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1.25rem;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.share-row span {
  color: var(--muted);
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
