/* =========================================================
   iFody — PDP (Product Detail Page) · Mobile-First
   Estende styles.css do mockup C.
   ========================================================= */

/* Reserva espaço pra sticky buy no mobile */
body.has-sticky-buy {
  padding-bottom: calc(var(--bottombar-h) + 76px + var(--safe-bottom));
}

/* ============================================
   BREADCRUMB
   ============================================ */
.crumb {
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--text-3);
}
.crumb__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.crumb__row::-webkit-scrollbar { display: none; }
.crumb a { color: var(--text-2); }
.crumb__home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.crumb__home svg { flex-shrink: 0; opacity: .85; }
.crumb__sep { color: var(--text-3); opacity: .4; margin: 0 2px; }
.crumb__current {
  color: var(--text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw;
}
@media (min-width: 720px) {
  .crumb { font-size: 13px; }
  .crumb__row { padding: 18px 0; gap: 12px; }
  .crumb__current { max-width: 480px; }
}

/* ============================================
   PDP MAIN GRID
   ============================================ */
.pdp { padding: 16px 0 32px; }
@media (min-width: 880px) { .pdp { padding: 32px 0 64px; } }
.pdp__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 880px) {
  .pdp__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    align-items: flex-start;
  }
}

/* ============================================
   GALERIA
   ============================================ */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 880px) {
  .gallery {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }
}
.gallery__main {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #FFE3EF 0%, #FFF1D6 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery__image {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
}
.gallery__blob--1 {
  width: 60%; height: 60%;
  top: 5%; left: 5%;
  background: #FF8E53;
}
.gallery__blob--2 {
  width: 50%; height: 50%;
  bottom: 5%; right: 5%;
  background: #FF3D8A;
}
.gallery__product {
  position: absolute; inset: 0;
  background-image: url('../images/produto-pico-pulse.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .25));
}
.gallery__hint {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .55);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .04em;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
  display: none;
}
@media (hover:hover) {
  .gallery__hint { display: inline-flex; }
  .gallery__main:hover .gallery__hint { opacity: 1; }
}

.gallery__badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}
.gallery__badge--sale { left: 14px; background: var(--pink); color: white; }
.gallery__badge--top { left: 14px; top: 50px; background: white; color: #2A1A35; }
.gallery__fav,
.gallery__share {
  position: absolute;
  top: 14px; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A1A35;
  transition: all .25s var(--ease);
}
.gallery__fav { right: 14px; }
.gallery__share { right: 62px; }
.gallery__fav:active,
.gallery__share:active { transform: scale(.95); }
@media (hover:hover) {
  .gallery__fav:hover { background: var(--pink); color: white; }
}

.gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  max-width: 100%;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }
.thumb {
  flex: 0 0 64px;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--surface);
  transition: border-color .25s var(--ease);
  position: relative;
}
.thumb--on { border-color: var(--pink); }
.thumb__img {
  display: block;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
.thumb__img--1 {
  background-image: url('../images/produto-pico-pulse.png');
  background-color: #FFE3EF;
}
.thumb__img--2 {
  background:
    radial-gradient(circle at 30% 30%, #FF8EB8 0%, #FF3D8A 80%);
}
.thumb__img--3 {
  background:
    radial-gradient(circle at 70% 30%, #FFE3EF, #FFB9D6);
}
.thumb__img--4 {
  background:
    radial-gradient(circle at 50% 50%, #FFB9D6 0%, #FF3D5C 100%);
}
.thumb--video {
  background: linear-gradient(135deg, #FF3D8A, #8B3CFF);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  gap: 2px;
}
.thumb--video span { display: block; }
@media (min-width: 880px) {
  .thumb { flex: 0 0 80px; }
}

/* ============================================
   INFO
   ============================================ */
.info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info__brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.info__brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-light);
}
.info__sku {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-3);
  font-weight: 500;
}
.info__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.info__title em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-2);
}
@media (min-width: 720px) {
  .info__title { font-size: 32px; }
}
.info__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  flex-wrap: wrap;
}
.rating { display: inline-flex; align-items: center; gap: 6px; }
.rating__stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: .04em;
}
.rating strong { color: var(--text); font-weight: 700; }
.rating a {
  color: var(--text-2);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}
