/* ============ INPURE Store ============ */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --line: #232323;
  --text: #f2f2f2;
  --text-2: #9a9a9a;
  --neon: #84e22b;
  --neon-dark: #5fae1c;
  --neon-soft: rgba(132, 226, 43, 0.12);
  --radius: 14px;
  --header-h: 64px;
  --topbar-h: 34px;
  --header-total: calc(var(--header-h) + var(--topbar-h));
  --font: 'Archivo', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

button { font-family: inherit; cursor: pointer; color: inherit; }

[hidden] { display: none !important; }

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

/* ============ Header ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neon);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 0 14px;
  text-align: center;
}

.topbar strong { font-weight: 900; margin-right: 5px; text-transform: uppercase; }

.topbar__msg { transition: opacity .28s ease; }

.topbar__msg.is-fading { opacity: 0; }

.topbar b { font-weight: 900; font-variant-numeric: tabular-nums; }

.topbar[hidden] { display: none !important; }

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.brand__word {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand__word--sm { font-size: 18px; }

.brand__accent { color: var(--neon); }

.brand__logo {
  height: 20px;
  width: auto;
  display: block;
}

.brand__logo--footer { height: 17px; }

.brand__store {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 7px;
  color: var(--text-2);
  text-transform: uppercase;
}

.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transition: border-color .2s, color .2s;
}

.cart-btn:hover { border-color: var(--neon); color: var(--neon); }

.cart-btn__count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--neon);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  min-width: 19px;
  height: 19px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 0 5px;
}

/* ============ Hero (carrossel de banners) ============ */
.hero-slider {
  position: relative;
  margin: var(--header-total) auto 28px;
  max-width: 1100px;
  overflow: hidden;
}

@media (min-width: 1141px) {
  .hero-slider {
    margin-top: calc(var(--header-total) + 24px);
    margin-bottom: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }
}

.hero-slider__track {
  display: flex;
  transition: transform .45s ease;
}

/* Banner de imagem (carrossel) */
.hero-banner {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  padding: 0;
  border: none;
  background: var(--bg-2);
  cursor: pointer;
}

/* Contagem regressiva sobre o banner (desktop / banner de imagem) */
.hero-banner__timer {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, .72);
  border: 1px solid var(--neon);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .5px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.hero-banner__timer b,
.hero-art__timer b {
  color: var(--neon);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  /* no celular, o banner vertical montado tem o próprio timer embutido */
  .hero-banner--art .hero-banner__timer { display: none; }
}

.hero-art__timer {
  display: none;
}

@media (max-width: 640px) {
  .hero-art__timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, .55);
    border: 1px solid rgba(132, 226, 43, .55);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
  }
}

.hero-banner picture img {
  width: 100%;
  height: auto;
  display: block;
}

/* Versão vertical do banner montada pelo site (celular) */
.hero-art { display: none; }

@media (max-width: 640px) {
  .hero-banner--art picture { display: none; }

  .hero-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 30px 24px;
    text-align: center;
    background:
      radial-gradient(85% 55% at 50% 28%, rgba(132, 226, 43, .16), transparent 70%),
      #060606;
  }

  .hero-art__logo { height: 18px; width: auto; margin-bottom: 4px; }

  .hero-art__scorpion { height: 88px; width: auto; margin-bottom: 4px; }

  .hero-art__kicker {
    color: var(--neon);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .hero-art__title {
    color: var(--text);
    font-size: clamp(28px, 8.5vw, 36px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.5px;
    text-transform: uppercase;
  }

  .hero-art__sub {
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.55;
    max-width: 300px;
  }

  .hero-art__cta {
    margin-top: 10px;
    background: var(--neon);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 12px 26px;
    border-radius: 999px;
  }
}

.hero-art__heart {
  color: var(--neon);
  text-shadow: 0 0 14px rgba(132, 226, 43, .9);
}

.hero {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 84px 20px 84px;
  text-align: center;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 560px; height: 380px;
  background: radial-gradient(closest-side, rgba(132,226,43,.14), transparent);
  pointer-events: none;
}

.hero--green .hero__glow {
  width: 760px; height: 460px;
  background: radial-gradient(closest-side, rgba(132,226,43,.24), transparent);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.5);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  z-index: 2;
  transition: border-color .2s, color .2s;
}

.hero-slider__arrow:hover { border-color: var(--neon); color: var(--neon); }
.hero-slider__arrow--prev { left: 16px; }
.hero-slider__arrow--next { right: 16px; }

