/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #e8000d;
  --red-dark: #b50009;
  --red-light: #ff2030;
  --gold: #f0a500;
  --gold-dark: #c07d00;

  --bg: #0f0f0f;
  --bg-2: #1a1a1a;
  --bg-3: #222222;
  --bg-card: #1e1e1e;
  --border: #2e2e2e;
  --border-light: #3a3a3a;

  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-400: #999999;
  --gray-500: #666666;
  --gray-600: #444444;

  --green: #1bb84d;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== UTILITIES ===== */
.text-red   { color: var(--red); }
.text-green { color: var(--green); font-weight: 700; }
.text-gold  { color: var(--gold); }

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge--red { background: var(--red); color: white; }

.section-title {
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  color: var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, opacity 0.15s;
  text-align: center;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--red     { background: var(--red); color: white; border-color: var(--red-dark); }
.btn--dark    { background: var(--bg-3); color: white; border-color: var(--border-light); }
.btn--outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn--outline:hover { background: var(--red); color: white; }
.btn--gold    { background: var(--gold); color: white; border-color: var(--gold-dark); }

.btn--hero { font-size: 17px; padding: 18px 36px; width: 100%; max-width: 460px; }
.btn--full { width: 100%; font-size: 17px; padding: 18px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,0,13,0.45); }
  50%       { box-shadow: 0 0 0 10px rgba(232,0,13,0); }
}
.pulse { animation: pulse 2s infinite; }

/* ===== HEADER ===== */
.header {
  background: var(--bg-2);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 100%;
  margin: 0;
  gap: 12px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 0;
}
.logo__testo,
.logo__express {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 3px;
  line-height: 1;
}
.logo__testo   { color: var(--white); }
.logo__express { color: var(--red); }
.logo__tagline {
  font-family: var(--font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-top: 2px;
}
.logo--small { font-size: 18px; }

.header__trust {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
}

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  padding: 40px 0 52px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; gap: 18px; }

.hero__title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
}
.hero__subtitle { font-size: 15px; color: var(--gray-400); line-height: 1.7; }

.hero__benefits { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.hero__benefits li { font-size: 14px; font-weight: 600; color: var(--gray-200); }

.hero__trust {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
  flex-wrap: wrap;
  align-items: center;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.gallery-thumb {
  width: 62px;
  height: 62px;
  border: 2px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  padding: 3px;
  transition: border-color 0.18s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.gallery-thumb.active { border-color: var(--red); }
.gallery-thumb:hover { border-color: var(--gray-400); }

.gallery-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--border);
  width: 100%;
}
.gallery-main .product-img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  transition: opacity 0.2s;
  padding: 12px;
}

.product-placeholder {
  background: var(--bg-3);
  color: var(--gray-400);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  width: 260px;
  height: 340px;
  font-size: 18px;
  gap: 8px;
  border: 2px dashed var(--border-light);
}
.product-placeholder.small { width: 120px; height: 130px; font-size: 13px; border-radius: 8px; }
.product-placeholder.tiny  { width: 68px; height: 78px; font-size: 10px; border-radius: 6px; }

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  background: var(--bg);
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--border);
}
.product-page__inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  column-gap: 52px;
  align-items: start;
}

/* Gallery (reused styles) */
.product-page__gallery {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: sticky;
  top: 80px;
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Wrapper que agrupa imagem principal + qty selector abaixo */
.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* qty section dentro da coluna da galeria */
.gallery-col .pd-qty-section { margin-top: 0; }
.gallery-col .pd-qty-options {
  grid-template-columns: 1fr 1fr;
}

/* ---- Product Details ---- */
.pp-info,
.pp-buy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-top { display: flex; flex-direction: column; gap: 6px; }
.pd-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  width: fit-content;
}
.pd-stars { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pd-reviews { font-size: 12px; color: var(--gray-400); }

.pd-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
}
.pd-title span { color: var(--red); }

.pd-subtitle { font-size: 13px; color: var(--gray-400); margin-top: -12px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }

.pd-kit-item {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-200);
  padding: 2px 0;
}

.pd-description {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: -6px;
}