.info__sep { color: var(--text-3); }
.info__sold { color: var(--text-2); }
.info__hot { color: var(--orange); font-weight: 600; }

/* PDP · Bloco da oferta relâmpago (countdown grande, entre título e preço). */
.pdp-flash {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  margin: 0 0 14px;
  border-radius: var(--r-lg, 14px);
  background: linear-gradient(135deg, rgba(255, 61, 138, .14), rgba(139, 60, 255, .14));
  border: 1px solid rgba(255, 61, 138, .28);
  position: relative;
  overflow: hidden;
}
.pdp-flash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 61, 138, .18), transparent 60%);
  pointer-events: none;
}
.pdp-flash__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF3D8A, #8B3CFF);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(255, 61, 138, .35);
  position: relative;
  z-index: 1;
}
.pdp-flash__copy {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.pdp-flash__kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.005em;
}
.pdp-flash__label {
  font-size: 11px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.pdp-flash__cd {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}
.pdp-flash__cell {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.pdp-flash__cell strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  min-width: 1.4em;
  text-align: center;
  letter-spacing: -.02em;
  line-height: 1;
}
.pdp-flash__cell em {
  font-style: normal;
  font-size: 11px;
  color: var(--text-2);
  font-weight: 600;
}
.pdp-flash__sep {
  color: var(--pink-light, #FF3D8A);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  align-self: center;
}
@media (max-width: 600px) {
  /* Quebra em 2 linhas: ícone+texto em cima, countdown centralizado embaixo. */
  .pdp-flash {
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 10px 12px;
  }
  .pdp-flash__icon { width: 30px; height: 30px; }
  .pdp-flash__icon svg { width: 16px; height: 16px; }
  .pdp-flash__copy { gap: 1px; min-width: 0; }
  .pdp-flash__kicker { font-size: 12px; }
  .pdp-flash__label { font-size: 9px; letter-spacing: .06em; }
  .pdp-flash__cd {
    flex-basis: 100%;
    justify-content: center;
    padding-top: 8px;
    margin-top: 2px;
    border-top: 1px dashed rgba(255, 61, 138, .25);
  }
  .pdp-flash__cell strong { font-size: 20px; }
  .pdp-flash__cell em { font-size: 10px; }
}

/* Price */
.price-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px 18px 16px;
}
.price-box__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.price-box__was {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: line-through;
}
.price-box__off-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 8px;
  background: var(--pink);
  color: white;
  border-radius: 999px;
}
.price-box__hero {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.price-box__now {
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #00C48C 0%, #00A876 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.price-box__pix-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(0, 196, 140, .14);
  color: #00C48C;
  border: 1px solid rgba(0, 196, 140, .35);
  border-radius: 999px;
  vertical-align: middle;
}
.price-box__alt {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.price-box__alt strong { color: var(--text); font-weight: 700; }
@media (min-width: 720px) {
  .price-box { padding: 18px 22px 20px; }
  .price-box__now { font-size: 42px; }
}

/* Variant */
.variant {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.variant__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.variant__label {
  font-size: 13px;
  color: var(--text-2);
}
.variant__label strong { color: var(--text); font-weight: 700; margin-left: 4px; }
.variant__help {
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-light);
}
.variant__swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.swatch {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--line);
  position: relative;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.swatch--on {
  border-color: var(--pink);
  transform: scale(1.1);
}
.swatch--on::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--pink);
  border-radius: 50%;
}

