/* ================================================
   LOCKED IN ZONE — Styles
   Colors: bg #060606 · text #FFFFFF · accent #B31B00
   ================================================ */

:root {
  --bg:      #060606;
  --bg2:     #0C0C0C;
  --text:    #FFFFFF;
  --accent:  #B31B00;
  --dim:     rgba(255,255,255,0.5);
  --dimmer:  rgba(255,255,255,0.22);
  --border:  rgba(255,255,255,0.07);
  --card:    rgba(255,255,255,0.02);
  --nav-h:   80px;
  --max-w:   1280px;
  --px:      48px;
  --radius:  0px;
}

@media (max-width: 768px) {
  :root { --px: 20px; --nav-h: 68px; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
hr { border: none; }

/* ---- Star canvas ---- */
#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---- Navigation — Apple-style tempered glass ---- */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--px);
  z-index: 300;
  background: rgba(10,10,10,0.10);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09);
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1), background 0.3s, border-color 0.3s;
}
/* Shrinks to normal size after a bit of scroll */
#site-nav.scrolled { height: var(--nav-h); }
@media (max-width: 768px) {
  #site-nav { height: 92px; }
}

/* Desktop inline links */
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* Centered logo */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 62px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.3s, opacity 0.3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.04); opacity: 0.9; }
#site-nav.scrolled .nav-logo-img { height: 44px; }
@media (max-width: 768px) {
  .nav-logo-img { height: 44px; }
  #site-nav.scrolled .nav-logo-img { height: 34px; }
}

/* Hamburger — phones only, turns into X */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 301;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ---- Full-screen glass menu ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nav-h) var(--px) 40px;
  background: rgba(6,6,6,0.45);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), visibility 0.4s;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.nav-overlay-primary,
.nav-overlay-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-overlay-primary { gap: 26px; }
.nav-overlay-secondary { gap: 16px; }

.nav-overlay-primary a {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.25s, letter-spacing 0.35s ease;
}
.nav-overlay-primary a:hover,
.nav-overlay-primary a.active {
  color: var(--text);
  letter-spacing: 0.1em;
}

.nav-overlay-secondary a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dimmer);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-overlay-secondary a:hover { color: var(--text); }

/* Overlay social — icons only */
.nav-overlay-social {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.nav-overlay-social .social-icon {
  color: var(--dim);
  transition: color 0.2s, transform 0.2s;
  line-height: 0;
}
.nav-overlay-social .social-icon svg {
  width: 24px;
  height: 24px;
}
.nav-overlay-social .social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.menu-divider {
  border-top: 1px solid var(--border);
  width: 60px;
  margin: 6px 0;
}

/* Staggered reveal of links */
.nav-overlay a {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.open .nav-overlay-primary a:nth-child(1)   { transition-delay: 0.10s; }
.nav-overlay.open .nav-overlay-primary a:nth-child(2)   { transition-delay: 0.16s; }
.nav-overlay.open .nav-overlay-primary a:nth-child(3)   { transition-delay: 0.22s; }
.nav-overlay.open .nav-overlay-secondary a:nth-child(1) { transition-delay: 0.30s; }
.nav-overlay.open .nav-overlay-secondary a:nth-child(2) { transition-delay: 0.35s; }
.nav-overlay.open .nav-overlay-secondary a:nth-child(3) { transition-delay: 0.40s; }
.nav-overlay.open .nav-overlay-social a:nth-child(1)    { transition-delay: 0.46s; }
.nav-overlay.open .nav-overlay-social a:nth-child(2)    { transition-delay: 0.50s; }
.nav-overlay.open .nav-overlay-social a:nth-child(3)    { transition-delay: 0.54s; }

body.menu-open { overflow: hidden; }

/* ---- Main app wrapper ---- */
#app {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ====================================================
   FOOTER
   ==================================================== */

#site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 36px var(--px) 24px;
  background: rgba(10,10,10,0.14);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
}

.footer-logo-img {
  height: 22px;
  width: auto;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--dim);
}

