/* ============================================================
   undici — styles.css
   undicibrand.com
   ============================================================ */

/* ── SHOPIFY THEME OVERRIDES ─────────────────────────────── */
#shopify-section-header,
header.site-header,
.site-header,
#MainContent > *:not(#shopify-section-undici),
footer.site-footer,
.site-footer,
#shopify-section-footer,
.footer,
header[role="banner"],
nav.main-nav,
.announcement-bar,
.skip-to-content,
#shopify-announcements,
.cart-notification,
body > header,
body > footer {
  display: none !important;
}

body {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

main#MainContent {
  padding: 0 !important;
  margin: 0 !important;
  min-height: unset !important;
}

.shopify-section { margin: 0 !important; padding: 0 !important; }
main#MainContent, .main-page-content, #main-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* ── FONT ────────────────────────────────────────────────── */
@font-face {
  font-family: 'EDManteca';
  src: url('https://cdn.shopify.com/s/files/1/0787/2321/9675/files/ED-Manteca-Black-Regular.otf?v=1772257356') format('opentype'),
       url('https://cdn.shopify.com/s/files/1/0787/2321/9675/files/ED-Manteca-Black-Regular.otf?v=1772257356') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & ROOT ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0806;
  --red: #8b0000;
  --red-bright: #c0392b;
  --gold: #c9922a;
  --gold-light: #e8b84b;
  --white: #f0ebe0;
  --grey: #2a2520;
  --border: rgba(201,146,42,0.25);
  --cursor-size: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border: 1px solid var(--gold);
  border-radius: 0;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor.hovered {
  width: 50px;
  height: 50px;
  background: rgba(201,146,42,0.15);
}
.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ── GRAIN OVERLAY ───────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(10,8,6,0.95);
  backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: 'EDManteca', cursive;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── NAV CART ICON ──────────────────────────────────────── */
.nav-cart {
  position: relative;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cart svg {
  width: 20px;
  height: 20px;
  stroke: rgba(240,235,224,0.5);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.2s;
}
.nav-cart:hover svg { stroke: var(--gold); }
.nav-cart-count {
  position: absolute;
  top: 0;
  right: -2px;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.5rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-cart-count.has-items { display: flex; }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 65% 40%, rgba(139,0,0,0.4) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,146,42,0.08) 0%, transparent 60%),
              var(--black);
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}
.hero-number {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(18rem, 30vw, 38rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,146,42,0.12);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.hero-eyebrow {
  position: relative;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  position: relative;
  font-family: 'EDManteca', cursive;
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero-title .glitch { position: relative; display: inline-block; }
.hero-title .glitch::before,
.hero-title .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}
.hero-title .glitch::before {
  color: var(--red-bright);
  animation: glitch-1 4s infinite;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}
.hero-title .glitch::after {
  color: var(--gold);
  animation: glitch-2 4s infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}
@keyframes glitch-1 {
  0%, 90%, 100% { opacity: 0; transform: translate(0); }
  91% { opacity: 0.8; transform: translate(-4px, 0); }
  93% { opacity: 0; transform: translate(0); }
  95% { opacity: 0.6; transform: translate(3px, 0); }
  97% { opacity: 0; }
}
@keyframes glitch-2 {
  0%, 88%, 100% { opacity: 0; transform: translate(0); }
  89% { opacity: 0.7; transform: translate(4px, 0); }
  91% { opacity: 0; transform: translate(0); }
  94% { opacity: 0.5; transform: translate(-2px, 0); }
  96% { opacity: 0; }
}
.hero-sub {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.45);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── COUNTDOWN ───────────────────────────────────────────── */
.countdown-wrap { position: relative; margin-bottom: 36px; }
.countdown-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.countdown-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.countdown-blocks { display: flex; align-items: center; gap: 8px; }
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,146,42,0.06);
  border: 1px solid var(--border);
  padding: 12px 18px;
  min-width: 72px;
}
.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.countdown-num.flash { color: var(--gold); }
.countdown-unit {
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.35);
  margin-top: 4px;
}
.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}
.countdown-expired {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--red);
}