.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pd-tags span {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  color: var(--gray-400);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Price block */
.pd-price-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-price-from { font-size: 13px; color: var(--gray-600); text-decoration: line-through; }
.pd-price-main { font-size: 34px; font-weight: 900; color: var(--white); line-height: 1; }
.pd-price-main span { color: var(--red); }
.pd-price-pix { font-size: 13px; color: var(--gray-400); margin-top: 6px; }
.pd-price-pix strong { color: var(--green); }
.pd-installments { font-size: 12px; color: var(--gray-500); }

/* Qty selector */
.pd-qty-section { display: flex; flex-direction: column; gap: 10px; }
.pd-qty-label { font-size: 12px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.5px; }
.pd-qty-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.pd-qty-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  text-align: left;
  overflow: hidden;
}
.pd-qty-btn:hover { border-color: var(--gray-600); }
.pd-qty-btn.active {
  border-color: var(--red);
  background: rgba(232,0,13,0.07);
  box-shadow: 0 0 0 2px rgba(232,0,13,0.18);
}
.pd-qty-btn--popular { border-color: rgba(232,0,13,0.3); }
.pd-qty-btn--kit     { border-color: rgba(240,165,0,0.3); }
.pd-qty-btn--kit.active { border-color: var(--gold); background: rgba(240,165,0,0.07); box-shadow: 0 0 0 2px rgba(240,165,0,0.2); }

.pd-qty-tag {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 0 7px 0 6px;
  letter-spacing: 0.5px;
}
.pd-qty-tag--gold { background: var(--gold); }

.pd-qty-name  { font-size: 13px; font-weight: 700; color: var(--white); }
.pd-qty-price { font-size: 16px; font-weight: 900; color: var(--red); }
.pd-qty-btn--kit .pd-qty-price { color: var(--gold); }

/* Action buttons */
.pd-actions { display: flex; flex-direction: column; gap: 10px; }

.btn--cart {
  background: var(--bg-3);
  color: var(--white);
  border: 1px solid var(--border-light);
  font-size: 15px;
  padding: 16px;
}
.btn--cart:hover { border-color: var(--gray-400); background: var(--bg-2); opacity: 1; }

/* Mini benefits */
.pd-mini-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pd-mini-item { font-size: 12px; color: var(--gray-400); font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* Stock */
.pd-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
}
.pd-stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border-light);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: bottom 0.35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.cart-toast.show { bottom: 24px; }
.cart-toast a { color: var(--red); font-weight: 800; }

/* ===== HERO OPTIONS (legacy, kept for offer cards) ===== */
.hero-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  width: 100%;
}
.hero-options__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-options__row {
  display: flex;
  gap: 8px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.hero-options__row::-webkit-scrollbar { display: none; }

/* — Individual product card — */
.hopt {
  flex: 1;
  min-width: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: var(--bg-card);
  font-family: var(--font);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
  text-align: center;
  padding: 0 0 12px;
}
.hopt:hover { border-color: var(--gray-600); transform: translateY(-2px); }
.hopt.active {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 2px rgba(232,0,13,0.25);
}
.hopt.active .hopt__check { opacity: 1; transform: scale(1); }

.hopt__ribbon {
  width: 100%;
  text-align: center;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 0;
  margin-bottom: 0;
}
.hopt__ribbon--gold { background: var(--gold); }

.hopt__img {
  width: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  position: relative;
  padding: 10px 6px 6px;
}
.hopt__img img { width: 62px; height: 76px; object-fit: contain; }

.hopt__imgph {
  width: 62px; height: 76px;
  background: var(--bg-3);
  color: var(--gray-400);
  font-weight: 800;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-light);
}

.hopt__qty-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
}
.hopt__qty-badge--gold { background: var(--gold); }

.hopt__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 6px 0;
}
.hopt__name  { font-size: 10px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.3px; }
.hopt__desc  { font-size: 9px; color: var(--gray-500); font-weight: 500; }
.hopt__price { font-size: 14px; font-weight: 900; color: var(--white); margin-top: 4px; line-height: 1; }
.hopt__price strong { color: var(--red); }
.hopt__price--gold strong { color: var(--gold); }
.hopt__from  { font-size: 9px; color: var(--gray-600); text-decoration: line-through; }

.hopt__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 3;
}

.hopt--popular { border-color: rgba(232,0,13,0.3); }
.hopt--kit     { border-color: rgba(240,165,0,0.3); }

/* Multi-bottle */
.hopt__img--double, .hopt__img--triple, .hopt__img--kit { position: relative; overflow: visible; }
.hopt-bottle { position: absolute; object-fit: contain; }

