/* ============================================================
   IGNITE — Kit 3 Vapes · styles (clean PDP theme)
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --bg-card: #ffffff;
  --line: #e7e7ea;
  --fg: #0d0d0f;
  --muted: #6b6b74;
  --muted-2: #9a9aa4;
  --accent: #21c25e;
  --accent-dark: #189a4a;
  --accent-soft: #e7f9ee;
  --danger: #ff3b30;
  --purple: #8b7cf6;
  --whatsapp: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --maxw: 1240px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent); color: #fff; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 760px; }

/* ---------- scroll progress ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--fg);
  width: 0%;
  z-index: 9999;
  transition: width .1s linear;
}

/* ============ reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.nav-main {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-size: 19px;
  letter-spacing: .01em;
  font-weight: 400;
  white-space: nowrap;
  color: var(--fg);
}
.logo__img { height: 34px; width: auto; }
.logo--footer .logo__img { height: 30px; }

.nav-categories {
  display: none;
  flex: 1;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--fg);
}
.nav-categories > a {
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav-categories > a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 2px; background: var(--fg);
  transition: right .3s var(--ease);
}
.nav-categories > a:hover::after { right: 0; }
.nav-categories a.atacado { color: var(--accent-dark); }

.nav-drop { position: relative; }
.nav-drop__trigger {
  display: flex; align-items: center; gap: 5px;
  background: none; border: none; padding: 8px 0;
  font: inherit; color: var(--fg); text-transform: uppercase; letter-spacing: .02em;
}
.nav-drop__trigger svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.4; fill: none; transition: transform .3s var(--ease); }
.nav-drop:hover .nav-drop__trigger svg { transform: rotate(180deg); }
.nav-drop__panel {
  position: absolute; top: 100%; left: -16px; margin-top: 10px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.14);
  padding: 10px;
  min-width: 210px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav-drop__panel--wide { min-width: 340px; display: grid; grid-template-columns: 1fr 1fr; }
.nav-drop:hover .nav-drop__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop__panel a {
  padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
  text-transform: none; letter-spacing: 0; color: var(--muted);
  transition: background .2s, color .2s;
}
.nav-drop__panel a:hover { background: var(--bg-alt); color: var(--fg); }

.nav-actions { display: flex; gap: 8px; margin-left: auto; }
.icon-btn {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: background .2s, transform .2s;
}
.icon-btn:hover { background: var(--bg-alt); transform: scale(1.06); }
.icon-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--fg); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0);
  transition: transform .3s var(--ease);
}
.cart-count.show { transform: scale(1); }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 24px; background: none; border: none; padding: 8px 0;
}
.menu-toggle span {
  height: 2px; width: 100%; background: var(--fg); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0; top: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 400;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 32px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s var(--ease), opacity .4s;
}
.mobile-overlay.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-overlay ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-overlay li a {
  font-size: 28px; font-weight: 800; letter-spacing: -.02em;
  display: inline-block; padding: 8px 0;
  opacity: 0; transform: translateX(-24px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.mobile-overlay.open li a { opacity: 1; transform: translateX(0); }
.mobile-overlay.open li:nth-child(1) a { transition-delay: .05s; }
.mobile-overlay.open li:nth-child(2) a { transition-delay: .1s; }
.mobile-overlay.open li:nth-child(3) a { transition-delay: .15s; }
.mobile-overlay.open li:nth-child(4) a { transition-delay: .2s; }
.mobile-overlay.open li:nth-child(5) a { transition-delay: .25s; }
.mobile-overlay__divider { height: 1px; background: var(--line); margin: 24px 0; }
.mobile-overlay__inst { flex-direction: row !important; flex-wrap: wrap; gap: 16px !important; }
.mobile-overlay__inst a { font-size: 14px !important; font-weight: 500 !important; color: var(--muted); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 18px 32px 0;
  font-size: 13px;
  color: var(--muted-2);
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb span { color: var(--fg); font-weight: 600; }

/* ============ BUTTONS ============ */
.btn-add {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--fg);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .01em;
  border: none;
  width: 100%;
  overflow: hidden;
  transition: transform .25s var(--ease), background .3s;
}
.btn-add:hover { transform: translateY(-2px); }
.btn-add:active { transform: translateY(0) scale(.98); }
.btn-add--sm { width: auto; padding: 15px 26px; }

/* ============ PDP LAYOUT ============ */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 28px 32px 90px;
}