/* ── HERO ACTIONS ────────────────────────────────────────── */
.hero-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; color: var(--black); }
.btn-primary:hover span { color: var(--black); }
.btn-ghost {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(240,235,224,0.2);
  color: rgba(240,235,224,0.5);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── TICKER ──────────────────────────────────────────────── */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  padding: 0 40px;
}
.ticker-sep { color: rgba(10,8,6,0.4); padding: 0 8px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── PHOTO GALLERY ───────────────────────────────────────── */
.photo-gallery { padding: 0 0 120px; }
.gallery-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gallery-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.masonry-grid {
  columns: 3;
  column-gap: 4px;
  padding: 0 4px 4px;
  width: 100%;
}
.masonry-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  margin-bottom: 4px;
  cursor: pointer;
}
.masonry-item .bg-layer {
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  filter: brightness(0.82);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.masonry-item:hover .bg-layer { transform: scale(1.04); filter: brightness(1); }
.h-tall .bg-layer   { height: 65vh; }
.h-medium .bg-layer { height: 45vh; }
.h-short .bg-layer  { height: 32vh; }
.h-wide .bg-layer   { height: 52vh; }
.masonry-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  pointer-events: none;
}
.masonry-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.masonry-caption-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.masonry-caption-index {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.8;
}
.masonry-item.featured::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}
.masonry-item .hover-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  z-index: 3;
  pointer-events: none;
}
.masonry-item:hover .hover-border { border-color: rgba(201,168,76,0.25); }
.gallery-info-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
  margin-top: 40px;
}
.gallery-info-item { display: flex; flex-direction: column; gap: 4px; }
.gallery-info-value {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.gallery-info-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.4);
}

/* ── CAROUSEL ────────────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--grey);
}
.carousel-stage { width: 100%; height: 100%; position: relative; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,8,6,0.7);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 40px;
  height: 40px;
  font-size: 1rem;
  cursor: none;
  z-index: 10;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  background: rgba(240,235,224,0.3);
  border-radius: 50%;
  cursor: none;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── QUANTITY SELECTOR ───────────────────────────────────── */
.qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  width: fit-content;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
}
.qty-btn:hover { background: var(--gold); color: var(--black); }
.qty-num {
  min-width: 52px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 10px 0;
  letter-spacing: 0.1em;
  user-select: none;
}

/* ── CART ACTIONS ────────────────────────────────────────── */
.cart-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.add-to-cart-btn {
  flex: 1;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  cursor: none;
  transition: all 0.2s;
}
.add-to-cart-btn:hover { background: var(--white); }
.checkout-btn {
  flex: 1;
  padding: 18px 24px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  cursor: none;
  transition: all 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── CART DRAWER ─────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #0f0d0a;
  border-left: 1px solid var(--border);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--white);
}
.cart-close { background: none; border: none; color: var(--gold); font-size: 1.2rem; cursor: none; padding: 4px 8px; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  padding: 12px;
}
.cart-item-img { width: 80px; height: 80px; object-fit: cover; object-position: top; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.cart-item-name { font-family: 'EDManteca', serif; font-size: 1rem; color: var(--white); }
.cart-item-meta { font-size: 0.65rem; letter-spacing: 0.15em; color: rgba(240,235,224,0.4); text-transform: uppercase; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-qty button {
  width: 24px; height: 24px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.9rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty button:hover { background: var(--gold); color: var(--black); }
.cart-item-qty span { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--white); min-width: 20px; text-align: center; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--gold); }
.cart-item-remove { background: none; border: none; color: rgba(240,235,224,0.3); font-size: 0.8rem; cursor: none; margin-top: 4px; display: block; }
.cart-item-remove:hover { color: var(--red); }
.cart-empty { text-align: center; color: rgba(240,235,224,0.3); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin: auto; padding: 40px 0; }
.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.1em; color: var(--white); }
.cart-checkout-btn {
  display: block;
  text-align: center;
  padding: 18px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background 0.2s;
}
.cart-checkout-btn:hover { background: var(--white); }
.cart-note { font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(240,235,224,0.3); text-align: center; text-transform: uppercase; }

/* ── PRODUCT SECTION ─────────────────────────────────────── */
#product { padding: 120px 40px; position: relative; }
.section-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.product-visual { position: sticky; top: 100px; }
.color-selector { margin-top: 60px; display: flex; gap: 12px; align-items: center; }
.swatch {
  width: 36px; height: 36px;
  border: 1px solid transparent;
  cursor: none;
  transition: all 0.2s;
  position: relative;
}
.swatch::after { content: ''; position: absolute; inset: -4px; border: 1px solid transparent; transition: border-color 0.2s; }
.swatch.active::after { border-color: var(--gold); }
.swatch:hover { transform: scale(1.1); }
.swatch-black { background: #1a1612; }
.swatch-white { background: #f0ebe0; }
.swatch-cream { background: #d4c9a8; }
.swatch-orange { background: #d4570a; }
.color-name { margin-left: 16px; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,235,224,0.5); }

/* ── PRODUCT INFO ────────────────────────────────────────── */
.product-info { padding-top: 20px; }
.product-tag {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--red);
  color: var(--red);
  padding: 4px 12px;
  margin-bottom: 24px;
  animation: pulse-border 2s infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: var(--red); box-shadow: 0 0 0 0 rgba(192,57,43,0); }
  50% { border-color: var(--red-bright); box-shadow: 0 0 0 4px rgba(192,57,43,0.1); }
}
.product-name { font-family: 'EDManteca', cursive; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 0.9; margin-bottom: 8px; }
.product-subtitle { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 32px; }
.product-desc {
  font-size: 0.68rem;
  line-height: 2;
  color: rgba(240,235,224,0.55);
  margin-bottom: 40px;
  max-width: 440px;
  border-left: 2px solid var(--red);
  padding-left: 20px;
}
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); margin-bottom: 40px; }
.spec-item { padding: 18px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.spec-item:nth-child(2n) { border-right: none; }
.spec-item:nth-last-child(-n+2) { border-bottom: none; }
.spec-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,235,224,0.35); margin-bottom: 6px; }
.spec-value { font-size: 0.72rem; letter-spacing: 0.05em; color: var(--white); }
.price-row { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; letter-spacing: 0.05em; color: var(--gold); line-height: 1; }
.price-note { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(240,235,224,0.35); line-height: 1.6; }
.size-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,235,224,0.35); margin-bottom: 12px; }
.sizes { display: flex; gap: 8px; margin-bottom: 32px; }
.size-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: none;
  color: rgba(240,235,224,0.5);
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  cursor: none;
  transition: all 0.2s;
}
.size-btn:hover, .size-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,146,42,0.08); }
.preorder-note { font-size: 0.58rem; letter-spacing: 0.1em; color: rgba(240,235,224,0.3); text-align: center; }