/* Footer social — icon + label side by side, aligned under Media */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
/* higher specificity than ".footer-col a { display:block }" so the flex row holds */
.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
  width: auto;
}
.footer-social .social-link .social-ic {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.footer-social .social-link:hover { color: var(--accent); }

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ====================================================
   PAGE CONTENT — ported from store (home, products,
   product detail, mission, contact, policies)
   ==================================================== */

/* ---- HOME ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) var(--px) 80px;
  position: relative;
}
.hero-title {
  font-size: clamp(38px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 28px auto 36px;
}
.hero-tagline {
  font-size: clamp(12px, 2vw, 15px);
  color: var(--dim);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 52px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-in-up 0.8s ease 1.6s forwards;
}
.scroll-cue span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dimmer);
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dimmer), transparent);
}

.home-products { padding: 0 0 120px; }

.mission-teaser {
  padding: 100px var(--px) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .mission-teaser { grid-template-columns: 1fr; gap: 40px; }
}
.mission-teaser-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.mission-teaser-quote {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 32px;
}
.mission-teaser-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dim);
}

/* ---- PRODUCT GRID ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (min-width: 900px) {
  .products-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
}
.product-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg2);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.18); /* enlarge the garment within the frame ~18% */
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.product-card:hover img {
  transform: scale(1.24);
  filter: brightness(0.75);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  transition: opacity 0.3s;
}
.product-card-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 6px;
}
.product-card-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.product-card-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.product-card-tagline {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.04em;
}
.product-card-status {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
}
.status-available { color: rgba(255,255,255,0.55); }
.status-sold-out  { color: var(--accent); }
.card-view-btn { display: none; } /* mobile-only CTA — shown ≤768px, see media block below */
.sold-out-overlay {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(179,27,0,0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
}

/* ---- PRODUCTS PAGE ---- */
.products-page {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.products-page-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px) 48px;
}
.page-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}
.page-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

/* ---- PRODUCT DETAIL ---- */
.product-page {
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}
@media (max-width: 840px) {
  .product-layout { grid-template-columns: 1fr; }
}
.gallery {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 40%, #34343b 0%, #1c1c20 45%, #101012 100%);
}
@media (max-width: 840px) {
  .gallery {
    position: relative;
    top: 0;
    height: max(75vw, 50vh);   /* never shrinks below half the screen on mobile */
    max-height: 720px;
  }
}
.gallery-main {
  flex: 1;
  min-height: 500px;            /* desktop floor */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
}
@media (max-width: 840px) {
  .gallery-main { min-height: 0; } /* let the mobile .gallery height rule above govern instead */
}
.gallery-main img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.4s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-main img.fade-out { opacity: 0; transform: scale(0.97); }
.preview-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
  line-height: 1.3;
  word-break: break-word;
  max-width: 46%;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  transition: color 0.15s, opacity 0.3s ease;
  white-space: pre-line;
}
.preview-overlay.empty { color: rgba(255,255,255,0.2); }
.gallery-thumbs {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.thumb {
  width: 60px; height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.16); /* visible square frame — signals a scrollable strip */
  transition: opacity 0.2s, border-color 0.2s;
}
.thumb:hover { opacity: 0.85; border-color: rgba(255,255,255,0.35); }
.thumb.active { opacity: 1; border-color: rgba(255,255,255,0.5); }
.product-info {
  padding: 56px 48px;
  overflow-y: auto;
}
@media (max-width: 840px) {
  .product-info { padding: 36px var(--px); }
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--dimmer); }
.sold-out-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.custom-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-title {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.product-tagline-text {
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.product-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  margin-bottom: 36px;
  max-width: 480px;
  white-space: pre-line;
}
.preview-input-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.preview-input-heading {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}
.preview-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 12px;
  outline: none;
  transition: border-color 0.25s;
  caret-color: var(--text);
}
.preview-input:focus { border-color: rgba(255,255,255,0.35); }
.preview-input::placeholder {
  color: var(--dimmer);
  font-weight: 400;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.preview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--dimmer);
  letter-spacing: 0.05em;
}
.preview-hint { font-style: italic; }
.sizes-section { margin-bottom: 32px; }
.sizes-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
  display: block;
}
.sizes-row { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 50px;
  text-align: center;
}
.size-btn:hover { border-color: rgba(255,255,255,0.4); color: var(--text); }
.size-btn.sel { border-color: var(--text); color: var(--text); background: rgba(255,255,255,0.06); }
.accordion { margin-bottom: 32px; border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.accordion-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--dimmer);
  transition: transform 0.3s;
  line-height: 1;
}
.accordion-trigger.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.accordion-body.open { max-height: 900px; padding-bottom: 22px; }
.accordion-body p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  white-space: pre-line;
}