.hopt__img--double { width: 100%; min-height: 88px; }
.hopt__img--double .hopt-bottle { width: 44px; height: 68px; top: 10px; }
.hopt__img--double .hopt-bottle--back  { left: calc(50% - 30px); opacity: 0.55; filter: brightness(0.7); transform: rotate(-8deg); z-index: 1; }
.hopt__img--double .hopt-bottle--front { left: calc(50% - 12px); z-index: 2; }

.hopt__img--triple { width: 100%; min-height: 88px; }
.hopt__img--triple .hopt-bottle { width: 38px; height: 62px; top: 10px; }
.hopt__img--triple .hopt-bottle--left   { left: calc(50% - 42px); opacity: 0.5; filter: brightness(0.65); transform: rotate(-12deg); z-index: 1; }
.hopt__img--triple .hopt-bottle--center { left: calc(50% - 19px); z-index: 3; }
.hopt__img--triple .hopt-bottle--right  { left: calc(50% + 4px); opacity: 0.6; filter: brightness(0.75); transform: rotate(8deg); z-index: 2; }

.hopt__img--kit { width: 100%; min-height: 88px; }
.hopt__img--kit .hopt-bottle { width: 44px; height: 68px; top: 10px; }
.hopt__img--kit .hopt-bottle--back  { left: calc(50% - 30px); opacity: 0.55; filter: brightness(0.7) sepia(0.4); transform: rotate(-8deg); z-index: 1; }
.hopt__img--kit .hopt-bottle--front { left: calc(50% - 12px); z-index: 2; }

/* CTA block */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.hero-selected-info {
  background: var(--bg-3);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-200);
  width: 100%;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}
.trust-item {
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-icon { font-size: 22px; }

/* ===== BENEFITS ===== */
.benefits {
  padding: 60px 0;
  background: var(--bg);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover { transform: translateY(-3px); border-color: var(--red); }
.benefit-icon { font-size: 36px; margin-bottom: 10px; }
.benefit-card h3 { font-size: 14px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; color: var(--white); }
.benefit-card p  { font-size: 13px; color: var(--gray-400); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-stars { font-size: 16px; }
.testimonial-card > p { font-size: 13px; color: var(--gray-400); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 13px; color: var(--white); }
.testimonial-author small  { font-size: 11px; color: var(--gray-500); }
.testimonial-badge { font-size: 11px; color: var(--green); font-weight: 700; }
.testimonial-photo {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 200px;
  border: 1px solid var(--border);
}

/* ===== OFFERS ===== */
.offers {
  padding: 60px 0;
  background: var(--bg);
}
.offers__header {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.offers__subtitle { font-size: 15px; color: var(--gray-400); }

.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.offer-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.offer-card--featured { border-color: var(--red); }
.offer-card--super    { border-color: rgba(240,165,0,0.4); }

.offer-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 1px;
}
.offer-ribbon--gold { background: var(--gold); }

.offer-card__header { display: flex; flex-direction: column; gap: 5px; }
.offer-qty { font-size: 16px; font-weight: 800; text-transform: uppercase; color: var(--white); }
.offer-tag {
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  display: inline-block;
}
.offer-tag--gold { background: var(--gold); }

.offer-card__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 130px;
  width: 100%;
  position: relative;
}
.offer-bottle {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}
.offer-card__img--kit-full {
  align-items: center;
  min-height: 130px;
}
.offer-kit-img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  border-radius: 6px;
}

/* 2 garrafinhas */
.offer-card__img--double {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -16px;
}
.offer-card__img--double .offer-bottle { height: 110px; position: static; }
.offer-card__img--double .offer-bottle--back  {
  opacity: 0.6;
  filter: brightness(0.7);
  transform: rotate(-8deg) translateX(12px);
  z-index: 1;
  margin-right: -16px;
}
.offer-card__img--double .offer-bottle--front {
  z-index: 2;
  transform: translateX(-4px);
}

/* 3 garrafinhas */
.offer-card__img--triple {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.offer-card__img--triple .offer-bottle { height: 105px; position: static; }
.offer-card__img--triple .offer-bottle--left {
  opacity: 0.5;
  filter: brightness(0.65);
  transform: rotate(-12deg) translateX(20px);
  z-index: 1;
  margin-right: -20px;
}
.offer-card__img--triple .offer-bottle--center {
  z-index: 3;
}
.offer-card__img--triple .offer-bottle--right {
  opacity: 0.6;
  margin-left: -20px;
  filter: brightness(0.75);
  transform: rotate(10deg) scale(0.88);
  z-index: 2;
}

.offer-card__price { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.price-from  { font-size: 12px; color: var(--gray-600); text-decoration: line-through; }
.price-to    { font-size: 26px; font-weight: 900; color: var(--white); }
.price-to strong { color: var(--red); }
.price-economy {
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
}

.super-pack-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-200);
  width: 100%;
}

/* Offer card buttons */
.offer-card .btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border-light);
  font-size: 13px;
  padding: 10px 20px;
  width: 100%;
}
.offer-card .btn--outline:hover { border-color: var(--red); color: var(--red); background: transparent; }
.offer-card .btn--red  { font-size: 13px; padding: 10px 20px; width: 100%; }
.offer-card .btn--gold { font-size: 13px; padding: 10px 20px; width: 100%; }

