/* =========================================================
   iFody — Extras: Marca House, Packaging, Store, Footer Pay
   Mobile-first. Estende styles.css.
   ========================================================= */

/* ============================================
   MARCA HOUSE — 4 sub-marcas
   ============================================ */
.brand-house {
  padding: 56px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 212, 133, .06) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 61, 138, .06) 0%, transparent 40%),
    var(--bg);
  position: relative;
}
@media (min-width: 720px) { .brand-house { padding: 96px 0; } }

.brand-house__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
@media (min-width: 720px) { .brand-house__head { margin-bottom: 56px; } }
.brand-house__head .title { margin: 12px 0 18px; }
.brand-house__lead {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 720px) { .brand-house__lead { font-size: 16px; } }

.brand-house__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .brand-house__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 980px) {
  .brand-house__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

.bcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.bcard:active { transform: scale(.98); }
@media (hover:hover) {
  .bcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
  }
}

.bcard__logo-wrap {
  aspect-ratio: 4/3;
  background: #F5E5F0; /* tint default, sobrescrito por modificador da marca */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bcard__logo-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
}
.bcard__logo {
  max-width: 72%;
  max-height: 78%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .08));
}

/* tints específicos por sub-marca */
.bcard--goz .bcard__logo-wrap {
  background: linear-gradient(135deg, #FFA8CC 0%, #C9A0FF 100%);
}
.bcard--goz { border-color: rgba(255, 61, 138, .35); }
.bcard--goz:hover { border-color: var(--pink); }

.bcard--dick .bcard__logo-wrap,
.bcard--mr-dick .bcard__logo-wrap {
  background: linear-gradient(135deg, #F2DFA8 0%, #D9B973 100%);
}
.bcard--dick,
.bcard--mr-dick { border-color: rgba(255, 212, 133, .35); }
.bcard--dick:hover,
.bcard--mr-dick:hover { border-color: var(--gold); }

.bcard--dom .bcard__logo-wrap,
.bcard--mr-dom .bcard__logo-wrap {
  background: linear-gradient(135deg, #F0BFC4 0%, #C97983 100%);
}
.bcard--dom,
.bcard--mr-dom { border-color: rgba(180, 30, 50, .35); }
.bcard--dom:hover,
.bcard--mr-dom:hover { border-color: #B41E32; }

.bcard--desire .bcard__logo-wrap,
.bcard--miss-desire .bcard__logo-wrap {
  background: linear-gradient(135deg, #FFA3C9 0%, #FF6FAE 100%);
}
.bcard--desire,
.bcard--miss-desire { border-color: rgba(255, 61, 138, .35); }
.bcard--desire:hover,
.bcard--miss-desire:hover { border-color: var(--pink-light); }

.bcard__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.bcard__chip {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-2);
  border: 1px solid var(--line);
  margin-bottom: 4px;
}
.bcard__name {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.015em;
  color: var(--text);
}
.bcard__tag {
  font-family: var(--hand);
  font-size: 22px;
  font-weight: 700;
  color: var(--pink-light);
  line-height: 1;
  margin: -2px 0 6px;
}
.bcard--dick .bcard__tag,
.bcard--mr-dick .bcard__tag { color: var(--gold); }
.bcard--dom .bcard__tag,
.bcard--mr-dom .bcard__tag { color: #C9425A; }
.bcard--desire .bcard__tag,
.bcard--miss-desire .bcard__tag { color: var(--pink-light); }

.bcard__desc {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
}
.bcard__cta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--pink-light);
  transition: transform .25s var(--ease);
  display: inline-block;
}
.bcard:hover .bcard__cta { transform: translateX(4px); }
.bcard--dick .bcard__cta,
.bcard--mr-dick .bcard__cta { color: var(--gold); }
.bcard--dom .bcard__cta,
.bcard--mr-dom .bcard__cta { color: #C9425A; }

.brand-house__seals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
@media (min-width: 720px) {
  .brand-house__seals {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    padding: 22px 28px;
  }
}
.seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
}
.seal .check {
  width: 20px; height: 20px;
  font-size: 10px;
  flex-shrink: 0;
}
@media (min-width: 720px) { .seal { font-size: 13px; } }

/* ============================================
   PACKAGING — embalagem discreta
   ============================================ */
.packaging {
  padding: 56px 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 61, 138, .04) 100%);
}
@media (min-width: 720px) { .packaging { padding: 96px 0; } }
.packaging__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 880px) {
  .packaging__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 64px;
    align-items: center;
  }
}