/* ---- Size Guide (diagram image supplied by the client, inside the accordion) ---- */
.size-guide { padding-top: 2px; }
.size-guide-diagram {
  width: 100%;
  max-width: 560px;
  display: block;
  margin: 0 auto 14px;
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.size-guide-diagram:hover { opacity: 0.88; }
.size-guide-note {
  font-size: 12px;
  color: var(--dimmer);
  font-style: italic;
}

/* ---- Lightbox (click-to-zoom, used by Size Guide) ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(6,6,6,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0.3s;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  cursor: default;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lightbox-close:hover {
  background: rgba(179,27,0,0.16);
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 480px) {
  .lightbox { padding: 20px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 22px; }
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.btn-primary:hover {
  background: #cf1f00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(179,27,0,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 40px;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  font-family: inherit;
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 40px;
  margin-bottom: 36px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  cursor: not-allowed;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.btn-coming-soon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.btn-sold-out {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 40px;
  margin-bottom: 36px;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(179,27,0,0.3);
  cursor: not-allowed;
  font-family: inherit;
}
.product-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--dimmer);
  line-height: 1.65;
}
.product-note a { color: var(--dim); text-decoration: underline; }
.product-note a:hover { color: var(--text); }

/* ---- MISSION PAGE ---- */
.mission-page {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 140px;
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  position: relative;
  z-index: 1;
}
.mission-headline {
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 56px;
}
.mission-p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.mission-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}
.timeline {
  border-left: 1px solid var(--border);
  padding-left: 28px;
  margin: 48px 0;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text);
  border: 1.5px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}
