/* ============================================================
   VOLT — Keep Rising
   Premium dark streetwear · volt-yellow accent
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --surface:   #141416;
  --surface-2: #1b1b1e;
  --border:    #29292e;
  --border-2:  #37373d;
  --text:      #f5f5f6;
  --text-dim:  #9a9aa4;
  --text-mute: #6b6b74;
  --volt:      #d4ff00;
  --volt-2:    #b6e000;
  --volt-soft: rgba(212,255,0,.14);
  --wa:        #25d366;
  --wa-2:      #1eb958;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --maxw:      1200px;
  --font:      'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display:   'Space Grotesk', 'Inter', sans-serif;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.txt-volt { color: var(--volt); }

/* ---------- Buttons ---------- */
.btn {
  --pad: 14px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad);
  font-family: var(--display);
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  border-radius: 100px;
  transition: transform .18s var(--ease), background .2s, box-shadow .25s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--volt { background: var(--volt); color: #111; }
.btn--volt:hover { background: var(--volt-2); box-shadow: 0 10px 30px -8px var(--volt-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn--ghost:hover { border-color: var(--volt); color: var(--volt); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-2); transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(37,211,102,.5); }
.btn--lg { --pad: 17px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--volt);
  color: #111;
  overflow: hidden;
  font-family: var(--display);
  font-weight: 600; font-size: .74rem; letter-spacing: .12em;
  padding: 8px 0;
  white-space: nowrap;
}
.announce__track {
  display: inline-flex; gap: 26px; align-items: center;
  animation: marquee 26s linear infinite;
  padding-left: 26px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--border); background: rgba(10,10,11,.9); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: inline-flex; align-items: center; gap: 7px; color: var(--text); }
.logo__bolt { color: var(--volt); filter: drop-shadow(0 0 8px var(--volt-soft)); flex-shrink: 0; }
.logo__word {
  font-family: var(--display); font-weight: 700; font-size: 1.42rem;
  letter-spacing: .18em; padding-left: 3px;
}

.nav { display: flex; gap: 34px; }
.nav__link {
  font-family: var(--display); font-weight: 500; font-size: .92rem;
  color: var(--text-dim); letter-spacing: .02em; position: relative;
  transition: color .2s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--volt); transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; color: var(--text);
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--volt); }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--volt); color: #111;
  font-family: var(--display); font-weight: 700; font-size: .66rem;
  min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 20px; display: grid; place-items: center;
  transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; flex-direction: column; gap: 4px; }
.menu-toggle span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: .25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 68px 0 auto 0; z-index: 55;
  background: var(--bg); border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 8px 22px 20px;
  transform: translateY(-120%); transition: transform .35s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__link {
  font-family: var(--display); font-weight: 500; font-size: 1.05rem;
  padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--text-dim);
}
.mobile-menu__link:hover { color: var(--volt); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 104px); }
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--volt-soft), transparent 62%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
}
.hero__eyebrow {
  display: inline-block; font-family: var(--display); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; color: var(--volt);
  background: var(--volt-soft); padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
}
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 6.4rem); line-height: .92; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero__sub { font-size: 1.1rem; color: var(--text-dim); max-width: 440px; margin-bottom: 30px; }
.hero__sub strong { color: var(--text); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 42px; }
.hero__meta { display: flex; gap: 34px; }
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--display); font-size: 1.5rem; font-weight: 700; }
.hero__meta span { font-size: .82rem; color: var(--text-mute); letter-spacing: .02em; }

.hero__mark { display: grid; place-items: center; }
.hero__mark-word {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(5rem, 15vw, 12rem); line-height: 1; letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 2px var(--border-2);
  background: radial-gradient(circle at 50% 40%, var(--volt-soft), transparent 70%);
  position: relative; user-select: none;
  animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .85; } 50% { opacity: 1; -webkit-text-stroke-color: var(--volt); } }

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(34px, 5vw, 56px); }
.section-head__eyebrow {
  font-family: var(--display); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; color: var(--volt);
}
.section-head__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; letter-spacing: -.02em;
  margin: 12px 0 14px;
}
.section-head__desc { color: var(--text-dim); font-size: 1.04rem; }