/* ── MARQUEE DIVIDER ─────────────────────────────────────── */
.marquee-divider {
  padding: 20px 0;
  background: var(--grey);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-inner { display: flex; white-space: nowrap; animation: ticker 25s linear infinite; }
.marquee-item { font-family: 'EDManteca', cursive; font-size: 1.4rem; color: rgba(201,146,42,0.3); padding: 0 30px; }
.marquee-item.lit { color: var(--gold); }

/* ── MANIFESTO ───────────────────────────────────────────── */
#manifesto {
  padding: 120px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.manifesto-text h2 { font-family: 'EDManteca', cursive; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; margin-bottom: 32px; }
.manifesto-text h2 em { font-style: normal; color: var(--red); }
.manifesto-text p { font-size: 0.7rem; line-height: 2.2; color: rgba(240,235,224,0.5); margin-bottom: 24px; }
.manifesto-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-block { background: var(--grey); padding: 36px 28px; border: 1px solid var(--border); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 4rem; line-height: 1; color: var(--gold); letter-spacing: 0.05em; }
.stat-label { font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,235,224,0.35); margin-top: 8px; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { font-family: 'EDManteca', cursive; font-size: 2.5rem; margin-bottom: 12px; }
.footer-tagline { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,235,224,0.3); }
.footer-links h4 { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.65rem; letter-spacing: 0.08em; color: rgba(240,235,224,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.2);
}

/* ── ENTER OVERLAY ───────────────────────────────────────── */
#enter-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
#matrix-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.18; pointer-events: none; }
#enter-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.overlay-logo { font-family: 'EDManteca', cursive; font-size: clamp(4rem, 10vw, 8rem); margin-bottom: 16px; animation: fade-in 1s ease forwards; }
.overlay-tagline { font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(240,235,224,0.4); margin-bottom: 60px; animation: fade-in 1.2s ease forwards; }
.enter-btn {
  padding: 14px 48px;
  border: 1px solid var(--gold);
  background: none;
  color: var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  animation: fade-in 1.4s ease forwards;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.enter-btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-101%); transition: transform 0.3s; }
.enter-btn:hover::before { transform: translateX(0); }
.enter-btn span { position: relative; z-index: 1; }
.enter-btn:hover span { color: var(--black); }
.overlay-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 30px;
  animation: grow-line 1s 0.5s ease forwards;
  transform-origin: top;
  transform: scaleY(0);
}
@keyframes grow-line { to { transform: scaleY(1); } }
@keyframes fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HAMBURGER ──────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,8,6,0.97);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'EDManteca', cursive;
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-cta {
  margin-top: 16px;
  font-family: 'DM Mono', monospace !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}
.mobile-menu-cta:hover { background: var(--gold); color: var(--black) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 0 20px 70px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-visual { position: static; }
  #manifesto { grid-template-columns: 1fr; gap: 48px; padding: 80px 20px; }
  footer { grid-template-columns: 1fr; padding: 40px 20px; }
  #product { padding: 80px 20px; }
  .photo-gallery { padding: 0 0 80px; }
  .masonry-grid { columns: 2; column-gap: 3px; }
  .h-tall .bg-layer   { height: 52vw; }
  .h-medium .bg-layer { height: 40vw; }
  .h-short .bg-layer  { height: 30vw; }
  .h-wide .bg-layer   { height: 44vw; }
  .gallery-info-strip { flex-wrap: wrap; gap: 20px; padding: 24px 20px; }
  .masonry-item.featured::before { display: none; }
  .masonry-item { margin-bottom: 3px; }
}