.timeline-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dimmer);
  margin-bottom: 4px;
  font-family: 'Space Mono', monospace;
}
.timeline-event { font-size: 15px; font-weight: 600; color: var(--text); }
.timeline-note { font-size: 13px; color: var(--dim); margin-top: 4px; }
.ducato-block {
  background: rgba(179,27,0,0.07);
  border: 1px solid rgba(179,27,0,0.2);
  padding: 28px 32px;
  margin: 48px 0;
}
.ducato-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ducato-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}
.mission-cta-line { font-size: 14px; color: var(--dim); }
.mission-cta-line a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- CONTACT PAGE ---- */
.contact-page {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 140px;
  max-width: 620px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  position: relative;
  z-index: 1;
}
.contact-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.contact-subtitle {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 44px;
}
.contact-email-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  margin-top: 36px;
}
.contact-email-link:hover { color: var(--text); }
.contact-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.contact-note {
  font-size: 12px;
  color: var(--dimmer);
  letter-spacing: 0.06em;
  margin-top: 8px;
}
.contact-note a { color: var(--dim); text-decoration: none; }
.contact-note a:hover { color: var(--text); }
.contact-country-block {
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.contact-country-block h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.contact-country-block p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ---- FORMS ---- */
.contact-form { width: 100%; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: rgba(255,255,255,0.28); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--dimmer); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-select { cursor: pointer; }
.form-select option { background: #111; }
.form-submit { width: 100%; margin-top: 8px; }
.form-success {
  padding: 36px;
  border: 1px solid var(--border);
  text-align: center;
}
.form-success p { font-size: 15px; color: var(--dim); line-height: 1.6; }
.form-error {
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  line-height: 1.6;
}
.checkout-error {
  min-height: 18px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.checkout-error:empty { margin-bottom: 0; }

/* ---- COUNTRY PAGE ---- */
.country-page {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 140px;
  max-width: 580px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  position: relative;
  z-index: 1;
}
.country-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.country-back:hover { color: var(--text); }

/* ---- POLICY PAGES ---- */
.policy-page {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 140px;
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
  position: relative;
  z-index: 1;
}
.policy-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.policy-meta {
  font-size: 12px;
  color: var(--dimmer);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
}
.policy-section { margin-bottom: 44px; }
.policy-section h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.policy-section p,
.policy-section li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.policy-section ul { list-style: none; padding-left: 0; }
.policy-section ul li::before { content: '— '; color: var(--dimmer); }
.policy-section a { color: var(--dim); }

/* ---- SUCCESS ---- */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--px);
  position: relative;
  z-index: 1;
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 32px;
}
.success-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.success-text {
  font-size: 15px;
  color: var(--dim);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 48px;
}

/* ---- 404 ---- */
.not-found {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}
.not-found h1 {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.04em;
  opacity: 0.15;
  margin-bottom: 24px;
}
.not-found p { color: var(--dim); margin-bottom: 32px; }
.not-found a { color: var(--text); text-decoration: underline; }

/* ---- Scroll fade-in ---- */
.fade-up { opacity: 0; transition: opacity 0.7s ease; }
.fade-up.visible { opacity: 1; }
@keyframes fade-in-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ====================================================
   PRODUCT GRID — staggered reveal animation
   ==================================================== */
.card-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.6s ease, transform 0.75s cubic-bezier(0.16,1,0.3,1);
  transition-delay: calc(var(--card-i, 0) * 0.09s);
  will-change: opacity, transform;
}
.card-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ====================================================
   RED ACCENTS (#B31B00)
   ==================================================== */

/* "Custom Edition" badge */
.custom-badge {
  border-color: var(--accent);
  color: var(--accent);
}

/* Section eyebrow labels */
.page-label,
.mission-teaser-label {
  color: var(--accent);
}

/* Accordion — whole bar goes red when expanded */
.accordion-trigger.open { color: var(--accent); }
.accordion-trigger.open .accordion-icon { color: var(--accent); }
.accordion-item:has(.accordion-trigger.open) {
  border-bottom-color: rgba(179,27,0,0.55);
  background: rgba(179,27,0,0.04);
}

/* Selected size */
.size-btn.sel {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(179,27,0,0.10);
}

/* Active gallery thumbnail */
.thumb.active { border-color: var(--accent); }

/* Link hovers → red */
.breadcrumb a:hover,
.product-note a:hover,
.contact-email-link:hover,
.contact-note a:hover,
.policy-section a:hover { color: var(--accent); }

/* ====================================================
   HOME — SPLIT HERO
   ==================================================== */
.home-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--px) 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
/* studio spotlight so the black hoodie reads on the dark page */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 6% 0;
  background: radial-gradient(circle at 50% 45%, #26262c 0%, #131316 45%, transparent 72%);
  z-index: 0;
}
.hero-hoodie {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(30px, 4vw, 46px);
}
.hero-lines {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  display: flex;
  flex-direction: column;
}
.hero-lines > span { display: block; }
.hero-brand { color: var(--text); }
.hero-lines .accent-dot { display: inline; color: var(--accent); }
.hero-cta {
  align-self: flex-start;
  gap: 12px;
}
.hero-cta-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(5px); }
@media (max-width: 860px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: calc(var(--nav-h) + 24px);
    min-height: auto;
  }
  .hero-hoodie { max-width: 360px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-lines { align-items: center; }
}

/* ====================================================
   HOME — STATS (animated counters)
   ==================================================== */
.stats {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(84px, 12vw, 150px) var(--px);
  text-align: center;
}
.stats-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(32px, 5vw, 52px);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 6vw, 96px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 110px;
}
.stat-num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
}
.stat-sep {
  width: 1px;
  align-self: stretch;
  min-height: 78px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.16), transparent);
}
@media (max-width: 640px) {
  .stats-row { flex-direction: column; gap: 40px; }
  .stat-sep {
    width: 64px; min-height: 0; height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.16), transparent);
  }
}

/* ====================================================
   HOME — FAQ
   ==================================================== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--px) clamp(100px, 14vw, 170px);
}
.faq-head { margin-bottom: 36px; }
.faq-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-top: 10px;
}
/* FAQ questions are full sentences — override the compact uppercase product-accordion trigger */
.faq-accordion .accordion-trigger {
  text-transform: none;
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 22px 0;
  gap: 24px;
}
.faq-accordion .accordion-body p { font-size: 15px; }
.faq-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.faq-link:hover { opacity: 0.72; }

/* ====================================================
   SUBPAGE RED ACCENTS (#B31B00)
   ==================================================== */
/* Signature red period on major page titles */
.policy-title::after,
.contact-title::after { content: '.'; color: var(--accent); }

