/*
Theme Name: OVRSZ Store
Theme URI: https://www.radapolomarketing.it
Author: RDP Marketing
Author URI: https://www.radapolomarketing.it
Description: Tema WordPress one-page animato per OVRSZ (street/gym wear). Il carrello, il catalogo prodotti e il pagamento Stripe sono gestiti da un backend esterno (Netlify Functions + Supabase): configura l'URL in Aspetto -> Personalizza -> OVRSZ Store.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ovrsz-store
*/

/* Questo file e' sia l'header obbligatorio del tema WordPress sia il foglio di
   stile vero e proprio del sito: viene caricato cosi' com'e' da functions.php. */

/* ============================================================
   OVRSZ — Design tokens
============================================================ */
:root{
  --black: #0a0a0a;
  --black-soft: #131313;
  --black-card: #171717;
  --line: rgba(255,255,255,.1);
  --white: #f2f2ed;
  --grey: #8a8a86;
  --red: #be1d2c;
  --red-dim: #7c1420;

  --f-display: 'Anton', sans-serif;
  --f-body: 'Inter', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  --container: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.16,.84,.44,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ background: var(--black); scroll-behavior: smooth; }
#manifesto, #shop, #community{ scroll-margin-top: 84px; }
body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3{ font-family: var(--f-display); font-weight:400; margin:0; line-height:1; text-transform:uppercase; letter-spacing:.01em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; border:none; background:none; color:inherit; }
::selection{ background: var(--red); color: var(--white); }

.red{ color: var(--red); }

.kicker{
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 14px;
}
.kicker.red{ color: var(--red); }

/* slashed-O brand glyph */
.o-slash{ position:relative; display:inline-block; }
.o-slash::after{
  content:"";
  position:absolute; left:-2%; top:8%;
  width:104%; height:84%;
  border-radius:50%;
  border: .09em solid currentColor;
}
.o-slash::before{
  content:"";
  position:absolute; left:-8%; top:50%;
  width:116%; height:.09em;
  background:currentColor;
  transform: rotate(-38deg);
}
.wordmark{
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: var(--white);
}
.wordmark.small{ font-size: 1.1rem; }

/* grain overlay for texture */
.grain{
  position: fixed; inset:0; z-index: 9998; pointer-events:none;
  opacity:.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Preloader
============================================================ */
.preloader{ position: fixed; inset:0; z-index: 10000; }

.preloader-curtain{
  /* leggero overlap al centro per evitare una linea sub-pixel tra le due meta' */
  position:absolute; top:0; bottom:0; width:calc(50% + 1px); background: var(--black); z-index:1;
}
.preloader-curtain-l{ left:0; }
.preloader-curtain-r{ right:0; }

.preloader-inner{
  position:absolute; top:50%; left:50%; z-index:2;
  transform: translate(-50%,-50%);
  display:flex; flex-direction:column; align-items:center; gap:18px;
}
.preloader-mark{ width: 52px; opacity:0; animation: mark-in .8s var(--ease) forwards; }
.preloader-count{ display:flex; align-items:baseline; gap:2px; color: var(--white); font-family: var(--f-mono); }
.preloader-count span{ font-size: 2.6rem; font-weight:600; letter-spacing:-.02em; font-variant-numeric: tabular-nums; min-width: 2.6ch; text-align:right; }
.preloader-count small{ font-size: 1rem; opacity:.55; }
.preloader-bar{ width: 160px; height:2px; background: rgba(255,255,255,.12); overflow:hidden; }
.preloader-bar span{ display:block; height:100%; width:0%; background: var(--red); }
.preloader-label{ font-family: var(--f-mono); font-size:.62rem; letter-spacing:.32em; color: var(--grey); margin:0; }
@keyframes mark-in{ to{ opacity:1; } }

/* ============================================================
   Nav
============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px var(--pad);
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  padding-top: 14px; padding-bottom:14px;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-logo{ display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo-mark{ width:26px; }
.nav-links{ display:flex; gap:36px; }
.nav-links a{
  text-decoration:none; font-size:.82rem; letter-spacing:.06em; font-weight:600;
  display:flex; align-items:center; gap:8px; opacity:.8; transition: opacity .25s ease, color .25s ease;
}
.nav-links a span:first-child{ font-family: var(--f-mono); font-size:.7rem; color: var(--red); }
.nav-links a:hover{ opacity:1; }
.nav-actions{ display:flex; align-items:center; gap:18px; }
.lang-switch{ display:flex; align-items:center; gap:2px; font-family: var(--f-mono); font-size:.68rem; letter-spacing:.05em; }
.lang-switch button{ color: var(--grey); padding:4px 7px; transition: color .2s ease; }
.lang-switch button:hover{ color: var(--white); }
.lang-switch button.active{ color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.lang-switch-mobile{ margin-top: 6px; }
.lang-switch-mobile button{ font-size:.85rem; padding:6px 10px; }
.cart-btn{ position:relative; display:flex; color: var(--white); }
.cart-count{
  position:absolute; top:-8px; right:-10px;
  background: var(--red); color:var(--white);
  font-size:.62rem; font-weight:800; font-family: var(--f-mono);
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.burger span{ height:2px; background: var(--white); width:100%; }

.mobile-menu{
  position: fixed; inset: 0 0 auto 0; top: 0; z-index:490;
  background: var(--black); padding: 110px var(--pad) 40px;
  display:flex; flex-direction:column; gap: 22px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{
  text-decoration:none; font-family: var(--f-display); font-size:2rem; text-transform:uppercase; border-bottom:1px solid var(--line); padding-bottom:14px;
}

/* ============================================================
   Buttons
============================================================ */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 17px 34px;
  font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  text-decoration:none; border-radius:2px;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, box-shadow .3s ease;
}
.btn .btn-arrow{ transition: transform .3s var(--ease); display:inline-block; }
.btn:hover .btn-arrow{ transform: translateX(4px); }
.btn-solid{ background: var(--white); color: var(--black); }
.btn-solid:hover{ background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-ghost{ border:1px solid rgba(255,255,255,.35); color: var(--white); background:transparent; }
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ============================================================
   Hero
============================================================ */
.hero{
  position: relative; height: 100svh; min-height: 560px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: center 20%;
  transform: scale(1.15);
  filter: grayscale(.15) contrast(1.05);
}
.hero-scrim{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.35) 35%, rgba(10,10,10,.75) 100%); }
.hero-scrim-bottom{ position:absolute; left:0; right:0; bottom:0; height:40%; background: linear-gradient(0deg, var(--black) 0%, transparent 100%); }