/* Stock */
.stock {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stock__bar {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.stock__fill {
  height: 100%;
  background: linear-gradient(90deg, #FF3D8A, #FF8E53);
  border-radius: 999px;
  animation: pulse 2.5s infinite;
}
.stock__text {
  font-size: 12px;
  color: var(--text-2);
  white-space: nowrap;
}
.stock__text strong { color: var(--orange); font-weight: 700; }

/* Buy row */
.buy-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.qty {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.qty__minus,
.qty__plus {
  width: 40px;
  height: 52px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-2);
  transition: color .25s var(--ease);
}
@media (min-width: 720px) {
  .qty__minus, .qty__plus { width: 44px; height: 56px; font-size: 22px; }
}
.qty__minus:active,
.qty__plus:active { color: var(--pink); }
.qty__input {
  width: 36px;
  height: 52px;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
@media (min-width: 720px) {
  .qty__input { width: 40px; height: 56px; }
}
.qty__input::-webkit-outer-spin-button,
.qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Mobile estreito: empilha qty em cima, botao abaixo full-width */
.buy-row__add {
  flex: 1 1 100%;
  min-width: 0;
  padding: 16px 20px;
  min-height: 52px;
  font-size: 14px;
}
@media (min-width: 480px) {
  .buy-row__add { flex: 1 1 0; padding: 18px 28px; min-height: 56px; font-size: 15px; }
}

/* CTA secundario: "Prefere fechar no WhatsApp?" — abaixo do add-to-cart */
.info__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #25D366;
  background: rgba(37, 211, 102, .06);
  border: 1px solid rgba(37, 211, 102, .22);
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease;
}
.info__wa:hover { background: rgba(37, 211, 102, .12); border-color: rgba(37, 211, 102, .35); }
.info__wa svg { flex-shrink: 0; }

/* Fulfillment (retirada / entrega) */
.fulfill {
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
}
.fulfill__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.fulfill__title .i3d { width: 28px; height: 28px; flex-shrink: 0; }
.fulfill__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foption {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color .2s var(--ease);
}
.foption:hover { border-color: rgba(255, 61, 138, .3); }
.foption__icon { flex-shrink: 0; }
.foption__icon .i3d { width: 36px; height: 36px; }
.foption__body { flex: 1; min-width: 0; }
.foption__head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.foption__head strong {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -.01em;
}
.foption__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.4;
}
.foption__tag--free {
  background: rgba(0, 196, 140, .14);
  color: #00C48C;
}
.foption__tag--fast {
  background: rgba(139, 60, 255, .14);
  color: #B57BFF;
}
.foption__desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.45;
  margin: 0;
}
.foption__addr {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}
.foption__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--text-2);
}
.foption__status strong { color: var(--text); font-weight: 700; }
.foption__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 196, 140, .15);
}
.foption__dot--on  { background: #00C48C; }
.foption__dot--off { background: var(--text-3); box-shadow: 0 0 0 3px rgba(160, 160, 160, .12); }

/* Ship */
.ship {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px 18px;
}
.ship__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.ship__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.ship__link {
  font-size: 12px;
  color: var(--pink-light);
  font-weight: 600;
}
.ship__form {
  display: flex;
  gap: 8px;
}
.ship__form input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.ship__form input:focus { border-color: var(--pink); }
.ship__form .btn { padding: 10px 18px; min-height: auto; }

.ship__results {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ship__opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.ship__opt--best {
  border-color: var(--pink);
  background: rgba(255, 61, 138, .05);
}
.ship__opt strong { display: block; font-weight: 700; font-size: 13px; line-height: 1.2; }
.ship__opt span { font-size: 11px; color: var(--text-3); display: block; margin-top: 2px; }
.ship__price {
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  white-space: nowrap;
}

/* Trust grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.trust-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.trust-mini__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.trust-mini strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}
.trust-mini span { font-size: 10px; color: var(--text-3); }
@media (min-width: 720px) {
  .trust-mini { padding: 12px 14px; }
  .trust-mini__icon { width: 40px; height: 40px; font-size: 18px; }
  .trust-mini strong { font-size: 13px; }
  .trust-mini span { font-size: 11px; }
}

/* ============================================
   BRAND ROW (selo marca)
   ============================================ */
.brand-row {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-row__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 720px) {
  .brand-row { margin: 56px 0; padding: 32px 0; }
  .brand-row__inner {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }
}
.brand-row__seal { flex-shrink: 0; }
.brand-row__circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #2A1A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -.01em;
  box-shadow: 0 8px 20px rgba(255, 142, 83, .3);
}
.brand-row__copy { flex: 1; }
.brand-row__copy h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.brand-row__copy p { color: var(--text-2); font-size: 13px; line-height: 1.5; }
.brand-row__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-light);
  white-space: nowrap;
}

/* ============================================
   DESCRIPTION + NAV LATERAL
   ============================================ */
.desc { padding: 16px 0 48px; }
@media (min-width: 880px) { .desc { padding: 32px 0 96px; } }
.desc__grid { display: block; }
@media (min-width: 880px) {
  .desc__grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    align-items: flex-start;
  }
}

