@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,500;0,700;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

@font-face {
  font-family: 'Suisse Intl Mono';
  src: url('suisse-intl-mono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Suisse Intl Mono';
  src: url('Suisse-Intl-Mono (2).ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Suisse Intl Mono';
  src: url('Suisse-Intl-Mono (3).ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Suisse Intl Mono';
  src: url('SuisseIntlMono-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Roboto Mono', monospace; background: #fff; color: #000; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ─── VARIABLES ─── */
:root {
  --header-h: 52px;
  --black: #000;
  --white: #fff;
  --gray: #6b6b6b;
  --gray-light: #dadada;
  --bg: #fafafa;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
}
.nav-left .sep { color: #ccc; }
.nav-left a:hover { opacity: 0.4; }

.site-logo {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s;
}
.site-logo:hover { opacity: 0.5; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
}
.nav-right a { transition: opacity 0.2s; }
.nav-right a:hover { opacity: 0.4; }
.nav-right .cart-btn svg { display: block; }

/* ─── HERO SLIDER ─── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: flex-end;
}
.hero-slide.active { opacity: 1; z-index: 2; }

/* top gradient — hides baked-in figma header */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
}

/* bottom gradient — readability for text */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  padding: 0 40px 64px;
  width: 100%;
}

.slide-meta-top {
  position: absolute;
  top: calc(var(--header-h) + 14px);
  left: 40px;
  z-index: 3;
  font-family: 'Roboto Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.19em;
  color: rgba(255,255,255,0.65);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.slide-watermark {
  position: absolute;
  right: 108px;
  bottom: 130px;
  z-index: 3;
  font-family: 'Roboto Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.19em;
  color: rgba(255,255,255,0.45);
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.slide-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
}

.slide-code {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
}

.slide-line {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
}

.shop-now-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  transition: background 0.22s, color 0.22s;
}
.shop-now-btn:hover { background: var(--white); color: var(--black); }

/* Slider arrows */
.slider-controls {
  position: absolute;
  bottom: 44px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 6px;
}

.slider-prev, .slider-next {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  width: 32px;
  height: 32px;
  font-size: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.slider-prev:hover, .slider-next:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 7px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active { background: var(--white); transform: scale(1.2); }

/* ─── LOGIN MODAL (blurred overlay) ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(14px) brightness(0.85);
  -webkit-backdrop-filter: blur(14px) brightness(0.85);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.login-modal {
  padding: 52px 44px;
  width: 340px;
  position: relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.modal-close:hover { color: var(--white); }

.login-form { display: flex; flex-direction: column; gap: 22px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: rgba(255,255,255,0.6);
  font-family: 'Roboto Mono', monospace;
}
.form-field input[type="email"],
.form-field input[type="password"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-size: 13px;
  padding: 7px 0;
  outline: none;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.19em;
}
.form-field input::placeholder { color: rgba(255,255,255,0.25); }

.login-submit {
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: 24px;
  padding: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 4px;
  transition: opacity 0.2s;
  font-family: 'Roboto Mono', monospace;
}
.login-submit:hover { opacity: 0.85; }

.form-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form-links a {
  font-size: 10px;
  letter-spacing: 0.19em;
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  font-family: 'Roboto Mono', monospace;
}
.form-links a:hover { color: var(--white); }

/* ─── SHOP PAGE ─── */
.shop-page { padding-top: var(--header-h); }

.yellow-line {
  height: 2px;
  background: var(--black);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px 0;
  font-size: 10px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Roboto Mono', monospace;
}

.filter-btn {
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: 0.19em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  font-family: 'Roboto Mono', monospace;
}
.filter-btn:hover { color: var(--black); }

.shop-title {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 20px 0 20px;
  font-family: 'Space Mono', monospace;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 16px 60px;
}

.product-card {
  padding: 12px;
  cursor: pointer;
}
.product-card:hover .product-img img { transform: scale(1.03); }

.product-img {
  aspect-ratio: 3/4;
  background: #f2f2f2;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #0d0d0d;
  font-family: 'Suisse Intl Mono', 'Roboto Mono', monospace;
}
.product-type {
  font-size: 10px;
  letter-spacing: 0.19em;
  color: var(--gray);
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: 'Suisse Intl Mono', 'Roboto Mono', monospace;
}
.product-price {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #0d0d0d;
  font-family: 'Roboto Mono', monospace;
}

/* ─── STAY TUNED ─── */
.stay-tuned {
  text-align: center;
  padding: 72px 24px 56px;
  border-top: 1px solid #e8e8e8;
}

.stay-tuned h2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Space Mono', monospace;
}

.stay-tuned > p {
  font-size: 11px;
  letter-spacing: 0.19em;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
  font-family: 'Roboto Mono', monospace;
}

.email-form {
  display: flex;
  max-width: 360px;
  margin: 0 auto 18px;
  border: 1px solid #ccc;
}
.email-form input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 11px;
  outline: none;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.19em;
}
.email-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 17px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.2s;
}
.email-form button:hover { background: #333; }

.email-disclaimer {
  font-size: 9.5px;
  color: var(--gray);
  max-width: 420px;
  margin: 0 auto;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.email-disclaimer a { text-decoration: underline; }

/* ─── FOOTER ─── */
.site-footer {
  padding: 48px 24px 24px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 44px;
}
.social-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.social-icons a:hover { opacity: 0.4; }
.social-icons svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.footer-copy {
  font-size: 8.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--gray);
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
  font-family: 'Roboto Mono', monospace;
}

/* ─── LOGIN PAGE (standalone) ─── */
.login-page {
  padding-top: var(--header-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

.login-page-card {
  background: #2d2d2d;
  border-radius: 20px;
  padding: 36px 32px 28px;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.login-page-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-page-field { display: flex; flex-direction: column; gap: 0; }
.login-page-field label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  color: #9a9a9a;
  font-family: 'Roboto Mono', monospace;
}
.login-page-field input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  font-size: 13px;
  padding: 8px 0;
  outline: none;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.19em;
  color: #fff;
}
.login-page-field input::placeholder { color: #555; }

.login-page-submit {
  background: #d5d5d5;
  color: #000;
  border: none;
  border-radius: 60px;
  padding: 15px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: opacity 0.2s;
  font-family: 'Roboto Mono', monospace;
  width: 100%;
}
.login-page-submit:hover { opacity: 0.8; }

.login-page-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.login-page-links a {
  font-size: 10px;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.19em;
  text-decoration: underline;
  color: #9a9a9a;
}
.login-page-links a:hover { opacity: 0.5; }

/* ─── MINI CART SIDEBAR ─── */
.mini-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1100;
}
.mini-cart-overlay.open { display: block; }

.mini-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 340px;
  background: #fff;
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  font-family: 'Roboto Mono', monospace;
}
.mini-cart.open { transform: translateX(0); }

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
}
.mini-cart-close {
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: #6b6b6b;
  font-family: 'Roboto Mono', monospace;
}
.mini-cart-close:hover { color: #000; }

.mini-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mini-cart-item-img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  background: #f5f5f5;
}
.mini-cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.mini-cart-item-name {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
}
.mini-cart-item-meta {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #6b6b6b;
  text-transform: uppercase;
}
.mini-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.mini-cart-qty-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #000;
  padding: 0 2px;
  line-height: 1;
}
.mini-cart-qty-val { font-size: 11px; min-width: 16px; text-align: center; }
.mini-cart-item-price { font-size: 11px; letter-spacing: 0.1em; white-space: nowrap; }

.mini-cart-empty {
  text-align: center;
  padding: 60px 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
  text-transform: uppercase;
}

.mini-cart-footer {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mini-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8e8e8;
}
.mini-cart-checkout {
  display: block;
  background: #434343;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 60px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: 'Roboto Mono', monospace;
  transition: opacity 0.2s;
}
.mini-cart-checkout:hover { opacity: 0.8; }
.mini-cart-continue {
  background: none;
  border: none;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #6b6b6b;
  text-decoration: underline;
  cursor: pointer;
  text-align: center;
  font-family: 'Roboto Mono', monospace;
}
.mini-cart-continue:hover { color: #000; }

/* ─── PRODUCT PAGE ─── */
.product-page {
  padding-top: var(--header-h);
  display: flex;
  min-height: 100vh;
}

.product-gallery {
  width: 55%;
  display: flex;
  gap: 10px;
  padding: 28px 20px 28px 28px;
  align-items: flex-start;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 68px;
  flex-shrink: 0;
}
.thumb {
  width: 68px;
  aspect-ratio: 2/3;
  background: #f0f0f0;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  transition: border-color 0.2s;
}
.thumb.active { border-color: var(--black); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.gallery-main {
  flex: 1;
  background: #f0f0f0;
  overflow: hidden;
  max-height: calc(100vh - var(--header-h) - 56px);
  aspect-ratio: 2/3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

/* Gallery dots (mobile) */
.gallery-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 0 4px;
}
.gallery-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c8c8c8;
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.gallery-dot.active { background: #000; transform: scale(1.25); }

/* Product installment & description */
.product-info-installment {
  font-size: 10px; letter-spacing: 0.15em; color: var(--gray);
  font-family: 'Roboto Mono', monospace; text-transform: uppercase;
}
.product-info-desc {
  font-size: 11px; letter-spacing: 0.08em; color: var(--gray);
  line-height: 1.75; font-family: 'Roboto Mono', monospace;
  display: none;
}

.product-info {
  width: 45%;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid #e8e8e8;
}

.product-info-name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: 'Space Mono', monospace;
}
.product-info-price { font-size: 14px; font-weight: 400; letter-spacing: 0.19em; font-family: 'Roboto Mono', monospace; }

.color-label, .size-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  font-family: 'Roboto Mono', monospace;
}

.color-swatches { display: flex; gap: 8px; }
.swatch {
  width: 44px; height: 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  outline: 1px solid transparent;
}
.swatch:hover { outline-color: #aaa; }
.swatch.active { border-color: var(--black); }
.swatch.black { background: #111; }
.swatch.white { background: #fff; outline: 1px solid #ccc; }
.swatch.gray  { background: #999; }

.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  height: 44px;
  min-width: 44px;
  padding: 0 18px;
  border: 1px solid var(--gray-light);
  background: none;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'Roboto Mono', monospace;
}
.size-btn:hover, .size-btn.active {
  background: #434343; color: var(--white); border-color: #434343;
}
.size-btn.out { opacity: 0.3; cursor: not-allowed; pointer-events: none; }

.size-guide {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  background: #434343;
  color: var(--white);
  border: none;
  border-radius: 60px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Roboto Mono', monospace;
}
.add-to-cart-btn:hover { opacity: 0.82; }

/* Accordion */
.accordion { border-top: 1px solid #e8e8e8; }
.accordion-item { border-bottom: 1px solid #e8e8e8; }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Roboto Mono', monospace;
}
.acc-icon { transition: transform 0.25s; display: inline-block; flex-shrink: 0; }
.accordion-item.open .acc-icon { transform: rotate(180deg); }
.accordion-content {
  font-size: 11px;
  line-height: 1.75;
  color: var(--gray);
  padding-bottom: 14px;
  display: none;
  font-family: 'Roboto Mono', monospace;
  letter-spacing: 0.1em;
}
.accordion-item.open .accordion-content { display: block; }

/* ─── MOBILE HAMBURGER ─── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #000;
  transition: transform 0.25s, opacity 0.2s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1490;
  display: none;
}
.mobile-nav-overlay.open { display: block; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: #fff;
  z-index: 1500;
  padding: 80px 32px 48px;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0d0d0d;
  padding: 18px 0;
  border-bottom: 1px solid #dadada;
}
.mobile-nav a:first-child { border-top: 1px solid #dadada; }
.mobile-nav a:hover { opacity: 0.5; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-left { display: none; }
  .mobile-menu-btn { display: none !important; }
  .nav-right { display: none; }
  .site-logo { position: relative; left: 0; transform: none; }
  .slide-title { font-size: 32px; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 8px 32px !important; }
  .product-card { padding: 8px; }
  body { padding-bottom: 56px; }
  .mobile-bottom-nav { display: flex; }
}

/* ─── MOBILE BOTTOM NAV ─── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  z-index: 1000;
  align-items: center;
  justify-content: space-around;
}
.mobile-bottom-item {
  background: none;
  border: none;
  padding: 8px 24px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}
.mobile-bottom-item svg { display: block; }

@media (max-width: 768px) {
  .product-page { flex-direction: column; }
  .product-gallery, .product-info { width: 100%; }
  .product-gallery { padding: 0; display: block; }
  .gallery-thumbs { display: none; }
  .gallery-main { max-height: none; aspect-ratio: 4/5; height: auto; }
  .gallery-dots { display: flex; }
  .product-info { padding: 24px 20px; border-left: none; border-top: 1px solid #dadada; text-align: center; }
  .color-swatches { justify-content: center; }
  .size-options { justify-content: center; }
  .size-btn { flex: 1; height: 48px; padding: 0 8px; }
  .product-info-desc { display: block; }
  .slide-content { padding: 0 20px 56px; }
  .slide-watermark { display: none; }
  .shop-title { font-size: 20px; }
  .add-to-cart-btn { padding: 16px; }
  .shop-now-btn {
    background: rgba(215,215,215,0.85);
    border-color: rgba(215,215,215,0.85);
    color: #000;
  }
  .stay-tuned { padding: 48px 16px 40px; }
  .stay-tuned > p { font-size: 10px; }
  .email-form { max-width: 100%; }
}

@media (max-width: 480px) {
  .site-logo { font-size: 12px; letter-spacing: 0.18em; }
  .nav-right { gap: 12px; }
  .hero-slider { height: 90vh; }
  .slide-title { font-size: 24px; }
  .slide-content { padding: 0 16px 48px; }
  .slider-controls { display: none; }
  .products-grid { gap: 0; }
  .product-card { padding: 6px 4px; }
  .product-name, .product-price { font-size: 10px; }
  .cart-main { padding-top: calc(var(--header-h) + 24px); }
}

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -7px; right: -9px;
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