.hero-content{ position:relative; z-index:2; text-align:center; padding: 0 var(--pad); max-width: 1100px; }
.hero-kicker{ font-family: var(--f-mono); letter-spacing:.3em; font-size:.72rem; color: var(--white); opacity:.8; margin-bottom:22px; }
.hero-title{ font-size: clamp(2.4rem, 9vw, 6.4rem); color: var(--white); }
.hero-title .line{ display:block; overflow:hidden; }
.hero-title .line-inner{ display:block; transform: translateY(110%); }
.hero-title em{ font-style:normal; color: var(--red); }
.hero-sub{ max-width: 540px; margin: 26px auto 0; font-size: 1rem; opacity:.85; line-height:1.6; }
.hero-cta{ margin-top: 40px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.hero-scroll{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%); z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.hero-scroll span{ font-family: var(--f-mono); font-size:.62rem; letter-spacing:.3em; opacity:.7; }
.hero-scroll-line{ width:1px; height:46px; background: rgba(255,255,255,.25); overflow:hidden; }
.hero-scroll-line i{ display:block; width:100%; height:40%; background: var(--red); animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line{ 0%{ transform: translateY(-100%);} 100%{ transform: translateY(250%);} }

/* reveal helpers (animated via JS by adding .in) */
.reveal-fade{ opacity:0; transform: translateY(16px); }
.reveal-fade.in{ opacity:1; transform:none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ============================================================
   Marquee
============================================================ */
.marquee{
  background: var(--red); color: var(--white);
  padding: 16px 0; overflow:hidden; white-space:nowrap;
  border-top: 1px solid rgba(0,0,0,.15); border-bottom: 1px solid rgba(0,0,0,.15);
}
.marquee-track{ display:inline-flex; animation: marquee 26s linear infinite; }
.marquee-track span{
  font-family: var(--f-display); font-size: 1.1rem; letter-spacing:.03em; padding-right: 0;
}
@keyframes marquee{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ============================================================
   Manifesto
============================================================ */
.manifesto{ padding: 140px var(--pad) 40px; max-width: var(--container); margin: 0 auto; }
.manifesto-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center; }
.manifesto-text h2{ font-size: clamp(1.8rem, 3.4vw, 3rem); margin-bottom:22px; }
.manifesto-body{ font-size: 1rem; line-height:1.75; color: var(--grey); max-width: 460px; }
.manifesto-media{ position:relative; aspect-ratio: 4/5; overflow:hidden; border-radius:2px; }
.manifesto-media img{ width:100%; height:100%; object-fit:cover; transform: scale(1.1); }

.pillars{
  margin-top: 100px; display:grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}
.pillar{ padding: 40px 28px 0; border-right: 1px solid var(--line); }
.pillar:last-child{ border-right:none; }
.pillar-index{ font-family: var(--f-mono); color: var(--red); font-size:.85rem; }
.pillar h3{ font-size: 1.5rem; margin: 18px 0 12px; }
.pillar p{ color: var(--grey); font-size: .92rem; line-height:1.6; max-width: 260px; }

/* ============================================================
   Statement (scroll scrub)
============================================================ */
.statement{
  min-height: 90vh; display:flex; align-items:center; justify-content:center;
  padding: 100px var(--pad);
}
.statement-text{
  font-family: var(--f-display); text-transform:uppercase;
  font-size: clamp(2rem, 6.6vw, 5.4rem); line-height:1.05; text-align:center; max-width: 1200px;
}
.statement-text .word{ color: rgba(255,255,255,.14); transition: color .1s linear; }
.statement-text .word.on{ color: var(--white); }
.statement-text .word.hot{ color: var(--red); }

/* ============================================================
   Shop
============================================================ */
.shop{ padding: 60px var(--pad) 120px; max-width: var(--container); margin:0 auto; }
.shop-head{ max-width: 620px; margin-bottom: 64px; }
.shop-head h2{ font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 6px 0 20px; }
.shop-sub{ color: var(--grey); line-height:1.7; }

.product-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product-card{
  position:relative; background: var(--black-card); border:1px solid var(--line); border-radius:3px;
  overflow:hidden; opacity:0; transform: translateY(40px);
}
.product-card.in{ opacity:1; transform:none; transition: opacity .9s var(--ease), transform .9s var(--ease); }

.product-media{
  position:relative; aspect-ratio: 3/4; overflow:hidden; cursor:pointer;
  transform-style: preserve-3d; perspective: 800px;
}
.product-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition: opacity .5s ease, transform .6s var(--ease);
}
.product-media img.back{ opacity:0; }
.product-media:hover img.front{ opacity:0; }
.product-media:hover img.back{ opacity:1; }
.product-tag{
  position:absolute; top:14px; left:14px; z-index:2;
  font-family: var(--f-mono); font-size:.66rem; letter-spacing:.16em;
  background: rgba(10,10,10,.7); padding: 6px 10px; border:1px solid var(--line);
}
.product-body{ padding: 22px 22px 26px; }
.product-body h3{ font-family: var(--f-body); font-weight:700; font-size:1rem; letter-spacing:.02em; margin-bottom:8px; text-transform:none; }
.product-desc{ color: var(--grey); font-size:.85rem; line-height:1.55; margin-bottom:18px; min-height: 44px; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; }
.product-price{ font-family: var(--f-mono); font-size: 1.05rem; font-weight:600; }
.product-add{
  padding: 11px 18px; border:1px solid var(--white); font-size:.72rem; font-weight:700; letter-spacing:.08em;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.product-add:hover{ background: var(--white); color: var(--black); }

/* ============================================================
   Gallery
============================================================ */
.gallery{ position:relative; height: 90vh; min-height:520px; overflow:hidden; margin-top: 40px; }
.gallery-media{ position:absolute; inset:0; }
.gallery-media img{ width:100%; height:120%; object-fit:cover; object-position: center 30%; }
.gallery-caption{
  position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end;
  padding: 0 var(--pad) 80px;
}
.gallery-caption h2{ font-size: clamp(1.8rem, 4.6vw, 3.4rem); margin: 4px 0 16px; max-width: 780px; }
.gallery-caption p{ color: rgba(255,255,255,.75); max-width:460px; line-height:1.6; }

/* ============================================================
   Community
============================================================ */
.community{ padding: 140px var(--pad); max-width: var(--container); margin:0 auto; text-align:center; }
.community-mark{ width:44px; margin:0 auto 20px; opacity:.85; }
.community-head h2{ font-size: clamp(1.8rem, 4vw, 3rem); max-width: 820px; margin: 8px auto 0; }
.community-grid{
  margin-top: 80px; display:grid; grid-template-columns: repeat(3,1fr); gap: 30px; text-align:left;
}
.community-card{ border-top: 2px solid var(--line); padding-top: 24px; transition: border-color .3s ease; }
.community-card:hover{ border-color: var(--red); }
.community-num{ font-family: var(--f-mono); color: var(--red); font-size:.85rem; }
.community-card h3{ font-family: var(--f-body); font-weight:800; font-size:1.05rem; margin: 14px 0 10px; text-transform:uppercase; }
.community-card p{ color: var(--grey); font-size:.9rem; line-height:1.6; }
.community-cta{ margin-top: 64px; }

/* ============================================================
   Newsletter
============================================================ */
.newsletter{
  background: var(--black-soft); padding: 120px var(--pad); text-align:center;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.newsletter h2{ font-size: clamp(2rem, 5vw, 3.6rem); }
.newsletter > p{ color: var(--grey); margin: 18px 0 40px; }
.newsletter-form{ display:flex; max-width: 480px; margin: 0 auto; gap: 0; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 12px; }
.newsletter-form input{
  flex:1; background:transparent; border:none; color:var(--white); font-family: var(--f-mono);
  font-size:.9rem; letter-spacing:.05em; padding: 10px 4px; outline:none;
}
.newsletter-form input::placeholder{ color: var(--grey); }
.newsletter-form button{
  font-weight:800; font-size:.78rem; letter-spacing:.1em; padding: 10px 6px; color: var(--white);
  display:flex; align-items:center; gap:6px; transition: color .25s ease;
}
.newsletter-form button:hover{ color: var(--red); }
.newsletter-msg{ margin-top:16px; font-size:.85rem; color: var(--red); min-height: 1em; }

/* ============================================================
   Footer
============================================================ */
.footer{ padding: 80px var(--pad) 30px; max-width: var(--container); margin:0 auto; }
.footer-top{ display:flex; justify-content:space-between; gap: 60px; flex-wrap:wrap; padding-bottom: 60px; }
.footer-brand p{ color: var(--grey); margin-top:16px; line-height:1.6; font-size:.9rem; }
.footer-cols{ display:flex; gap: 60px; flex-wrap:wrap; }
.footer-col h4{ font-family: var(--f-mono); font-size:.7rem; letter-spacing:.18em; color: var(--grey); margin-bottom:18px; }
.footer-col a{ display:block; text-decoration:none; font-size:.92rem; margin-bottom:12px; opacity:.85; transition: opacity .2s ease, color .2s ease; }
.footer-col a:hover{ opacity:1; color: var(--red); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; padding-top: 26px;
  border-top:1px solid var(--line); color: var(--grey); font-size:.8rem; flex-wrap:wrap; gap:14px;
}
.footer-social{ display:flex; gap:16px; }
.footer-social a{ text-decoration:none; font-family: var(--f-mono); font-size:.75rem; letter-spacing:.1em; opacity:.8; }
.footer-social a:hover{ opacity:1; color: var(--red); }

.footer-credit{ text-align:center; padding-top: 22px; }
.footer-credit p{ font-size:.78rem; color: var(--grey); }
.footer-credit .heart{ display:inline-block; }
.footer-credit a{ color: var(--grey); text-decoration: underline; text-underline-offset: 3px; transition: color .2s ease; }
.footer-credit a:hover{ color: var(--red); }

/* ============================================================
   Cart drawer
============================================================ */
.cart-overlay{
  position: fixed; inset:0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px);
  z-index: 700; opacity:0; pointer-events:none; transition: opacity .4s ease;
}
.cart-overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position: fixed; top:0; right:0; bottom:0; width: min(420px, 100vw); z-index:800;
  background: var(--black-soft); border-left:1px solid var(--line);
  display:flex; flex-direction:column;
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.cart-drawer.open{ transform: translateX(0); }
.cart-drawer-head{ display:flex; justify-content:space-between; align-items:center; padding: 26px var(--pad) 20px; border-bottom:1px solid var(--line); }
.cart-drawer-head h3{ font-family: var(--f-body); font-weight:800; font-size:1rem; letter-spacing:.06em; }
.cart-drawer-head button{ font-size:1.1rem; opacity:.7; }
.cart-drawer-head button:hover{ opacity:1; }
.cart-items{ flex:1; overflow-y:auto; padding: 10px var(--pad); }
.cart-empty{ color: var(--grey); font-size:.9rem; padding: 40px 0; text-align:center; }
.cart-item{ display:flex; gap:14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item img{ width:66px; height:78px; object-fit:cover; border-radius:2px; }
.cart-item-info{ flex:1; }
.cart-item-info h4{ font-size:.86rem; font-weight:700; margin-bottom:4px; }
.cart-item-meta{ font-family: var(--f-mono); font-size:.72rem; color: var(--grey); margin-bottom:10px; }
.cart-item-row{ display:flex; align-items:center; justify-content:space-between; }
.qty-control{ display:flex; align-items:center; gap:10px; font-family: var(--f-mono); }
.qty-control button{ width:20px; height:20px; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:.8rem; }
.cart-item-remove{ font-family: var(--f-mono); font-size:.7rem; color: var(--grey); text-decoration:underline; }
.cart-item-remove:hover{ color: var(--red); }
.cart-item-price{ font-family: var(--f-mono); font-size:.86rem; }
.cart-footer{ padding: 20px var(--pad) 30px; border-top:1px solid var(--line); }
.cart-subtotal{ display:flex; justify-content:space-between; font-family: var(--f-mono); font-size:1rem; margin-bottom:8px; }
.cart-note{ color: var(--grey); font-size:.76rem; margin-bottom:18px; }
.cart-checkout{ width:100%; justify-content:center; }
.cart-error{ color: var(--red); font-size:.8rem; margin-top:10px; min-height:1em; }

/* ============================================================
   Size picker modal
============================================================ */
.size-overlay{
  position: fixed; inset:0; z-index:900; background: rgba(0,0,0,.75);
  display:flex; align-items:center; justify-content:center; padding: 20px;
  opacity:0; pointer-events:none; transition: opacity .4s ease;
}
.size-overlay.open{ opacity:1; pointer-events:auto; }
.size-modal{
  background: var(--black-card); border:1px solid var(--line); max-width: 760px; width:100%;
  display:grid; grid-template-columns: 1fr 1fr; position:relative;
  transform: scale(.94); transition: transform .4s var(--ease);
  max-height: 86vh; overflow:auto;
}
.size-overlay.open .size-modal{ transform: scale(1); }
.size-modal img{ width:100%; height:100%; object-fit:cover; min-height: 280px; }
.size-modal-info{ padding: 34px; display:flex; flex-direction:column; }
.size-modal-info h3{ font-family: var(--f-body); font-weight:800; font-size:1.15rem; margin-bottom:10px; text-transform:none; }
.size-modal-price{ font-family: var(--f-mono); font-size:1.2rem; margin-bottom:26px; }
.size-modal-label{ font-family: var(--f-mono); font-size:.7rem; letter-spacing:.15em; color: var(--grey); margin-bottom:12px; }
.size-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px; }
.size-pill{ padding: 9px 15px; border:1px solid var(--line); font-size:.8rem; font-weight:600; transition: all .2s ease; }
.size-pill:hover{ border-color: var(--white); }
.size-pill.active{ background: var(--white); color: var(--black); border-color: var(--white); }
.size-pill:disabled{ opacity:.35; text-decoration:line-through; cursor:not-allowed; }
.size-pill:disabled:hover{ border-color: var(--line); }
.size-close{ position:absolute; top:16px; right:16px; z-index:2; width:34px; height:34px; background: rgba(10,10,10,.6); border-radius:50%; }

/* ============================================================
   Toast
============================================================ */
.toast{
  position: fixed; bottom: 26px; left:50%; transform: translateX(-50%) translateY(20px);
  background: var(--white); color: var(--black); padding: 14px 24px; border-radius: 2px;
  font-size:.85rem; font-weight:700; letter-spacing:.02em; z-index:1000;
  opacity:0; pointer-events:none; transition: all .4s var(--ease);
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .manifesto-grid{ grid-template-columns: 1fr; }
  .manifesto-media{ aspect-ratio: 16/10; }
  .pillars{ grid-template-columns: 1fr; }
  .pillar{ border-right:none; border-bottom:1px solid var(--line); padding-bottom:30px; margin-bottom:10px; }
  .product-grid{ grid-template-columns: 1fr; }
  .community-grid{ grid-template-columns: 1fr; gap: 40px; }
  .size-modal{ grid-template-columns: 1fr; }
  .size-modal img{ min-height: 220px; }
  .footer-top{ gap: 40px; }
}
@media (max-width: 520px){
  .hero-cta{ flex-direction:column; width:100%; }
  .hero-cta .btn{ width:100%; justify-content:center; }
  .newsletter-form{ flex-direction:column; align-items:stretch; gap:14px; border-bottom:none; }
  .newsletter-form button{ justify-content:center; border:1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
