/* ============================================================
   Hand2Hard — Main Stylesheet
   Mobile-first, brand-compliant
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0c0c0d;
  --bg-secondary: #1c1c1e;
  --bg-card: #2e2e30;
  --bg-card-hover: #414143;
  --text-primary: #dfdfdf;
  --text-muted: #888;
  --accent: #f5f301;
  --accent-dark: #c4c200;
  --border: #2e2e30;
  --border-light: #414143;
  --danger: #e53935;
  --success: #43a047;

  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-sub: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.2s ease;

  --nav-height: 64px;
  --announcement-height: 36px;
  --max-width: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.accent { color: var(--accent); }
.text-muted { color: var(--text-muted); font-size: 0.85rem; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: var(--announcement-height); left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(12, 12, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  filter: none;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
}
.nav__links {
  display: none;
  gap: 32px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover { color: var(--accent); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switcher {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3px;
}
.lang-btn {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  color: var(--text-muted);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: var(--accent);
  color: #000;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 20px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); }
.cart-btn svg { width: 16px; height: 16px; }
.cart-count {
  background: var(--accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -6px; right: -6px;
  display: none;
}
.cart-count.visible { display: flex; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: rgba(12,12,13,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav__link {
  font-size: 2rem;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .hamburger { display: none; }
  .hero {
    height: min(80vh, 620px);
  }
  .hero__bg {
    object-fit: contain;
    object-position: center 60%;
  }
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-content {
  margin-top: calc(var(--nav-height) + var(--announcement-height));
  min-height: calc(100vh - var(--nav-height) - var(--announcement-height));
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: min(65vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-secondary);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.4);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary) 0%, rgba(12,12,13,0.3) 50%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 20px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero__badge::before {
  content: '';
  width: 8px; height: 8px;
  background: #000;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero__title .drop-letter {
  color: var(--accent);
  font-size: 1.15em;
}
.hero__subtitle {
  font-size: 1rem;
  color: #aaa;
  max-width: 500px;
  margin-bottom: 24px;
}
.hero__units {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 8px 18px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.hero__cta:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hero__cta svg { width: 18px; height: 18px; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section { padding: 64px 0; }
.section--dark { background: var(--bg-secondary); }
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}
.section__title .drop-letter { color: var(--accent); font-size: 1.1em; }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245,243,1,0.12);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-card__img-back {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-card__img { opacity: 0; }
.product-card:hover .product-card__img-back { opacity: 1; }
.product-card__img-back.touched {
  opacity: 1;
  transition: opacity 0s;
}
.product-card:has(.product-card__img-back.touched) .product-card__img {
  opacity: 0;
  transition: opacity 0s;
}
.product-card__img-back.flash {
  animation: cardFlash 0.4s ease;
}
@keyframes cardFlash {
  0% { filter: brightness(3); }
  100% { filter: brightness(1); }
}

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 12px;
}
.product-card__body {
  padding: 18px 20px 20px;
}
.product-card__design {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 6px;
}
.product-card__garments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.garment-tag {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 3px 9px;
  border-radius: 10px;
  color: var(--text-muted);
}
.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-from {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.price-amount {
  font-family: var(--font-sub);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.price-shipping {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}
.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:disabled {
  background: var(--border-light);
  color: var(--text-muted);
  cursor: not-allowed;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: underline;
  cursor: pointer;
  border: none;
  padding: 4px;
}
.btn-ghost:hover { color: var(--text-primary); }

/* ============================================================
   PRODUCT MODAL / DETAIL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border);
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); }

.modal__inner {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}
.modal__gallery {
  position: relative;
  aspect-ratio: 3/4;
  background: #111;
  overflow: hidden;
}
.modal__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.modal__img-back {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
}
.modal__img-toggle {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.img-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.img-dot.active { background: var(--accent); }
.modal__gallery.show-back .modal__img { opacity: 0; }
.modal__gallery.show-back .modal__img-back { opacity: 1; }
.modal__gallery.show-back .img-dot:nth-child(1) { background: rgba(255,255,255,0.3); }
.modal__gallery.show-back .img-dot:nth-child(2) { background: var(--accent); }

.modal__details {
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.modal__design-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}
.modal__drop-label {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}
.modal__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.modal__price {
  font-family: var(--font-sub);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.modal__price-shipping {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.form-select, .form-input, .form-textarea {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-select:focus, .form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.oversize-note {
  font-size: 0.82rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.oversize-note::before {
  content: 'ⓘ';
  font-size: 0.9rem;
}
.size-guide-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 4px;
  display: inline-block;
}
.size-guide-link:hover { color: var(--accent); }

.modal__add-btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: var(--radius);
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 20px;
  }
  .modal {
    border-radius: var(--radius-lg);
    max-height: 88vh;
  }
  .modal-overlay.open .modal {
    transform: translateY(0);
  }
  .modal__inner {
    grid-template-columns: 1fr 1fr;
  }
  .modal__gallery-wrap {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    max-height: 75vh;
  }
  .modal__gallery {
    aspect-ratio: 3/4;
  }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-close {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cart-close:hover { border-color: var(--accent); color: var(--accent); }

.cart-drawer__scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cart-drawer__body {
  padding: 20px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  color: var(--text-muted);
  text-align: center;
}
.cart-empty svg { width: 48px; height: 48px; opacity: 0.3; }

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #111;
}
.cart-item__info {}
.cart-item__name {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cart-item__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cart-item__price {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  white-space: nowrap;
}
.cart-item__remove {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.cart-item__remove:hover { color: var(--danger); }

.cart-oversize-reminder {
  background: rgba(245,243,1,0.08);
  border: 1px solid rgba(245,243,1,0.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.78rem;
  color: var(--accent);
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.cart-summary-row.discount { color: var(--success); }
.cart-summary-row.total {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 2px;
}
.cart-summary-row.total span:last-child { color: var(--accent); }

.shipping-selector {
  display: flex;
  gap: 8px;
}
.shipping-option {
  flex: 1;
  padding: 8px 10px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.shipping-option.selected {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245,243,1,0.07);
}

.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  font-size: 0.95rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cart-checkout-btn svg { width: 18px; height: 18px; }

/* ============================================================
   CHECKOUT FORM (inside cart)
   ============================================================ */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.checkout-form .form-input,