/* Selected offer card */
.offer-card--selected {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 2px rgba(232,0,13,0.2);
}
.offer-card--selected::after {
  content: '✅ SELECIONADO';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.guarantee__icon { font-size: 56px; flex-shrink: 0; }
.guarantee__content h3 { font-size: 20px; font-weight: 900; margin-bottom: 6px; text-transform: uppercase; color: var(--white); }
.guarantee__content p  { font-size: 14px; color: var(--gray-400); line-height: 1.7; }

/* ===== CHECKOUT ===== */
.checkout {
  padding: 60px 0;
  background: var(--bg);
}
.checkout__subtitle { text-align: center; color: var(--gray-400); margin-bottom: 36px; font-size: 15px; }

.checkout__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.selected-plan-banner {
  background: var(--bg-3);
  border-left: 3px solid var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}
.form-section__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group--full { grid-column: 1 / -1; }

label { font-size: 12px; font-weight: 700; color: var(--gray-400); letter-spacing: 0.3px; }

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font);
  font-size: 14px;
  background: var(--bg-3);
  color: var(--white);
  transition: border-color 0.2s;
}
input:focus { outline: none; border-color: var(--red); }
input::placeholder { color: var(--gray-600); }

.cep-wrap { position: relative; }
.cep-loader {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cep-loader.loading { opacity: 1; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.field-error { color: var(--red); font-size: 11px; font-weight: 600; min-height: 14px; }

/* ===== ORDER BUMPS ===== */
.order-bumps-subtitle { font-size: 12px; color: var(--gray-500); margin-bottom: 14px; margin-top: -12px; }
.order-bumps { display: flex; flex-direction: column; gap: 10px; }

.order-bump {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  background: var(--bg-3);
}
.order-bump:hover { border-color: var(--red); }
.order-bump input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.order-bump.checked { border-color: var(--green); background: rgba(27,184,77,0.07); }

.order-bump__img { flex-shrink: 0; width: 68px; display: flex; justify-content: center; }
.order-bump__img img { width: 68px; height: 78px; object-fit: contain; }

.order-bump__content { flex: 1; }
.order-bump__content strong { font-size: 13px; font-weight: 800; display: block; margin-bottom: 3px; color: var(--white); }
.order-bump__content p { font-size: 12px; color: var(--gray-400); line-height: 1.5; margin-bottom: 5px; }
.bump-price { font-size: 14px; font-weight: 900; color: var(--red); }
.bump-price em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--gray-400); }