.packaging__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}
.packaging__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.packaging__sticker {
  position: absolute;
  top: 20px; right: 20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 11px;
  transform: rotate(-12deg);
  box-shadow: 0 10px 28px rgba(255, 61, 138, .4);
  padding: 8px;
  line-height: 1.1;
}
.packaging__sticker span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  opacity: .85;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.packaging__sticker strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}
@media (min-width: 720px) {
  .packaging__sticker { width: 124px; height: 124px; font-size: 12px; }
  .packaging__sticker strong { font-size: 17px; }
}

.packaging__copy .title { margin: 12px 0 18px; }
.packaging__copy > p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
}
.packaging__copy > p strong { color: var(--text); font-weight: 700; }
@media (min-width: 720px) {
  .packaging__copy > p { font-size: 16px; max-width: 520px; }
}

.packaging__checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pcheck {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.pcheck__num {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.pcheck strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 2px;
}
.pcheck span { font-size: 12px; color: var(--text-3); }

/* ============================================
   STORE — loja física
   ============================================ */
.store {
  padding: 56px 0;
}
@media (min-width: 720px) { .store { padding: 96px 0; } }

.store__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
@media (min-width: 720px) { .store__head { margin-bottom: 48px; } }
.store__head .title { margin: 12px 0 16px; }
.store__lead {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.store__hero {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}
@media (min-width: 720px) {
  .store__hero { aspect-ratio: 21/9; margin-bottom: 32px; }
}
.store__image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.store__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 10, 26, .85) 100%);
}
@media (min-width: 720px) {
  .store__overlay {
    background: linear-gradient(90deg, rgba(15, 10, 26, .9) 0%, rgba(15, 10, 26, .3) 50%, transparent 100%);
  }
}

.store__info-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(28, 20, 40, .85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
@media (min-width: 720px) {
  .store__info-card {
    left: 32px; right: auto;
    bottom: 32px; top: 32px;
    width: 360px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.store__info-card h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 10px 0 16px;
}
@media (min-width: 720px) { .store__info-card h3 { font-size: 22px; } }
.store__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, .25);
  border-radius: var(--r-sm);
}
.hour {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-2);
}
.hour strong { color: var(--text); font-weight: 700; }
.store__actions {
  display: flex;
  gap: 8px;
}
.store__actions .btn { flex: 1; padding: 12px 16px; min-height: 44px; font-size: 13px; }