.pdp__media { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.pdp__frame {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.pdp__badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--fg); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
  z-index: 2;
}
.pdp__image {
  position: absolute; inset: 32px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.pdp__image.active { opacity: 1; transform: scale(1); pointer-events: auto; }

.pdp__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  z-index: 3;
  opacity: 0;
  transition: opacity .25s var(--ease), background .2s, transform .25s var(--ease);
}
.pdp__nav svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.pdp__nav--prev { left: 14px; }
.pdp__nav--next { right: 14px; }
.pdp__frame:hover .pdp__nav { opacity: 1; }
.pdp__nav:hover { background: var(--fg); color: #fff; transform: translateY(-50%) scale(1.08); }
@media (hover: none) {
  .pdp__nav { opacity: 1; background: rgba(255,255,255,0.85); }
}

.pdp__thumbs { display: flex; gap: 10px; margin-top: 16px; justify-content: center; flex-wrap: wrap; }
.pdp__thumb {
  padding: 10px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--muted);
  font-weight: 700; font-size: 12.5px;
  transition: border-color .2s, color .2s, background .2s;
}
.pdp__thumb.active, .pdp__thumb:hover { border-color: var(--fg); color: var(--fg); background: var(--bg-alt); }

.pdp__info { padding-top: 4px; }
.pdp__eyebrow {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px;
}
.pdp__title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900; letter-spacing: -.025em; line-height: 1.08;
  margin: 0 0 10px;
}
.pdp__variant-summary { color: var(--muted); font-size: 15px; margin: 0 0 18px; }

.pdp__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.pdp__rating a { font-size: 13.5px; font-weight: 600; color: var(--muted); transition: color .2s; }
.pdp__rating a:hover { color: var(--fg); text-decoration: underline; }

.stars { position: relative; display: inline-block; font-size: 16px; line-height: 1; color: var(--line); }
.stars::before { content: '★★★★★'; letter-spacing: 2px; color: #e2e2e6; }
.stars span { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: #ffb02e; }
.stars span::before { content: '★★★★★'; letter-spacing: 2px; }

.pdp__price {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px;
}
.pdp__price-old { width: 100%; font-size: 13.5px; color: var(--muted-2); }
.pdp__price-old s { text-decoration: line-through; }
.pdp__price-now { font-size: 32px; font-weight: 900; letter-spacing: -.02em; }
.pdp__price-now strong { font-weight: 900; }
.pdp__price-pix { font-size: 14px; font-weight: 700; color: var(--accent-dark); width: 100%; }
.pdp__price-install { width: 100%; font-size: 13px; color: var(--muted); margin-top: 2px; }
.pdp__price-install a { color: var(--fg); text-decoration: underline; }

.shipping-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-soft); border: 1px solid rgba(33,194,94,0.25);
  color: var(--accent-dark);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  margin-bottom: 22px;
}
.shipping-badge strong { font-weight: 800; }
.shipping-badge svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.bundle-flavors { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.bundle-flavor {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.bundle-flavor:last-child { border-bottom: none; }
.bundle-flavor__dot {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}
.bundle-flavor__name { display: block; font-size: 14.5px; font-weight: 700; }
.bundle-flavor__desc { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }

.pdp__buy { display: flex; gap: 12px; margin-bottom: 20px; }
.qty {
  display: flex; align-items: center; gap: 2px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 4px; flex-shrink: 0;
}
.qty button {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: transparent; color: var(--fg); font-size: 18px; font-weight: 700;
  transition: background .2s;
}
.qty button:hover { background: var(--bg-alt); }
.qty span { width: 30px; text-align: center; font-weight: 700; }

.pdp__desc { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 22px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.tag-chip:hover { border-color: var(--fg); color: var(--fg); background: var(--bg-alt); }
.tag-chip span { color: var(--muted-2); }

/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip__row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  padding: 20px 32px;
}
.trust-strip__row span {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--fg);
}
.trust-strip__row svg { width: 20px; height: 20px; fill: none; stroke: var(--accent-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ============ SECTION GENERIC ============ */
.section { padding: 90px 0; border-top: 1px solid var(--line); }
.section__head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.section__head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900; letter-spacing: -.02em; line-height: 1.12;
  margin: 0 0 14px;
}
.muted { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ============ ARTICLE ============ */
.article { background: var(--bg-alt); }
.article h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 900; letter-spacing: -.02em; margin: 0 0 20px; }
.article h3 { font-size: 19px; font-weight: 800; margin: 36px 0 12px; }
.article p { color: #35353c; font-size: 15.5px; line-height: 1.8; margin: 0 0 14px; }
.article strong { color: var(--fg); }

/* ============ SPECS ============ */
.specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 36px;
}
.specs-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 26px 18px; text-align: center;
}
.specs-card__value { display: block; font-size: 28px; font-weight: 900; letter-spacing: -.02em; }
.specs-card__value small { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.specs-card__label { font-size: 12.5px; color: var(--muted); margin-top: 6px; display: block; }
.specs-list { max-width: 620px; margin: 0 auto; }
.specs-list li {
  padding: 13px 0; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 14.5px; position: relative; padding-left: 22px;
}
.specs-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent-dark); }

.specs-image {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: 48px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* ============ FLAVORS ============ */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.flavor-chip {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 13px 16px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.flavor-chip:hover { transform: translateY(-3px); border-color: var(--fg); box-shadow: 0 12px 24px -14px rgba(0,0,0,0.2); }
.flavor-chip__dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.08); }
.flavor-chip__name { font-size: 13.5px; font-weight: 700; line-height: 1.3; }