.checkout-form .form-textarea {
  width: 100%;
}
.form-error {
  color: var(--danger);
  font-size: 0.78rem;
  display: none;
}
.form-error.visible { display: block; }

/* ============================================================
   SIZE GUIDE MODAL
   ============================================================ */
.size-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.size-modal.open {
  opacity: 1;
  pointer-events: all;
}
.size-modal__box {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
}
.size-modal__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.size-modal__note {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex; gap: 6px;
}
.size-modal__note::before { content: 'ⓘ'; }
.size-modal__section-title {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  margin-top: 18px;
}
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.size-table th {
  text-align: left;
  padding: 8px 12px;
  background: var(--bg-card);
  border-bottom: 2px solid var(--border);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.size-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
}
.size-table tr:last-child td { border-bottom: none; }
.size-table td:first-child { font-weight: 600; color: var(--accent); }
.size-modal__close {
  position: absolute;
  top: 16px; right: 16px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}
.about-content {}
.about-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #bbb;
}
.about-body p strong { color: var(--text-primary); }
.about-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.social-btn svg { width: 18px; height: 18px; }

@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item__value {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.contact-item__value a {
  color: var(--accent);
  text-decoration: underline;
}
.contact-item__value a:hover { color: var(--accent-dark); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5000;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s;
  opacity: 0;
  white-space: nowrap;
  max-width: 90vw;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast.success { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer__brand {}
.footer__logo {
  height: 32px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}
.footer__main-logo {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
  filter: none;
  display: block;
}
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.5;
}
.footer__links-title {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__link {
  font-size: 0.9rem;
  color: #bbb;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--accent); }
.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__social-btn {
  width: 40px; height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer__social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer__social-btn svg { width: 18px; height: 18px; }
.footer__bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   PAGE HEADER (about/contact pages)
   ============================================================ */
.page-hero {
  padding: 64px 0 40px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 12px;
}
.page-hero__subtitle {
  font-size: 1rem;
  color: #aaa;
  max-width: 500px;
}

/* ============================================================
   ARCHIVE SECTION
   ============================================================ */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.archive-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0.7;
}
.archive-card__label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.archive-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
}
.archive-card__status {
  display: inline-flex;
  background: var(--border-light);
  color: var(--text-muted);
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 10px;
  width: fit-content;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease both; }
.fade-in-2 { animation: fadeInUp 0.5s 0.1s ease both; }
.fade-in-3 { animation: fadeInUp 0.5s 0.2s ease both; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 480px) {
  .hero { height: min(90vh, 700px); }
  .modal__gallery { min-height: 280px; }
  .cart-drawer { width: 100vw; }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announcement-height);
  background: var(--accent);
  color: #000;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
}

/* ============================================================
   CART FREE SHIPPING PROGRESS
   ============================================================ */
.free-ship-banner {
  background: rgba(245,243,1,0.07);
  border: 1px solid rgba(245,243,1,0.2);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.free-ship-banner--ok {
  color: var(--accent);
  border-color: rgba(245,243,1,0.35);
  font-weight: 600;
  font-family: var(--font-sub);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.free-ship-progress {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.free-ship-progress__bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ============================================================
   VIDEO PRODUCT CARDS
   ============================================================ */
.product-card--video {
  cursor: pointer;
}
.product-card__poster {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card__video--visible {
  position: static;
  opacity: 1;
}
.product-card--video:hover .product-card__video,
.product-card--video.playing .product-card__video {
  opacity: 1;
}
.product-card--video:hover .product-card__poster,
.product-card--video.playing .product-card__poster {
  opacity: 0;
}
.video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   MODAL GALLERY — SCROLL SNAP (native swipe)
   ============================================================ */
.modal__gallery--swipe {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.modal__gallery--swipe::-webkit-scrollbar {
  display: none;
}
.modal__gallery-track {
  display: flex;
  height: 100%;
}
.modal__gallery-item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.modal__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.modal__gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
@media (min-width: 640px) {
  .modal__gallery-item img {
    object-fit: cover;
  }
}
.modal__gallery-wrap {
  position: relative;
}
.modal__gallery-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
  z-index: 5;
}
.gallery-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.gallery-dot.active {
  background: var(--accent);
}

/* ============================================================
   CHECKOUT FORM — 2-COLUMN ROW
   ============================================================ */
.checkout-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Extra bottom padding so checkout button clears mobile browser bars */
.cart-checkout-btn {
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cart-checkout-btn {
    margin-bottom: 60px;
  }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .cart-drawer__footer {
    padding-bottom: max(20px, calc(env(safe-area-inset-bottom) + 40px));
  }
}

/* ============================================================
   ABOUT PAGE — HYPERLINKS
   ============================================================ */
.about-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.about-link:hover {
  color: var(--accent-dark);
}
.about-link--cta {
  text-decoration: none;
  font-weight: 700;
}
.about-link--cta:hover {
  text-decoration: underline;
}