/* Nav lateral: vira chip-row no mobile (NAO sticky pra evitar voar) */
.desc__nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -20px 20px;
  padding: 12px 20px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.desc__nav::-webkit-scrollbar { display: none; }
@media (min-width: 880px) {
  .desc__nav {
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
    position: sticky;
    top: calc(var(--header-h) + 16px);
    border: 0;
    background: none;
    backdrop-filter: none;
  }
}
.desc__navlink {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .25s var(--ease);
}
@media (min-width: 880px) {
  .desc__navlink {
    background: transparent;
    border-radius: 0;
    border-left: 2px solid var(--line);
    padding: 12px 16px;
  }
}
.desc__navlink--on {
  background: var(--text);
  color: var(--bg);
}
@media (min-width: 880px) {
  .desc__navlink--on {
    background: transparent;
    color: var(--pink);
    border-left-color: var(--pink);
  }
}
.desc__navlink span { color: var(--text-3); margin-left: 4px; }

.desc__body { display: flex; flex-direction: column; gap: 48px; }
.desc__block { scroll-margin-top: calc(var(--header-h) + 64px); }
.desc__block .title {
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.15;
  margin-top: 10px;
}
.desc__lead {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 14px 0 28px;
}
.desc__block p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.features-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0;
}
@media (min-width: 720px) {
  .features-row { grid-template-columns: repeat(3, 1fr); }
}
.ftr-card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.ftr-card__num {
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -.025em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}
.ftr-card strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.ftr-card p {
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Specs */
.specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.specs th,
.specs td {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
}
.specs th {
  color: var(--text-3);
  font-weight: 500;
  width: 38%;
  padding-right: 12px;
}
.specs td { color: var(--text); font-weight: 500; }
@media (min-width: 720px) {
  .specs th, .specs td { padding: 16px 0; font-size: 15px; }
  .specs th { width: 30%; }
}

/* Steps */
.steps {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.steps li {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.steps__num {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.025em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
}
.steps li strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.steps li p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 0;
}
.warning {
  padding: 14px 18px;
  background: rgba(255, 185, 48, .1);
  border: 1px solid rgba(255, 185, 48, .3);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}
.warning strong { color: var(--yellow); }

/* Reviews */
.reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.rating--big {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.rating--big .rating__stars { font-size: 18px; }
.rating--big span { color: var(--text-3); font-size: 12px; }

.reviews__bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 24px 0;
  padding: 18px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.bar {
  display: grid;
  grid-template-columns: 28px 1fr 36px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-2);
}
.bar span { font-weight: 600; }
.bar__track {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 999px;
}
.bar strong { color: var(--text); font-weight: 600; text-align: right; }

.reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.review__head > div:not(.review__avatar) { flex: 1; min-width: 120px; }
.review__head strong { display: block; font-weight: 700; font-size: 14px; }
.review__meta { font-size: 11px; color: var(--text-3); }
.review__meta em { font-style: normal; color: #6BE876; font-weight: 600; }
.review__rate {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: .04em;
}
.review h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.review p {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.review__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.rtag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 4px 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
}
.reviews__more { display: inline-flex; margin-top: 20px; }

/* Reviews · empty state + form */
.reviews__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 32px 24px;
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.reviews__empty::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(255, 61, 138, .12), transparent 60%);
  pointer-events: none;
}
.reviews__empty > * { position: relative; }
.reviews__empty-stars {
  font-size: 28px;
  letter-spacing: .12em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.reviews__empty p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0;
}
.reviews__empty .btn { margin-top: 4px; }
@media (min-width: 720px) {
  .reviews__empty { padding: 40px 32px; gap: 16px; }
  .reviews__empty-stars { font-size: 32px; }
  .reviews__empty p { font-size: 15px; }
}

/* Form de submissão (custom — grava no CPT ifody_review) */
.rev-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
@media (min-width: 720px) {
  .rev-form { padding: 28px 32px; }
}
.rev-form[hidden] { display: none; }
.rev-form__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0;
}
.rev-form__note {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.rev-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rev-form__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .02em;
}
.rev-form__label em {
  font-style: normal;
  color: var(--text-3);
  font-weight: 400;
}
.rev-form__req {
  color: var(--pink);
  font-weight: 700;
}
.rev-form input[type="text"],
.rev-form textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
  outline: none;
  transition: border-color .2s var(--ease);
  box-sizing: border-box;
}
.rev-form textarea {
  min-height: 130px;
  resize: vertical;
}
.rev-form input[type="text"]:focus,
.rev-form textarea:focus { border-color: var(--pink); }
.rev-form input::placeholder,
.rev-form textarea::placeholder { color: var(--text-3); }