/* ---------- Features ---------- */
.features { padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 22px; transition: border-color .25s, transform .25s;
}
.feature:hover { border-color: var(--border-2); transform: translateY(-3px); }
.feature svg { color: var(--volt); margin-bottom: 14px; }
.feature h3 { font-family: var(--display); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.feature p { font-size: .9rem; color: var(--text-dim); }

/* ---------- Collection / Products ---------- */
.collection { padding: clamp(56px, 9vw, 108px) 0; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.product {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.product:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: var(--shadow); }
.product__media {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-2);
  cursor: pointer;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .product__media img { transform: scale(1.05); }
.product__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--volt); color: #111;
  font-family: var(--display); font-weight: 700; font-size: .68rem; letter-spacing: .08em;
  padding: 5px 11px; border-radius: 100px;
}
.product__quick {
  position: absolute; inset: auto 12px 12px; z-index: 2;
  background: rgba(10,10,11,.82); backdrop-filter: blur(8px);
  color: var(--text); font-family: var(--display); font-weight: 600; font-size: .9rem;
  padding: 12px; border-radius: var(--radius-sm); text-align: center;
  opacity: 0; transform: translateY(10px); transition: .3s var(--ease);
}
.product:hover .product__quick { opacity: 1; transform: translateY(0); }
.product__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product__color { font-size: .78rem; color: var(--text-mute); letter-spacing: .06em; text-transform: uppercase; }
.product__name { font-family: var(--display); font-weight: 600; font-size: 1.16rem; line-height: 1.2; }
.product__slogan { font-size: .88rem; color: var(--text-dim); font-style: italic; margin-top: -4px; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.product__price { display: flex; align-items: baseline; gap: 8px; }
.product__price strong { font-family: var(--display); font-weight: 700; font-size: 1.3rem; }
.product__price del { color: var(--text-mute); font-size: .92rem; }
.product__add {
  background: var(--volt-soft); color: var(--volt);
  border: 1px solid transparent;
  font-family: var(--display); font-weight: 600; font-size: .86rem;
  padding: 10px 16px; border-radius: 100px; transition: .2s;
}
.product__add:hover { background: var(--volt); color: #111; }

/* placeholder look (SVG fallback fills, ama arka planı da güzelleştir) */
.product__media img[src$=".svg"] { object-fit: contain; padding: 6%; }

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(56px, 9vw, 108px) 0; border-top: 1px solid var(--border); }
.manifesto__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.manifesto__text h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.05; letter-spacing: -.02em;
  margin: 12px 0 20px;
}
.manifesto__text p { color: var(--text-dim); font-size: 1.06rem; margin-bottom: 16px; max-width: 520px; }
.manifesto__text p strong { color: var(--volt); font-weight: 600; }
.manifesto__text .btn { margin-top: 12px; }
.manifesto__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; transition: border-color .25s, transform .25s;
}
.stat:hover { border-color: var(--volt); transform: translateY(-3px); }
.stat strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--volt); }
.stat span { font-size: .9rem; color: var(--text-dim); }

/* ---------- Contact ---------- */
.contact { padding: clamp(56px, 9vw, 104px) 0; }
.contact__inner {
  background:
    radial-gradient(circle at 20% 10%, var(--volt-soft), transparent 45%),
    var(--surface);
  border: 1px solid var(--border); border-radius: 26px;
  padding: clamp(40px, 6vw, 72px); text-align: center;
}
.contact__inner h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4.5vw, 2.8rem); letter-spacing: -.02em; }
.contact__inner p { color: var(--text-dim); font-size: 1.08rem; margin: 14px auto 28px; max-width: 460px; }
.contact__phone { display: block; margin-top: 18px; font-family: var(--display); font-weight: 600; color: var(--text-dim); letter-spacing: .04em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 54px 0 26px; background: var(--surface); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer__brand p { color: var(--text-dim); font-size: .94rem; margin-top: 12px; max-width: 220px; }
.footer__col h4 { font-family: var(--display); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 14px; }
.footer__col a { display: block; color: var(--text-dim); font-size: .94rem; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--volt); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border);
  color: var(--text-mute); font-size: .84rem;
}