.order-bump__check {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: transparent;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.order-bump.checked .order-bump__check { background: var(--green); border-color: var(--green); color: white; }

.order-bump--highlight { border-color: rgba(240,165,0,0.3); }
.order-bump--highlight:hover { border-color: var(--gold); }
.bump-highlight-tag {
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

/* ===== PAYMENT (PIX only) ===== */
.pix-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-3);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.pix-box__icon { font-size: 28px; flex-shrink: 0; }
.pix-box__info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pix-box__info strong { font-size: 15px; font-weight: 800; color: var(--white); }
.pix-box__info span   { font-size: 12px; color: var(--gray-400); }
.pix-box__check {
  width: 26px; height: 26px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pix-note { font-size: 12px; color: var(--gray-500); }

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.order-summary__header {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.order-summary__header h3 { font-size: 14px; font-weight: 800; color: var(--white); }

.order-summary__items {
  padding: 16px 20px;
  min-height: 90px;
  border-bottom: 1px solid var(--border);
}
.summary-empty { color: var(--gray-500); font-size: 12px; text-align: center; padding: 20px 0; }
.summary-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 12px; }
.summary-item span:first-child { flex: 1; font-weight: 600; color: var(--gray-200); }
.summary-item span:last-child  { font-weight: 800; white-space: nowrap; color: var(--red); }

.order-summary__totals { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.summary-line { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 5px 0; color: var(--gray-400); }
.summary-line span:last-child { font-weight: 700; color: var(--white); }
.summary-line--total {
  font-size: 18px;
  font-weight: 900;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 5px;
  color: var(--white);
}
.summary-line--total span:last-child { color: var(--red); font-size: 22px; }

.order-summary__cta { padding: 16px 20px; }
.order-summary__security {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ===== FINALIZE BLOCK (bottom of form) ===== */
.ck-finalize { border-top: 2px solid var(--red); }
.ck-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.ck-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--gray-400);
}
.ck-total-line--big {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-top: 4px;
}
.ck-total-line--big span:last-child { color: var(--red); }
.ck-security {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
}

/* ===== CART BUTTON ===== */
.cart-btn {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  color: var(--white);
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cart-btn:hover { border-color: var(--red); }
.cart-count {
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px; max-width: 95vw;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { right: 0; }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer__header h3 { font-size: 16px; font-weight: 800; color: var(--white); }
.cart-drawer__close {
  background: none; border: none;
  color: var(--gray-400); font-size: 18px;
  cursor: pointer; padding: 4px;
  transition: color 0.2s;
}
.cart-drawer__close:hover { color: var(--white); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-empty { color: var(--gray-500); font-size: 14px; text-align: center; margin-top: 40px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
}
.cart-item__img { width: 52px; height: 60px; object-fit: contain; flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 12px; font-weight: 700; color: var(--white); display: block; margin-bottom: 6px; line-height: 1.3; }
.cart-item__row { display: flex; align-items: center; gap: 10px; }
.cart-item__qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item__qty-ctrl button {
  background: var(--bg-3);
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  width: 28px; height: 28px;
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
}
.cart-item__qty-ctrl button:hover { background: var(--red); }
.cart-item__qty-ctrl span {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  background: var(--bg-2);
  height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item__price { font-size: 14px; font-weight: 900; color: var(--red); margin-left: auto; }
.cart-item__remove {
  background: none; border: none;
  color: var(--gray-600); font-size: 14px;
  cursor: pointer; padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
  align-self: flex-start;
}
.cart-item__remove:hover { color: var(--red); }

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.cart-drawer__total strong { font-size: 22px; color: var(--red); }

/* ===== CHECKOUT MODERNO ===== */
.checkout { padding: 48px 0; background: var(--bg); }

.checkout__header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Bloco de seção */
.ck-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}
.ck-block__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ck-subtitle { font-size: 13px; color: var(--gray-400); margin-bottom: 14px; margin-top: -10px; }

/* Grid do formulário */
.ck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Campo com label flutuante */
.ck-field {
  position: relative;
}
.ck-field--full { grid-column: 1 / -1; }

.ck-field input {
  width: 100%;
  padding: 18px 14px 6px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s;
  appearance: none;
}
.ck-field input:focus { outline: none; border-color: var(--red); }
.ck-field input:focus + label,
.ck-field input:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 10px;
  color: var(--gray-500);
}

.ck-field label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  pointer-events: none;
  transition: top 0.18s, font-size 0.18s, color 0.18s;
}

/* CEP dentro de ck-field */
.ck-field .cep-wrap { position: relative; }
.ck-field .cep-wrap input { width: 100%; }
.ck-field .cep-wrap label {
  position: absolute;
  left: 14px; top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  pointer-events: none;
  transition: top 0.18s, font-size 0.18s;
}
.ck-field .cep-wrap input:focus + label,
.ck-field .cep-wrap input:not(:placeholder-shown) + label {
  top: 6px; font-size: 10px; color: var(--gray-500);
}
.ck-field .cep-loader {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--gray-500);
  pointer-events: none;
}

/* Opções de Frete */
.shipping-options { display: flex; flex-direction: column; gap: 10px; }
.shipping-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg-3);
  transition: border-color 0.18s, background 0.18s;
}
.shipping-opt:has(input:checked) {
  border-color: var(--red);
  background: rgba(232,0,13,0.05);
}
.shipping-opt input[type="radio"] { display: none; }