.store__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 520px) {
  .store__features { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 720px) {
  .store__features { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.sfeat {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  min-width: 0;
}
.sfeat__ico {
  grid-row: 1 / span 2;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.sfeat strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: break-word;
}
.sfeat span {
  font-size: 11px;
  color: var(--text-3);
  min-width: 0;
  overflow-wrap: break-word;
  display: block;
}

/* ============================================
   FOOTER PAYMENT BLOCK
   ============================================ */
.ftr-col h4 { font-weight: 700; font-size: 14px; margin-bottom: 12px; color: var(--text); }
.ftr-col a {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  padding: 5px 0;
  transition: color .25s var(--ease);
}
.ftr-col a:hover { color: var(--pink-light); }

.ftr-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ftr-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-2);
  transition: all .25s var(--ease);
}
.ftr-social a:hover {
  color: var(--pink);
  border-color: var(--pink);
}

/* ============================================
   FOOTER · Loja em Goiânia (ftr-col--store)
   ============================================ */
.ftr-store {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}
/* Reset do block/padding herdado de `.ftr-col a` */
.ftr-col--store a {
  display: inline-flex;
  padding: 0;
}
.ftr-store__addr {
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.ftr-store__addr strong {
  color: var(--text);
  font-weight: 600;
  display: block;
}
.ftr-store__addr:hover { color: var(--pink-light); }
.ftr-store__addr:hover strong { color: var(--pink-light); }

.ftr-store__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ftr-store__row strong { color: var(--text); font-weight: 600; }

.ftr-store__ico {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-top: 2px;
}

.ftr-store__cta {
  margin-top: 4px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-light) !important;
  text-decoration: none;
  transition: color .25s var(--ease);
}
.ftr-store__cta:hover { color: var(--pink) !important; }

/* Override footer__grid pra suportar 5 colunas (brand + 4 cols) no desktop */
.footer__grid { grid-template-columns: 1fr !important; gap: 28px !important; }
@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr !important;
    gap: 40px !important;
  }
}

/* Payment row */
.ftr-pay {
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .ftr-pay {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    padding: 32px 0;
  }
}
.ftr-pay h4 {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text);
  margin-bottom: 14px;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.pay-badge {
  height: 36px;
  width: 56px;
  background: white;
  border-radius: 8px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.pay-badge img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.pay-cash {
  height: 36px;
  padding: 0 12px;
  background: rgba(76, 217, 100, .15);
  color: #6BE876;
  border: 1px solid rgba(76, 217, 100, .35);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.sec-card__ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(76, 217, 100, .15);
  color: #6BE876;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}
.sec-card--age .sec-card__ico {
  background: rgba(255, 61, 138, .15);
  color: var(--pink-light);
}
.sec-card strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  line-height: 1.2;
}
.sec-card span {
  font-size: 11px;
  color: var(--text-3);
  display: block;
  margin-top: 2px;
}

/* WhatsApp FAB removido — agora o slot está no bottom bar (.bottombar__item--wa) */

/* ============================================
   HAMBURGER + MENU DRAWER MOBILE
   ============================================ */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  margin-right: 4px;
  flex-shrink: 0;
}
@media (min-width: 980px) { .hamburger { display: none; } }
.hamburger:active { transform: scale(.95); }

.menu-drawer a { text-decoration: none; }
.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 280;
  pointer-events: none;
}
.menu-drawer.is-open { pointer-events: auto; }
.menu-drawer__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.menu-drawer.is-open .menu-drawer__bg { opacity: 1; }
.menu-drawer__panel {
  position: absolute;
  top: 0; left: 0;
  height: 100dvh;
  width: 88%;
  max-width: 380px;
  background: var(--bg-2);
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 50px rgba(0, 0, 0, .4);
}
.menu-drawer.is-open .menu-drawer__panel { transform: translateX(0); }
.menu-drawer__head {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 61, 138, .12) 0%, rgba(139, 60, 255, .12) 100%);
  border-bottom: 1px solid var(--line);
}
.menu-drawer__login {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.menu-drawer__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
}
.menu-drawer__login strong { display: block; font-size: 13px; font-weight: 700; }
.menu-drawer__login small {
  font-size: 11px;
  color: var(--text-3);
  display: block;
}
.menu-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--text-2);
}

.menu-tree {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  scrollbar-width: thin;
}
.menu-tree::-webkit-scrollbar { width: 4px; }
.menu-tree::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