/* Policy pages */
.policy-section ul li::before { color: var(--accent); }
.policy-section h2 { border-bottom-color: rgba(179,27,0,0.4); }
.policy-section a { color: var(--accent); }
.policy-section a:hover { color: var(--text); }

/* Mission page */
.mission-headline::after { content: ''; }
.mission-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.timeline { border-left-color: rgba(179,27,0,0.35); }
.timeline-item::before {
  background: var(--accent);
  border-color: var(--bg);
  box-shadow: 0 0 0 3px rgba(179,27,0,0.18);
}
.mission-cta-line a { color: var(--accent); }

/* Contact + forms */
.contact-divider {
  width: 90px; height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}
.contact-country-block { border-color: rgba(179,27,0,0.35); }
.contact-country-block h3 { color: var(--accent); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--accent); }
.country-back:hover { color: var(--accent); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-cta-arrow { transition: none; }
}

/* ====================================================
   MOBILE OPTIMIZATION (375px – 480px)
   Hamburger nav intentionally left unchanged.
   ==================================================== */
@media (max-width: 480px) {

  /* ---- HERO ---- */
  .home-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding: calc(var(--nav-h) + 24px) 16px 60px;
  }
  .hero-visual::before { inset: 8% 0; }
  .hero-hoodie { width: 90vw; max-width: 430px; }      /* bluza min 80% szerokości */
  .hero-copy {
    align-items: center;
    text-align: center;
    gap: 28px;
    width: 100%;
  }
  .hero-lines { align-items: center; }                  /* rozmiar zostaje (clamp), wycentrowany */
  .hero-cta {
    width: 100%;                                         /* pełna szerokość minus 32px (padding 16px) */
    min-height: 52px;
  }

  /* ---- PRODUCTS ---- */
  /* Card layout itself now lives in the dedicated 768px "editorial lookbook" block below. */
  .home-products { padding: 60px 0; }

  /* ---- SOCIAL PROOF ---- */
  .stats { padding: 64px 20px; }
  .stats-eyebrow {
    font-size: 16px;                                     /* SO FAR większy */
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 40px;
  }
  .stats-row { flex-direction: column; gap: 42px; }
  .stat-num { font-size: 64px; }                         /* liczby 64px */
  .stat-sep {
    width: 68px; height: 1px; min-height: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.16), transparent);
  }

  /* ---- FAQ ---- */
  .faq { padding: 60px 20px 72px; }
  .faq-accordion .accordion-trigger { padding: 20px 0; }
  .faq-accordion .accordion-body p { font-size: 14px; line-height: 1.8; }
  .faq-accordion .accordion-icon { font-size: 30px; width: 30px; text-align: center; }

  /* ---- GENERAL ---- */
  /* Every main button ≥ 48px touch target */
  .btn-primary,
  .btn-outline,
  .btn-coming-soon,
  .btn-sold-out,
  .form-submit { min-height: 48px; }
  .size-btn { min-height: 48px; }
  .form-input, .form-select { min-height: 48px; }

  /* Keep everything inside the viewport */
  html, body { overflow-x: hidden; }
  #app, .home-hero, .stats, .faq, .home-products { max-width: 100%; }
}

/* ====================================================
   PRODUCT CARDS — mobile "editorial lookbook" (≤768px)
   Full text visible without scrolling inside the card;
   tight 1px gaps between cards instead of a boxed grid.
   ==================================================== */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; gap: 1px; }

  .product-card {
    aspect-ratio: auto;
    height: auto;                       /* content defines height — nothing gets clipped */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.10);  /* glass border, same tint as the nav/footer */
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .product-card img {
    width: 100%;
    height: 280px;
    max-height: 280px;
    object-fit: contain;
    background: var(--bg2);
    transform: none;                    /* cancel the desktop 1.18x zoom-crop */
  }
  .product-card:hover img,
  .product-card:active img { transform: none; filter: none; }

  .product-card-overlay {
    position: static;
    background: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .product-card-name { font-size: 18px; }
  .product-card-price { font-size: 15px; }
  .product-card-tagline { font-size: 13px; }
  .product-card-status { margin-top: 4px; font-size: 11px; }

  /* Visual CTA — the whole card remains the single tap target (data-link on the <a>) */
  .card-view-btn {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid var(--accent);
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    box-sizing: border-box;
  }
}