.shipping-opt__radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.18s;
}
.shipping-opt:has(input:checked) .shipping-opt__radio {
  border-color: var(--red);
}
.shipping-opt:has(input:checked) .shipping-opt__radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.shipping-opt__info { flex: 1; }
.shipping-opt__info strong { display: block; font-size: 14px; font-weight: 800; color: var(--white); }
.shipping-opt__info span  { font-size: 12px; color: var(--gray-400); }

.shipping-opt__price { font-size: 14px; font-weight: 800; color: var(--white); white-space: nowrap; }
.shipping-opt__price.free { color: var(--green); }

.shipping-opt--best {
  border-color: var(--red);
  background: rgba(232,0,13,0.06);
  position: relative;
  padding-top: 28px;
}
.shipping-opt__badge {
  position: absolute;
  top: -1px; left: -1px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 8px 0 8px 0;
}

/* ===== PIX PAYMENT SCREEN ===== */
.pix-payment {
  background: var(--bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.pix-payment__card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.pix-payment__icon { font-size: 48px; }
.pix-payment__title { font-size: 24px; font-weight: 900; color: var(--white); }
.pix-payment__subtitle { font-size: 14px; color: var(--gray-400); }
.pix-payment__subtitle strong { color: var(--green); }
.pix-payment__amount {
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  color: var(--gray-400);
  width: 100%;
}
.pix-payment__amount strong { font-size: 28px; font-weight: 900; color: var(--white); display: block; margin-top: 2px; }

.pix-qr-img {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  border: 3px solid var(--green);
  padding: 8px;
  background: white;
}

.pix-security-obs {
  font-size: 12px;
  color: #f0c040;
  background: rgba(240,192,64,.1);
  border: 1px solid rgba(240,192,64,.3);
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.5;
}

.pix-code-label { font-size: 13px; color: var(--gray-400); align-self: flex-start; }

.pix-code-textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--gray-200);
  font-size: 11px;
  font-family: monospace;
  resize: none;
  height: 80px;
  line-break: anywhere;
}

.pix-payment__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}
.pix-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 600;
  text-align: left;
}
.pix-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pix-expires { font-size: 12px; color: var(--gray-500); }
.pix-expires strong { color: var(--red); }
.pix-confirm { font-size: 12px; color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer p { font-size: 12px; color: var(--gray-500); }
.footer__disclaimer { font-size: 11px; color: var(--gray-600); max-width: 560px; line-height: 1.6; }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 11px; color: var(--gray-500); transition: color 0.2s; }
.footer__links a:hover { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-page__inner { grid-template-columns: 1fr; gap: 32px; }
  .product-page__gallery { position: static; grid-column: 1; grid-row: auto; }
  .pp-info, .pp-buy { grid-column: 1; }
  .pd-qty-options { grid-template-columns: 1fr 1fr; }
  .offers__grid { grid-template-columns: repeat(2, 1fr); }
  .checkout__layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-page__inner { gap: 16px; display: flex; flex-direction: column; }
  .pp-info { order: 1; }
  .product-page__gallery { order: 2; }
  .pp-buy { order: 3; }
  .pd-qty-options { grid-template-columns: 1fr 1fr; }

  .gallery-thumbs { flex-direction: row; justify-content: center; }
  .gallery-thumb  { width: 52px; height: 52px; }
  .product-page__gallery { flex-direction: column; align-items: stretch; }
  .gallery-col { width: 100%; }
  .gallery-main { width: 100%; min-height: 240px; }

  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .offers__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .guarantee__inner { flex-direction: column; text-align: center; }

  .header__inner { flex-wrap: wrap; padding: 10px 16px; }
  .header__trust {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 14px;
    font-size: 11px;
    flex-wrap: wrap;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
  }
  .payment-methods { flex-direction: column; }
}

@media (max-width: 480px) {
  .section-title { font-size: 18px; }
  .hero__title   { font-size: 22px; }
  .offer-card    { padding: 18px 12px; }
  .form-section  { padding: 18px 14px; }
}