.menu-tree__section {
  padding: 12px 18px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.menu-cat {
  border-bottom: 1px solid var(--line-soft);
}
.menu-cat__head {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.menu-cat__head::-webkit-details-marker { display: none; }
.menu-cat__head::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(-45deg);
  margin-left: auto;
  transition: transform .2s var(--ease);
}
.menu-cat[open] > .menu-cat__head::after { transform: rotate(45deg); }
.menu-cat--leaf > .menu-cat__head::after { display: none; }
.menu-cat--leaf > .menu-cat__head { text-decoration: none; }
.menu-cat__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.menu-cat__icon img { width: 100%; height: 100%; object-fit: cover; }
.menu-cat__count {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}
.menu-cat__sub {
  list-style: none;
  padding: 0 18px 14px 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-cat__sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-2);
}
.menu-cat__sub a:hover { color: var(--pink-light); }
.menu-cat__sub a span {
  font-size: 10px;
  color: var(--text-3);
}
.menu-cat__sub-all a {
  color: var(--pink-light);
  font-weight: 600;
  position: relative;
}
.menu-cat__sub-all a::after {
  content: '→';
  margin-left: 6px;
  opacity: .6;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.menu-cat__sub-all a:hover { color: var(--pink); }
.menu-cat__sub-all a:hover::after { opacity: 1; transform: translateX(3px); }

.menu-drawer__quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, .25);
}
.menu-drawer__quick a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.menu-drawer__quick a img { width: 24px; height: 24px; flex-shrink: 0; }

.menu-drawer__foot {
  padding: 14px 18px calc(14px + var(--safe-bottom));
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  background: var(--bg);
}
.menu-drawer__foot a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.menu-drawer__foot .wa-btn {
  background: #25D366;
  color: white;
}
.menu-drawer__foot .ig-btn {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

/* ============================================
   SUBNAV DROPDOWN (desktop) — categoria → subcategoria
   Host wrap top-level chip; dropdown abre no hover/focus.
   ============================================ */
.subnav-dd-host { position: relative; display: inline-flex; }

.subnav-dd {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  max-width: 320px;
  padding: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  z-index: 60;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .55), 0 0 0 1px rgba(255, 255, 255, .04) inset;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 980px) {
  .subnav-dd-host:hover .subnav-dd,
  .subnav-dd-host:focus-within .subnav-dd { display: flex; }
}
.subnav-dd__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.subnav-dd__item + .subnav-dd__item { border-top: 1px solid var(--line-soft); }
.subnav-dd__item:hover { background: var(--surface); color: var(--pink-light); }
.subnav-dd__item--active {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--bg);
  font-weight: 600;
}
.subnav-dd__item--active:hover { color: var(--bg); }
.subnav-dd__icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.subnav-dd__icon img { width: 100%; height: 100%; object-fit: cover; }
.subnav-dd__item--active .subnav-dd__icon { background: rgba(0, 0, 0, .25); }

/* ============================================
   CATEGORIA — utility de gradient (fallback visual)
   Espelha gradients() em plugins/ifody-auxiliar/.../admin-ui.php.
   Usada em chips do cat-hero, drawer e subnav dropdown quando a
   categoria não tem Miniatura.

   Seletor duplo (.cat-grad.cat-grad--gN) eleva specificity para 0,0,2,0
   e vence os wrappers (.hchip__icon, .menu-cat__icon, .subnav-dd__icon)
   independente da ordem de import dos CSSs.
   ============================================ */