.flavor-grid--fixed { grid-template-columns: repeat(3, 1fr); }
.flavor-chip--lg { padding: 24px 22px; gap: 16px; }
.flavor-chip--lg .flavor-chip__dot { width: 34px; height: 34px; }
.flavor-chip--lg .flavor-chip__name { font-size: 16px; }
.flavor-chip__note { display: block; font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }

/* ============ REVIEWS ============ */
.reviews { background: var(--bg-alt); }
.reviews__track {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}
.review-card p { font-size: 14.5px; line-height: 1.6; color: #2a2a30; margin: 0; }
.review-card__author { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted-2); margin-top: auto; }
.review-card__author span { font-weight: 700; color: var(--muted); }
.reviews__cta { text-align: center; margin-top: 32px; }
.link-arrow { font-weight: 700; color: var(--fg); border-bottom: 2px solid var(--fg); padding-bottom: 2px; }

/* ============ FAQ ACCORDION ============ */
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--fg);
  padding: 20px 0; font-size: 16.5px; font-weight: 700; text-align: left;
}
.accordion__trigger svg { width: 18px; height: 18px; stroke: var(--muted); stroke-width: 2; fill: none; transition: transform .35s var(--ease); flex-shrink: 0; }
.accordion__item.open .accordion__trigger svg { transform: rotate(45deg); stroke: var(--fg); }
.accordion__panel {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.accordion__panel p { color: var(--muted); font-size: 14.5px; line-height: 1.7; padding-bottom: 20px; margin: 0; }

/* ============ NEWSLETTER ============ */
.newsletter { text-align: center; background: var(--fg); color: #fff; border-top: none; }
.newsletter .eyebrow { color: var(--accent); }
.newsletter h2 { margin-bottom: 28px; color: #fff; }
.newsletter__form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter__form input {
  flex: 1; padding: 15px 18px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; font-size: 14.5px;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__form input:focus { outline: none; border-color: #fff; }
.newsletter__form .btn-add { background: #fff; color: var(--fg); }
.newsletter__msg { color: var(--accent); font-size: 13.5px; margin-top: 14px; height: 16px; }

/* ============ BOTTOM TICKER ============ */
.bottom-ticker {
  background: var(--fg);
  overflow: hidden;
  padding: 8px 0;
}
.bottom-ticker__track {
  display: inline-flex; white-space: nowrap; gap: 20px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent);
  animation: tickerScroll 20s linear infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ FLOATING ACTIONS ============ */
.floating-actions {
  position: fixed; right: 20px; bottom: 54px; z-index: 300;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35);
  transition: transform .25s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fab--chat { background: var(--purple); }
.fab--whatsapp { background: var(--whatsapp); }
.fab--whatsapp svg { fill: currentColor; stroke: none; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding-top: 64px; padding-bottom: 34px; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.footer__brand p { color: var(--muted); font-size: 13.5px; margin: 16px 0; line-height: 1.6; }
.footer__rating { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.footer h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); margin: 0 0 18px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer ul a:hover { color: var(--fg); }
.footer__hours { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; }
.footer__email { font-size: 14px; font-weight: 700; color: var(--fg); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.chip {
  font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid var(--line); color: var(--muted); transition: all .2s;
}
.chip:hover { border-color: var(--fg); color: var(--fg); }

.footer__payments {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 32px; border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--muted-2);
}
.payment-icons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pay-icon {
  padding: 6px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); background: #fff;
}
.pay-logo { height: 22px; width: auto; object-fit: contain; opacity: .85; transition: opacity .2s; }
.pay-logo:hover { opacity: 1; }
.pay-logo--pix { height: 26px; }

.footer__seals {
  display: flex; justify-content: center;
  padding: 22px 32px; border-bottom: 1px solid var(--line);
}
.seals-image { max-height: 88px; width: auto; max-width: 100%; }

.footer__bottom { padding: 24px 32px 0; font-size: 12.5px; color: var(--muted-2); text-align: center; }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translate(-50%, 120%);
  background: var(--fg); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  z-index: 1000;
  transition: transform .4s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translate(-50%, 0); }
.toast::before { content: '✓'; color: var(--accent); font-weight: 900; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1100px) {
  .nav-categories { display: flex; }
  .menu-toggle { display: none; }
}

@media (max-width: 1099px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__media { position: static; }
  .reviews__track { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .breadcrumb { padding: 14px 20px 0; font-size: 12px; }
  .pdp { padding: 20px 20px 70px; gap: 36px; }
  .pdp__thumbs { display: none; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .flavor-grid--fixed { grid-template-columns: 1fr; }
  .trust-strip__row { gap: 16px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__payments { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pdp__buy { flex-direction: column; }
  .qty { justify-content: center; }
  .floating-actions { right: 14px; bottom: 46px; }
  .fab { width: 46px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