/* ---------- Modal (product + checkout) ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; }
.modal.open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); animation: fade .3s; }
.modal__panel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(920px, 94vw); max-height: 92vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow); animation: pop .35s var(--ease);
}
.modal__panel--form { width: min(520px, 94vw); }
.modal__close {
  position: absolute; top: 14px; right: 16px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; font-size: 1.5rem; line-height: 1;
  background: var(--surface-2); color: var(--text-dim); display: grid; place-items: center;
  transition: .2s;
}
.modal__close:hover { background: var(--volt); color: #111; }
.modal__grid { display: grid; grid-template-columns: 1fr 1fr; }

@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translate(-50%,-46%) scale(.97); } }

/* Product modal content */
.pm__media { background: var(--surface-2); aspect-ratio: 4/5; }
.pm__media img { width: 100%; height: 100%; object-fit: cover; }
.pm__media img[src$=".svg"] { object-fit: contain; padding: 8%; }
.pm__info { padding: 34px 30px; display: flex; flex-direction: column; }
.pm__badge { align-self: flex-start; background: var(--volt-soft); color: var(--volt); font-family: var(--display); font-weight: 600; font-size: .72rem; letter-spacing: .08em; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.pm__color { font-size: .8rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .06em; }
.pm__name { font-family: var(--display); font-weight: 700; font-size: 1.8rem; line-height: 1.1; margin: 6px 0 10px; }
.pm__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.pm__price strong { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--volt); }
.pm__price del { color: var(--text-mute); }
.pm__desc { color: var(--text-dim); font-size: .96rem; margin-bottom: 22px; }
.pm__label { font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .04em; margin-bottom: 10px; display: flex; justify-content: space-between; }
.pm__label a { color: var(--text-mute); font-weight: 400; text-decoration: underline; }
.pm__sizes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.size-btn {
  min-width: 48px; padding: 11px 6px; text-align: center;
  background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 10px;
  font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--text);
  transition: .18s;
}
.size-btn:hover { border-color: var(--volt); }
.size-btn.active { background: var(--volt); color: #111; border-color: var(--volt); }
.pm__qty { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--border-2); border-radius: 100px; overflow: hidden; }
.qty-ctrl button { width: 40px; height: 42px; font-size: 1.2rem; color: var(--text); transition: .2s; }
.qty-ctrl button:hover { background: var(--surface-2); color: var(--volt); }
.qty-ctrl span { min-width: 36px; text-align: center; font-family: var(--display); font-weight: 600; }
.pm__add { margin-top: auto; }
.pm__err { color: #ff6b6b; font-size: .86rem; margin-bottom: 12px; min-height: 0; display: none; }
.pm__err.show { display: block; }

/* ---------- Drawer (cart) ---------- */
.drawer { position: fixed; inset: 0; z-index: 80; display: none; }
.drawer.open { display: block; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); animation: fade .3s; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--bg); border-left: 1px solid var(--border);
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  animation: slideIn .35s var(--ease);
}
@keyframes slideIn { from { transform: translateX(100%); } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid var(--border); }
.drawer__head h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.drawer__head span { color: var(--text-mute); font-weight: 400; }
.drawer__close { width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; background: var(--surface-2); color: var(--text-dim); display: grid; place-items: center; transition: .2s; }
.drawer__close:hover { background: var(--volt); color: #111; }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px 22px; }

.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item__img { width: 70px; height: 88px; border-radius: 10px; object-fit: cover; background: var(--surface-2); }
.cart-item__img[src$=".svg"] { object-fit: contain; padding: 6px; }
.cart-item__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-item__name { font-family: var(--display); font-weight: 600; font-size: .98rem; }
.cart-item__meta { font-size: .82rem; color: var(--text-mute); }
.cart-item__price { font-family: var(--display); font-weight: 600; color: var(--volt); font-size: .96rem; margin-top: 2px; }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item__remove { color: var(--text-mute); font-size: .78rem; text-decoration: underline; transition: color .2s; }
.cart-item__remove:hover { color: #ff6b6b; }
.mini-qty { display: inline-flex; align-items: center; border: 1px solid var(--border-2); border-radius: 100px; }
.mini-qty button { width: 28px; height: 30px; color: var(--text); font-size: 1rem; transition: .2s; }
.mini-qty button:hover { color: var(--volt); }
.mini-qty span { min-width: 24px; text-align: center; font-size: .86rem; font-family: var(--display); font-weight: 600; }

.drawer__empty { flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; color: var(--text-mute); padding: 22px; }
.drawer__empty svg { color: var(--border-2); }
.drawer.is-empty .drawer__body,
.drawer.is-empty .drawer__foot { display: none; }
.drawer.is-empty .drawer__empty { display: flex; }

.drawer__foot { padding: 20px 22px calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); background: var(--surface); }
.drawer__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: .96rem; }
.drawer__row strong { font-family: var(--display); font-size: 1.25rem; }
.drawer__row--muted { color: var(--text-mute); font-size: .85rem; }
.drawer__foot .btn { margin-top: 8px; }
.drawer__note { font-size: .76rem; color: var(--text-mute); text-align: center; margin-top: 12px; }

/* ---------- Checkout form ---------- */
.checkout { padding: 34px 30px; }
.checkout__title { font-family: var(--display); font-weight: 700; font-size: 1.5rem; }
.checkout__sub { color: var(--text-dim); font-size: .94rem; margin: 6px 0 22px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .84rem; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.field input, .field textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: .96rem;
  transition: border-color .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--volt); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field--row > div { margin: 0; }

.checkout__summary { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; margin: 8px 0 18px; }
.checkout__summary .cs-row { display: flex; justify-content: space-between; font-size: .9rem; padding: 4px 0; color: var(--text-dim); }
.checkout__summary .cs-total { display: flex; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--border); }
.checkout__summary .cs-total strong { font-family: var(--display); font-size: 1.2rem; }
.checkout__summary .cs-total .txt-volt { font-size: 1.2rem; }
.checkout__legal { font-size: .76rem; color: var(--text-mute); text-align: center; margin-top: 12px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120px);
  background: var(--volt); color: #111;
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  padding: 13px 22px; border-radius: 100px; z-index: 120;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.6);
  transition: transform .4s var(--ease); display: flex; align-items: center; gap: 8px;
  max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__mark { display: none; }
  .manifesto__inner { grid-template-columns: 1fr; gap: 34px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .modal__grid { grid-template-columns: 1fr; }
  .pm__media { aspect-ratio: 16/12; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .products { grid-template-columns: 1fr; gap: 20px; }
  .product__media { aspect-ratio: 5/5.4; }
  .hero__meta { gap: 22px; }
  .hero__meta strong { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .field--row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