.cat-grad.cat-grad--g1 { background: linear-gradient(135deg, #FF3D8A, #8B3CFF); }
.cat-grad.cat-grad--g2 { background: linear-gradient(135deg, #FF3D8A, #FF8E53); }
.cat-grad.cat-grad--g3 { background: linear-gradient(135deg, #8B3CFF, #3DC1FF); }
.cat-grad.cat-grad--g4 { background: linear-gradient(135deg, #FFB930, #FF3D8A); }

/* ============================================
   HCAT-CARD — card de categoria (slider)
   Usado em: (a) chips do cat-hero (PLP), (b) slider de categorias da home.
   Visual "premium dark": background translúcido + border gradient sutil
   (rosa→roxo→branco), glow rosa no hover, ícone 3D em cima + nome embaixo.
   ============================================ */
.hcat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 86px;
  min-height: 104px;
  padding: 10px 6px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  /* Border gradient: 1ª camada é o fill sólido do card (clipped no padding-box),
     2ª camada é o gradient sutil que aparece só na borda (border-box). */
  background:
    linear-gradient(rgba(28, 20, 40, .85), rgba(28, 20, 40, .85)) padding-box,
    linear-gradient(135deg, rgba(255, 61, 138, .35), rgba(139, 60, 255, .2) 50%, rgba(255, 255, 255, .08)) border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-2);
  text-decoration: none;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
@media (min-width: 720px) {
  .hcat-card {
    width: 100px;
    min-height: 116px;
    gap: 10px;
    padding: 12px 8px 14px;
    border-radius: 16px;
  }
}

.hcat-card:hover {
  color: var(--text);
  transform: translateY(-3px);
  /* Glow rosa: sombra colorida + halo interno sutil. */
  box-shadow:
    0 14px 32px -10px rgba(255, 61, 138, .4),
    0 0 0 1px rgba(255, 61, 138, .25) inset;
}

.hcat-card--active {
  color: var(--text);
  background:
    linear-gradient(rgba(255, 61, 138, .12), rgba(139, 60, 255, .08)) padding-box,
    linear-gradient(135deg, var(--pink, #FF3D8A), var(--purple, #8B3CFF)) border-box;
}

.hcat-card__media {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 720px) {
  .hcat-card__media { width: 60px; height: 60px; }
}

.hcat-card__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* Drop-shadow no PNG 3D segue o alpha — parece flutuar. */
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .4));
}
@media (min-width: 720px) {
  .hcat-card__icon { filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .45)); }
}

/* Variante gradient quando subcat não tem imagem 3D — span colorido circular. */
.hcat-card__icon.cat-grad {
  border-radius: 50%;
}

/* SVG do card "Todos" — segue cor do texto. */
.hcat-card__icon--svg {
  filter: none;
  color: var(--pink-light, #FF3D8A);
  width: 36px;
  height: 36px;
}
@media (min-width: 720px) {
  .hcat-card__icon--svg { width: 38px; height: 38px; }
}
.hcat-card--active .hcat-card__icon--svg { color: var(--text); }

.hcat-card__name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  word-break: break-word;
  hyphens: auto;
}
@media (min-width: 720px) {
  .hcat-card__name { font-size: 10px; }
}

/* Container slider quando contém .hcat-card — usado pela home (.cats-track) e
   pelo hero (.cat-hero__chips). Override do gap/padding default do .cats-track. */
.cats-track--cards {
  gap: 10px !important;
  padding-top: 4px;
  padding-bottom: 14px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .cats-track--cards { gap: 12px !important; }
}

/* ============================================
   FOOTER VISUAL UPGRADE
   ============================================ */
.ftr-banner {
  margin: 0 0 8px;
  padding: 36px 28px;
  background:
    linear-gradient(135deg, rgba(255, 61, 138, .15) 0%, rgba(139, 60, 255, .15) 100%),
    var(--bg);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.ftr-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 212, 133, .12) 0%, transparent 50%);
}
.ftr-banner__icons {
  display: flex;
  gap: -12px;
  position: relative;
  z-index: 1;
}
.ftr-banner__icons img {
  width: 56px; height: 56px;
  object-fit: contain;
  margin-left: -14px;
  transform: rotate(-8deg);
}
.ftr-banner__icons img:nth-child(2) { transform: rotate(4deg); }
.ftr-banner__icons img:nth-child(3) { transform: rotate(-2deg); }
.ftr-banner__icons img:nth-child(4) { transform: rotate(6deg); }
.ftr-banner__icons img:first-child { margin-left: 0; }
.ftr-banner__copy {
  flex: 1;
  min-width: 240px;
  position: relative;
  z-index: 1;
}
.ftr-banner__copy h3 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.ftr-banner__copy h3 em {
  font-style: normal;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ftr-banner__copy p {
  color: var(--text-2);
  font-size: 13px;
}
.ftr-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}
.ftr-banner__cta:hover { transform: translateY(-2px); }
@media (max-width: 720px) {
  .ftr-banner { padding: 24px 18px; }
  .ftr-banner__copy h3 { font-size: 18px; }
}

/* ============================================
   PAGINATION — usada em PLP, busca, blog (qualquer arquivo)
   Markup gerado por ifody_pagination() em inc/template-tags.php.
   Movida pra extras (sempre carregada) porque vivia em styles-plp.css
   e a busca nem PLP carregava → ficava sem estilo.
   ============================================ */
.pagination {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .25s var(--ease);
}
.pag-btn:hover:not(:disabled) { border-color: var(--pink); }
.pag-btn:disabled { opacity: .4; cursor: not-allowed; }
.pag-nums { display: inline-flex; align-items: center; gap: 4px; }
.pag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: all .25s var(--ease);
  padding: 0 8px;
}
.pag-num:hover { background: var(--surface); color: var(--text); }
.pag-num--on { background: var(--grad-primary); color: white; }
.pag-dots { color: var(--text-3); padding: 0 4px; }

/* Mobile: botões viram só ícone (sem texto) pra caber em uma linha. */
@media (max-width: 600px) {
  .pagination { gap: 8px; justify-content: space-between; }
  .pag-btn { padding: 0; width: 40px; height: 40px; justify-content: center; }
  .pag-btn__label { display: none; }
  .pag-nums { gap: 2px; }
  .pag-num { min-width: 32px; height: 32px; font-size: 12px; padding: 0 6px; }
}

/* =========================================================
   TOAST de feedback (add-to-cart, futuras notificações)
   Empilha no canto inferior direito (desktop) / centro inferior (mobile).
   ========================================================= */
.ifody-toast-host {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 32px);
}
@media (min-width: 720px) {
  .ifody-toast-host { left: auto; right: 24px; transform: none; bottom: 24px; }
}
.ifody-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--surface, #1C1428);
  color: var(--text, #F4EEFF);
  border: 1px solid rgba(255, 61, 138, .25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 1px rgba(255, 61, 138, .15);
  font-size: 14px;
  font-weight: 500;
  min-width: 260px;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  transition: opacity .25s ease, transform .35s cubic-bezier(.2, .9, .25, 1.15);
}
.ifody-toast--in { opacity: 1; transform: translateY(0) scale(1); }
.ifody-toast__icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary, linear-gradient(135deg, #FF3D8A, #8B3CFF));
  color: #fff;
}
.ifody-toast--error .ifody-toast__icon { background: linear-gradient(135deg, #FF3D6B, #B33C5C); }
.ifody-toast__body { flex: 1; min-width: 0; }
.ifody-toast__title { font-weight: 700; line-height: 1.2; }
.ifody-toast__sub { color: var(--text-3, #8A7B9F); font-size: 12px; margin-top: 2px; }
.ifody-toast__cta {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-light, #FF8EB8);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 142, 184, .3);
  transition: background .2s ease;
}
.ifody-toast__cta:hover { background: rgba(255, 142, 184, .1); }

/* =========================================================
   Estados visuais do botão pcard__add durante add-to-cart
   ========================================================= */
.pcard__add[disabled] { pointer-events: none; }
.pcard__add.is-loading {
  opacity: .7;
  position: relative;
}
.pcard__add.is-loading > * { visibility: hidden; }
.pcard__add.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  animation: ifody-spin .7s linear infinite;
}
.pcard__add.is-done {
  background: linear-gradient(135deg, #2BD18A 0%, #0FA876 100%) !important;
  animation: ifody-bump .35s ease;
}
@keyframes ifody-spin { to { transform: rotate(360deg); } }
@keyframes ifody-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* Pulse rápido no contador do header quando incrementa */
.cart__count.is-bump { animation: ifody-bump .4s ease; }