.hero-slider__dots {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}

@media (max-width: 560px) {
  .hero-slider__arrow { display: none; }
  .hero { padding: 64px 20px 64px; }
}

.hero__kicker {
  color: var(--neon);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(34px, 7vw, 58px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.06;
  text-transform: uppercase;
}

.hero__sub {
  color: var(--text-2);
  margin-top: 16px;
  font-size: 16px;
}

.hero__cta { margin-top: 32px; }

/* ============ Botões ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 30px;
  border: none;
  text-decoration: none;
  letter-spacing: .3px;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
}

.btn--primary {
  background: var(--neon);
  color: #000;
}

.btn--primary:hover {
  box-shadow: 0 0 26px rgba(132, 226, 43, .45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--ghost:hover { border-color: var(--neon); color: var(--neon); }

.btn--block { width: 100%; }

/* ============ Catálogo ============ */
.catalog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 64px;
  scroll-margin-top: calc(var(--header-total) + 10px);
}

.catalog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}

.catalog__title {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.filters { display: flex; gap: 8px; }

.filters__btn {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s;
}

.filters__btn:hover { color: var(--text); }

.filters__btn.is-active {
  background: var(--neon-soft);
  border-color: var(--neon);
  color: var(--neon);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  padding: 0;
  transition: transform .2s, border-color .2s;
}

.card:hover { transform: translateY(-3px); border-color: #333; }

.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,.7);
  border: 1px solid var(--neon);
  color: var(--neon);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.card__body { padding: 16px; }

.card__cat {
  color: var(--text-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}

.card__price {
  color: var(--neon);
  font-size: 17px;
  font-weight: 800;
}

/* ============ Banner horizontal (meio do site) ============ */
.midbanner {
  max-width: 1100px;
  margin: 0 auto 72px;
  padding: 0 20px;
}

.midbanner__box {
  position: relative;
  border: 1px solid rgba(132, 226, 43, .35);
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(110% 160% at 0% 50%, rgba(132, 226, 43, .18), transparent 55%),
              linear-gradient(110deg, #131a0c 0%, #0b0b0b 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 40px 44px;
  flex-wrap: wrap;
}

.midbanner__box::after {
  content: 'INPUR≡';
  position: absolute;
  right: -20px;
  bottom: -34px;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .035);
  pointer-events: none;
  white-space: nowrap;
}

.midbanner__kicker {
  color: var(--neon);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.midbanner__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.12;
  max-width: 560px;
}

.midbanner__sub {
  color: var(--text-2);
  font-size: 15px;
  margin-top: 10px;
  max-width: 480px;
}

.midbanner__cta { position: relative; z-index: 1; flex-shrink: 0; }

@media (max-width: 700px) {
  .midbanner__box { padding: 30px 24px; }
}

/* ============ Coleções em destaque ============ */
.collections {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 72px;
}

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

@media (max-width: 820px) {
  .collections__grid { grid-template-columns: 1fr; }
}

.collection {
  position: relative;
  min-height: 250px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.collection:hover { transform: translateY(-3px); border-color: #333; }

.collection--m {
  background: radial-gradient(130% 110% at 0% 0%, #222 0%, transparent 55%),
              linear-gradient(160deg, #181818, #0b0b0b);
}

.collection--f {
  background: radial-gradient(130% 110% at 100% 0%, #232323 0%, transparent 55%),
              linear-gradient(200deg, #181818, #0b0b0b);
}

.collection--ltd {
  border-color: rgba(132, 226, 43, .35);
  background: radial-gradient(120% 120% at 100% 0%, rgba(132, 226, 43, .16), transparent 60%),
              linear-gradient(160deg, #131a0c, #0a0a0a);
}

.collection--ltd:hover { border-color: var(--neon); }

.collection__kicker {
  color: var(--text-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.collection__title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.collection__cta {
  margin-top: 14px;
  padding: 12px 22px;
  font-size: 13px;
}

/* ============ Marquee ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 15px 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee__track span {
  white-space: nowrap;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0 18px;
}

.marquee__track span.neon { color: var(--neon); padding: 0; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Instagram ============ */
.insta { padding: 56px 20px; }

.insta__bar {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.insta__icon { color: var(--neon); flex-shrink: 0; }

.insta__text { font-size: 16px; }

.insta__text strong { color: var(--neon); }

.insta__cta { padding: 11px 26px; font-size: 13px; }

.insta__grid {
  max-width: 1100px;
  margin: 24px auto 0;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
}

.insta__grid::-webkit-scrollbar { height: 8px; }
.insta__grid::-webkit-scrollbar-track { background: var(--bg-2); border-radius: 99px; }
.insta__grid::-webkit-scrollbar-thumb { background: #2c2c2c; border-radius: 99px; }
.insta__grid::-webkit-scrollbar-thumb:hover { background: var(--neon-dark); }

/* Card no estilo "print de post do Instagram" */
.ig-post {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #0e0e0e;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s, border-color .2s;
}

.ig-post:hover { transform: translateY(-3px); border-color: #333; }

@media (max-width: 560px) {
  .ig-post { flex-basis: 260px; }
}

.ig-post__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
}

.ig-post__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--neon);
  padding: 1px;
}

.ig-post__user { font-size: 13px; font-weight: 700; flex: 1; }

.ig-post__dots { color: var(--text-2); font-weight: 700; letter-spacing: 1px; }

.ig-post__media { aspect-ratio: 4 / 5; background: var(--bg-3); }

.ig-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-post__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 0;
}

.ig-post__actions svg {
  width: 22px;
  height: 22px;
  color: var(--text);
}

.ig-post__actions .ig-post__save { margin-left: auto; }

.ig-post__likes {
  font-size: 13px;
  font-weight: 700;
  padding: 9px 12px 0;
}

.ig-post__caption {
  font-size: 12.5px;
  color: var(--text-2);
  padding: 4px 12px 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ig-post__caption strong { color: var(--text); font-weight: 700; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 52px 20px 28px;
}

.footer__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__tagline { color: var(--text-2); font-size: 14px; }

.footer__col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__col li { color: var(--text-2); font-size: 14px; }

.footer__col a {
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
}

.footer__col a:hover { color: var(--neon); }

.footer__news {
  margin-top: 18px;
  padding: 12px 18px;
  font-size: 13px;
}

.footer__link {
  color: var(--neon);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.footer__link:hover { text-decoration: underline; }

.footer__about {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.footer__about:hover { color: var(--neon); }

.footer__pay {
  max-width: 1100px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.footer__pay-label { color: var(--text-2); font-size: 12.5px; margin-right: 4px; }

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-2);
  text-transform: uppercase;
}

.pay-badge svg { color: var(--neon); }

.footer__bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__bottom p { color: var(--text-2); font-size: 12.5px; }

/* ============ Produto ============ */
.product {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--header-total) + 28px) 20px 80px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color .2s;
}

.back-btn:hover { color: var(--neon); }

.product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 820px) {
  .product__layout { grid-template-columns: 1fr; gap: 28px; }
}

/* Slider */
.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}

.slider__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.6);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: border-color .2s, color .2s;
}

.slider__arrow:hover { border-color: var(--neon); color: var(--neon); }
.slider__arrow--prev { left: 14px; }
.slider__arrow--next { right: 14px; }

.slider__dots {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  padding: 0;
  transition: background .2s, width .2s;
}

.slider__dot.is-active {
  background: var(--neon);
  width: 22px;
  border-radius: 99px;
}

/* Infos */
.product__cat {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product__name {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.product__desc {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.product__pricebox {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.product__price {
  color: var(--neon);
  font-size: 32px;
  font-weight: 900;
}

.product__installment { color: var(--text-2); font-size: 13px; }

.product__field { margin-bottom: 22px; }

.product__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product__label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product__field > .product__label { margin-bottom: 10px; }

.product__field-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product__size-hint { font-size: 12px; color: var(--text-2); }
.product__size-hint.is-error { color: #ff5d5d; font-weight: 700; }

.guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.guide-link:hover { color: var(--neon); }

.sizes { display: flex; gap: 9px; flex-wrap: wrap; }

.sizes__btn {
  min-width: 52px;
  height: 46px;
  padding: 0 14px;
  border-radius: 11px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: all .15s;
}

.sizes__btn:hover { border-color: #444; }

.sizes__btn.is-active {
  background: var(--neon);
  border-color: var(--neon);
  color: #000;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
}

.qty__btn {
  width: 46px; height: 46px;
  background: var(--bg-2);
  border: none;
  color: var(--text);
  font-size: 20px;
  transition: color .15s;
}

.qty__btn:hover { color: var(--neon); }

.qty__value {
  width: 52px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
}

.product__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.product__perks {
  margin-top: 26px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.product__perks li {
  color: var(--text-2);
  font-size: 13px;
  padding-left: 20px;
  position: relative;
}

.product__perks li::before {
  content: '✓';
  color: var(--neon);
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* ============ Carrinho ============ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  z-index: 60;
  opacity: 0;
  transition: opacity .25s;
}

.overlay.is-open { opacity: 1; }

.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}

.cart.is-open { transform: translateX(0); }

.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.cart__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart__close {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 30px;
  line-height: 1;
  transition: color .2s;
}

.cart__close:hover { color: var(--text); }

.cart__items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 13px;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px;
}

.cart-item__img {
  width: 64px; height: 76px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item__name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }

.cart-item__meta { color: var(--text-2); font-size: 12px; margin-bottom: 7px; }

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-item__qty button {
  width: 24px; height: 24px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: none;
  color: var(--text);
  font-size: 14px;
  line-height: 1;
}

.cart-item__qty button:hover { border-color: var(--neon); color: var(--neon); }

.cart-item__qty span { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }

.cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  align-self: stretch;
  justify-content: space-between;
}

.cart-item__price { color: var(--neon); font-weight: 800; font-size: 14px; }

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 12px;
  text-decoration: underline;
  transition: color .2s;
}

.cart-item__remove:hover { color: #ff5d5d; }

.cart__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-2);
  font-size: 15px;
}

.cart__foot {
  border-top: 1px solid var(--line);
  padding: 18px 22px 22px;
}

.cart__promo {
  border: 1.5px dashed rgba(132, 226, 43, .5);
  border-radius: 11px;
  padding: 11px 14px;
  margin-bottom: 14px;
  background: rgba(132, 226, 43, .05);
}

.cart__promo.is-active {
  border-style: solid;
  border-color: var(--neon);
  background: var(--neon-soft);
}

.cart__promo-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
}

.cart__promo-text strong { color: var(--neon); }

.cart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 7px;
}

.cart__row--discount span:last-child {
  color: var(--neon);
  font-weight: 700;
}

.cart__shipping { margin-bottom: 16px; }

.cart__shipping-text {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
}

.cart__shipping-text strong { color: var(--text); }

.cart__shipping-text.is-unlocked {
  color: var(--neon);
  font-weight: 700;
}

.cart__shipping-bar {
  height: 6px;
  border-radius: 99px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
}

.cart__shipping-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--neon);
  border-radius: 99px;
  transition: width .35s ease;
}

.cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.cart__total strong { color: var(--neon); font-size: 22px; font-weight: 900; }

.cart__note {
  margin-top: 11px;
  text-align: center;
  color: var(--text-2);
  font-size: 12px;
}

/* ============ Modal ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  transition: opacity .25s ease;
}

.modal:not(.is-open) { pointer-events: none; }

.modal.is-open { opacity: 1; }

.modal__box {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 580px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transition: opacity .25s ease, transform .25s ease;
}

.modal.is-open .modal__box {
  opacity: 1;
  transform: none;
}

.modal__media { background: var(--bg-3); }

/* enquanto a imagem nova carrega, segura o espaço sem mostrar a anterior */
.modal__media.is-loading { aspect-ratio: 4 / 3; }

.modal__media.is-empty {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.modal__media-hint {
  border: 1.5px dashed #3a3a3a;
  border-radius: 12px;
  padding: 34px 28px;
  color: var(--text-2);
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.modal__media-hint span { color: #666; font-size: 12px; }

.modal__close {
  position: absolute;
  top: 10px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .6);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  z-index: 1;
  transition: border-color .2s, color .2s;
}

.modal__close:hover { border-color: var(--neon); color: var(--neon); }

.modal__box img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  background: #060606;
}

.modal__box img[hidden] { display: none !important; }

.modal__body { padding: 18px 22px 24px; }

.modal__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal__text { color: var(--text-2); font-size: 14px; line-height: 1.65; }

.modal__body:has(.modal__title:empty) { display: none; }

/* ============ WhatsApp flutuante ============ */
.wpp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .45);
  transition: transform .2s, box-shadow .2s;
}

.wpp-float:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .4);
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--neon);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 12px;
  z-index: 80;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  animation: toastIn .25s ease;
}

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============ Mobile ============ */
@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card__body { padding: 12px; }
  .card__name { font-size: 14px; }
  .card__price { font-size: 15px; }
  .catalog__head { flex-direction: column; align-items: flex-start; }
}