/* Star selector */
.rev-form__stars {
  display: flex;
  gap: 6px;
}
.rev-form__star {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text-3);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.rev-form__star:hover {
  border-color: var(--pink);
  color: var(--yellow);
  transform: translateY(-1px);
}
.rev-form__star.is-active {
  background: rgba(255, 61, 138, .14);
  border-color: var(--pink);
  color: var(--yellow);
}

/* Checkbox "Recomendo" */
.rev-form__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  user-select: none;
}
.rev-form__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink);
  cursor: pointer;
}

/* Footer (submit + cancelar) */
.rev-form__foot {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.rev-form__submit { min-width: 180px; }
.rev-form__submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Mensagem de retorno (sucesso/erro) */
.rev-form__msg {
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 12px;
}
.rev-form__msg[hidden] { display: none; }
.rev-form__msg--ok {
  background: rgba(0, 196, 140, .12);
  border: 1px solid rgba(0, 196, 140, .35);
  color: #6BE876;
}
.rev-form__msg--err {
  background: rgba(255, 77, 92, .1);
  border: 1px solid rgba(255, 77, 92, .35);
  color: #FF8893;
}

/* Variantes: login CTA, já-avaliou */
.rev-form--cta,
.rev-form--done {
  align-items: flex-start;
}
.rev-form--cta .btn { align-self: flex-start; }

.reviews__closed {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-3);
  font-size: 13px;
  text-align: center;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  position: relative;
  padding-right: 44px;
  transition: background .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: var(--pink-light);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { content: '−'; }
.faq__item[open] summary { background: rgba(255, 61, 138, .04); }
.faq__item p {
  padding: 0 18px 18px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   RELATED
   ============================================ */
.related { padding: 32px 0 48px; }
@media (min-width: 720px) { .related { padding: 48px 0 80px; } }
@media (min-width: 1100px) { .related .prods-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   STICKY BUY (mobile only)
   ============================================ */
.sticky-buy {
  position: fixed;
  bottom: calc(var(--bottombar-h) + var(--safe-bottom));
  left: 0; right: 0;
  background: rgba(15, 10, 26, .98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 80;
}
@media (min-width: 980px) { .sticky-buy { display: none; } }
.sticky-buy__info { display: flex; flex-direction: column; }
.sticky-buy__info strong {
  font-weight: 800;
  font-size: 20px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.sticky-buy__was {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--text-3);
  margin-top: 2px;
}
.sticky-buy .btn { flex: 1; }

/* ============================================
   MINI CART DRAWER
   ============================================ */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.drawer-bg.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 100%;
  max-width: 420px;
  background: var(--bg-2);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -20px 0 50px rgba(0, 0, 0, .4);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-weight: 700; font-size: 16px; }
.drawer__head h3 span { color: var(--text-3); font-weight: 500; margin-left: 4px; }
.drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  background: var(--surface);
  transition: color .25s var(--ease);
}
.drawer__close:active { color: var(--pink); }

.drawer__progress {
  padding: 14px 20px;
  background: rgba(255, 212, 133, .06);
  border-bottom: 1px solid var(--line);
}
.drawer__progress-bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.drawer__progress-fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 999px;
}
.drawer__progress > span {
  font-size: 12px;
  color: var(--text-2);
}
.drawer__progress strong { color: var(--gold); font-weight: 700; }

.drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: var(--surface);
  border-radius: 12px;
}
.drawer-item__img {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: var(--surface-2);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.drawer-item__body { flex: 1; min-width: 0; }
.drawer-item__cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 2px;
}
.drawer-item__name {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.drawer-item__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-item__price {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}
.drawer-item__qty {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
}
.drawer-item__qty button {
  width: 26px; height: 26px;
  color: var(--text-2);
  font-size: 14px;
}
.drawer-item__qty span { padding: 0 6px; font-weight: 600; }

.drawer__upsell {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 212, 133, .04);
}
.drawer__upsell .kicker { margin-bottom: 10px; }
.upsell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.upsell__img {
  width: 48px; height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.upsell > div { flex: 1; min-width: 0; }
.upsell strong { display: block; font-size: 13px; font-weight: 700; }
.upsell span { display: block; font-size: 11px; color: var(--text-3); }
.upsell__price { color: var(--gold) !important; font-weight: 700 !important; margin-top: 2px; }
.upsell__add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #2A1A0A;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drawer__foot {
  padding: 18px 20px calc(20px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
}
.drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 4px;
}
.drawer__total strong {
  font-weight: 800;
  font-size: 20px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.drawer__cta { width: 100%; }
.drawer__continue {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  padding: 8px;
  font-weight: 500;
}

/* ============================================
   STORIES VIDEO OVERLAY MODAL (PDP Gallery)
   ============================================ */
.ifody-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 5, 18, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: ifodyFadeIn 0.3s ease forwards;
}
.ifody-video-overlay.is-open {
  display: flex;
}
.ifody-video-overlay__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.ifody-video-overlay__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  height: 90vh;
  max-height: 640px;
  aspect-ratio: 9/16;
  background: #0a0512;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 61, 138, 0.8);
  box-shadow: 0 0 40px rgba(255, 61, 138, 0.4), 0 0 80px rgba(139, 60, 255, 0.2);
  display: flex;
  flex-direction: column;
  animation: ifodySlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.ifody-video-overlay__video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ifody-video-overlay__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ifody-video-overlay__close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 34px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.ifody-video-overlay__close:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}
