:root {
  --bg: #050505;
  --bg-2: #0a0c12;
  --panel: #0e1118;
  --ink: #e8f7ff;
  --muted: #8fa3b8;
  --line: rgba(0, 255, 255, 0.16);
  --cyan: #00ffff;
  --cyan-dim: #00c8c8;
  --magenta: #ff00ff;
  --magenta-deep: #c400c4;
  --grid: rgba(0, 255, 255, 0.05);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --glow-cyan: 0 0 18px rgba(0, 255, 255, 0.35);
  --glow-magenta: 0 0 18px rgba(255, 0, 255, 0.35);
  --font-display: "Exo 2", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --max: 1180px;
  --header-h: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(900px 500px at 85% -10%, rgba(255, 0, 255, 0.18), transparent 55%),
    radial-gradient(700px 420px at 5% 15%, rgba(0, 255, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #050505 0%, #080a10 50%, #050505 100%);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  line-height: 1.5;
  min-height: 100vh;
  font-size: 1.05rem;
  font-weight: 500;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.35));
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 16px rgba(255, 0, 255, 0.4));
}

.brand-text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0 0.9rem;
  border: 1px solid rgba(0, 255, 255, 0.35);
  background: rgba(0, 255, 255, 0.05);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.cart-link:hover,
.cart-link:focus-visible {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: var(--glow-magenta);
}

.cart-count {
  min-width: 1.3rem;
  height: 1.3rem;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: var(--magenta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--glow-magenta);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.nav-panel {
  position: sticky;
  top: var(--header-h);
  z-index: 39;
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 1rem 1rem;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-panel[hidden] { display: none; }

.nav-panel a {
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.35) 10%, rgba(5, 5, 5, 0.92) 58%),
    radial-gradient(circle at 70% 40%, rgba(255, 0, 255, 0.2), transparent 40%),
    radial-gradient(circle at 30% 60%, rgba(0, 255, 255, 0.15), transparent 35%),
    url("../assets/fuga.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: ken 18s var(--ease) infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 255, 255, 0.05) 0 1px,
    transparent 1px 3px
  );
  opacity: 0.45;
  pointer-events: none;
}

@keyframes ken {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-2%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-logo {
  width: min(92vw, 420px);
  height: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 0 22px rgba(0, 255, 255, 0.35));
  animation: rise 0.9s var(--ease) both;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  animation: rise 0.9s var(--ease) 0.1s both;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: rise 0.9s var(--ease) 0.2s both;
}

.hero h1 span {
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.15rem;
  animation: rise 0.9s var(--ease) 0.3s both;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.4s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.3rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #00d4ff 45%, var(--magenta));
  color: #050505;
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--glow-cyan), var(--glow-magenta);
}

.btn-ghost {
  border: 1px solid rgba(0, 255, 255, 0.45);
  color: var(--cyan);
  background: rgba(0, 255, 255, 0.04);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: var(--glow-magenta);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}

.section-top {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

.section-head p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 40ch;
}

.link-more {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.product-grid,
.platform-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.1rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 255, 0.55);
  box-shadow: var(--shadow), 0 0 28px rgba(255, 0, 255, 0.12);
}

.product-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #050505;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card-media img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1rem 1.05rem 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.product-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.product-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.platform-tag,
.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.platform-tag {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.35);
}

.pill {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.28rem 0.6rem;
  background: var(--magenta);
  color: #fff;
  box-shadow: var(--glow-magenta);
  border-radius: 2px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.price-row strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--cyan);
}

.price-row.big strong { font-size: 2.2rem; }

.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.platform-tile {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.2rem;
  background:
    linear-gradient(160deg, rgba(0, 255, 255, 0.08), transparent 55%),
    var(--bg-2);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.platform-tile:hover,
.platform-tile:focus-visible {
  transform: translateY(-3px);
  border-color: var(--magenta);
  box-shadow: 0 0 24px rgba(255, 0, 255, 0.15);
}

.platform-tile strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.platform-tile span { color: var(--muted); font-size: 1rem; }
.platform-tile.is-soon { opacity: 0.5; }

.strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
}

.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
}

.strip-item span { color: var(--muted); font-size: 1rem; }

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem) 0;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(0, 255, 255, 0.28);
}

.chips {
  max-width: var(--max);
  margin: 1.25rem auto 0;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
}

.chip.is-active,
.chip:hover,
.chip:focus-visible {
  color: var(--bg);
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.product-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.product-media {
  display: grid;
  gap: 0.85rem;
}

.product-gallery {
  position: relative;
  background: #050505;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.08);
}

.product-gallery img,
.product-gallery [data-main-image] {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: opacity 0.25s var(--ease);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.55rem;
}

.gallery-thumb {
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050505;
  opacity: 0.65;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  opacity: 1;
  border-color: var(--cyan);
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--magenta);
  box-shadow: var(--glow-magenta);
}

.product-video {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.product-video h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0, 255, 255, 0.25);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.1);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-info h1 {
  margin: 0.4rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 0.98;
}

.crumb {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
}

.lead { color: var(--muted); margin: 0 0 1rem; }

.feature-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.buy-box {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(0, 255, 255, 0.03);
  box-shadow: inset 0 0 30px rgba(255, 0, 255, 0.04);
}

.cart-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.cart-list { display: grid; gap: 0.75rem; }

.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--panel);
}

.cart-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #050505;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-info h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-info span { color: var(--muted); font-size: 0.95rem; }

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--line);
  padding: 0.25rem 0.45rem;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  color: var(--cyan);
}

.cart-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  min-width: 6rem;
  text-align: right;
  color: var(--cyan);
}

.cart-remove {
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  color: var(--muted);
}

.cart-summary {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.06);
}

.cart-summary h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.summary-line.total {
  color: var(--ink);
  font-size: 1.15rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

.summary-line.total strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--magenta);
}

.summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-form {
  display: grid;
  gap: 0.65rem;
}

.checkout-form label {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-form input {
  border: 1px solid var(--line);
  background: #090b10;
  color: var(--ink);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.empty,
.empty-block {
  max-width: var(--max);
  margin: 0 auto;
  color: var(--muted);
}

.empty-block {
  padding: 3rem 0;
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.empty-block h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: end;
}

.footer-brand img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.3));
  margin-bottom: 0.5rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-float span {
  padding-right: 0.15rem;
}

@media (max-width: 560px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

.reveal-on {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-on.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .product-grid,
  .platform-grid,
  .strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-layout,
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand img { height: 48px; }
  .hero-logo { width: min(88vw, 300px); }
  .product-grid,
  .platform-grid,
  .strip-inner { grid-template-columns: 1fr; }
  .cart-row {
    grid-template-columns: 84px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-on,
  .hero-logo,
  .eyebrow,
  .hero h1,
  .hero-lead,
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}