.ifody-video-overlay__volume {
  position: absolute;
  right: 16px;
  bottom: 100px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}
.ifody-video-overlay__volume:hover {
  background: rgba(255, 61, 138, 0.8);
  transform: scale(1.1);
}
.ifody-video-overlay__volume .dashicons,
.ifody-video-overlay__volume svg {
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.ifody-video-overlay__product-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: ifodyCardPop 0.4s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ifody-video-overlay__product-img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.ifody-video-overlay__product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ifody-video-overlay__product-title {
  display: block;
  color: #0d0714;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ifody-video-overlay__product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
/* Adaptacao para herdar preco do WC */
.ifody-video-overlay__product-price span,
.ifody-video-overlay__product-price bdi,
.ifody-video-overlay__product-price ins,
.ifody-video-overlay__product-price .price-box__now,
.ifody-video-overlay__product-price .price-box__now span {
  background: linear-gradient(135deg, #00C48C 0%, #00A876 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  display: inline-block !important;
}
.ifody-video-overlay__product-price .price-box__was,
.ifody-video-overlay__product-price del {
  font-size: 11px !important;
  color: #7a7582 !important;
  text-decoration: line-through !important;
}
.ifody-video-overlay__product-price .price-box__pix-tag {
  display: none !important;
}
.ifody-video-overlay__add-to-cart {
  background: linear-gradient(135deg, #8B3CFF, #FF3D8A);
  border: 0;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(139, 60, 255, 0.3);
}
.ifody-video-overlay__add-to-cart:hover {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 6px 16px rgba(255, 61, 138, 0.4);
}
.ifody-video-overlay__add-to-cart .dashicons,
.ifody-video-overlay__add-to-cart svg {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

/* Animations */
@keyframes ifodyFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ifodySlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ifodyCardPop {
  from { opacity: 0; transform: scale(0.9) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@media (max-width: 480px) {
  .ifody-video-overlay__shell {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    border: 0;
  }
}

.ifody-video-overlay__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s, opacity 0.3s;
}

.ifody-video-overlay__nav:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 20px rgba(255, 61, 138, 0.4);
}

.ifody-video-overlay__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.ifody-video-overlay__nav--prev {
  left: 24px;
}

.ifody-video-overlay__nav--next {
  right: 24px;
}

.ifody-video-overlay__nav svg {
  display: block;
  pointer-events: none;
}

@media (max-width: 768px) {
  .ifody-video-overlay__nav {
    width: 40px;
    height: 40px;
  }
  .ifody-video-overlay__nav--prev {
    left: 8px;
  }
  .ifody-video-overlay__nav--next {
    right: 8px;
  }
}
