/* ===================================================
   UniTV Recargas — Main CSS v2.0
   Design: Clean, moderno, Google Merchant compliant
   =================================================== */

:root {
  --primary: #e53e3e;
  --primary-dark: #c53030;
  --primary-light: #fff5f5;
  --dark: #111827;
  --dark2: #1f2937;
  --gray: #6b7280;
  --gray-light: #f9fafb;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --font: 'Inter', Arial, sans-serif;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); height: var(--header-h);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 24px;
}
.site-logo img { height: 38px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--dark2); font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; transition: .15s; white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { color: var(--primary); background: var(--primary-light); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-wa-header {
  display: flex; align-items: center; gap: 7px;
  background: var(--primary); color: #fff; padding: 9px 18px;
  border-radius: 10px; font-size: 13px; font-weight: 700; transition: .15s;
}
.btn-wa-header:hover { background: var(--primary-dark); color: #fff; }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 6px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  border-radius: 4px; transition: .25s; transform-origin: center;
}
.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); }
body { padding-top: var(--header-h); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  padding: 80px 20px 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(229,62,62,.15), transparent);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,62,62,.15); border: 1px solid rgba(229,62,62,.3);
  color: #fca5a5; font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 18px;
}
.hero h1 span { color: var(--primary); }
.hero p { font-size: 17px; color: #94a3b8; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 14px 28px;
  border-radius: var(--radius); font-size: 15px; font-weight: 800; transition: .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(229,62,62,.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: #fff; padding: 14px 28px;
  border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: .2s;
  border: 1px solid rgba(255,255,255,.2); cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); color: #fff; }
.hero-img { border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.4); }
.hero-img img { width: 100%; object-fit: cover; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; color: #94a3b8; font-size: 13px; font-weight: 600; }
.trust-item i { color: var(--primary); font-size: 15px; }

/* ── SECTION ── */
.section { padding: 80px 20px; }
.section-in { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; text-align: center; }
.section-title { font-size: clamp(24px, 3vw, 40px); font-weight: 900; color: var(--dark); text-align: center; margin-bottom: 14px; line-height: 1.2; }
.section-title span { color: var(--primary); }
.section-sub { font-size: 16px; color: var(--gray); text-align: center; max-width: 600px; margin: 0 auto 52px; }
.bg-gray { background: var(--gray-light); }
.bg-dark { background: var(--dark); }

/* ── PRODUCTS GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; transition: .25s; cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.product-card-img { position: relative; }
.product-card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-badge-sale {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 900; padding: 4px 10px; border-radius: 999px;
}
.product-card-body { padding: 20px; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-name { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.product-prices { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.product-old { font-size: 13px; color: var(--gray); text-decoration: line-through; }
.product-price { font-size: 26px; font-weight: 900; color: var(--primary); }
.product-validity { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.btn-add-cart {
  display: block; width: 100%; background: var(--primary); color: #fff;
  border: none; border-radius: 10px; padding: 13px; font-size: 14px;
  font-weight: 800; cursor: pointer; text-align: center; transition: .18s; font-family: var(--font);
}
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-buy-now {
  display: block; width: 100%; background: var(--dark); color: #fff;
  border: none; border-radius: 10px; padding: 13px; font-size: 14px;
  font-weight: 800; cursor: pointer; text-align: center; transition: .18s; margin-top: 8px; font-family: var(--font);
}
.btn-buy-now:hover { background: var(--dark2); }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px; background: var(--primary-light); color: var(--primary);
}
.feature-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.feature-text { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { text-align: center; padding: 32px 24px; }
.step-num {
  width: 48px; height: 48px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; margin: 0 auto 16px;
}
.step-title { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.step-text { font-size: 14px; color: #94a3b8; line-height: 1.6; }

/* ── BADGES ── */
.badges-row {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 40px;
}
.badge-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 18px; font-size: 13px; font-weight: 700; color: var(--dark);
}
.badge-item i { color: var(--primary); font-size: 16px; }

/* ── PRODUCT PAGE ── */
.product-page { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.product-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-page-img { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.product-page-img img { width: 100%; }
.product-page-breadcrumb { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.product-page-breadcrumb a { color: var(--primary); }
.product-page-cat { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-page-title { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: var(--dark); margin-bottom: 20px; }
.product-page-price-box { background: var(--gray-light); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.product-page-old { font-size: 14px; color: var(--gray); text-decoration: line-through; margin-bottom: 4px; }
.product-page-price { font-size: 38px; font-weight: 900; color: var(--primary); }
.product-page-validity { font-size: 13px; color: var(--gray); margin-top: 4px; }
.product-page-desc { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.product-page-btns { display: flex; flex-direction: column; gap: 10px; }
.product-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.product-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--dark); }
.product-feature i { color: var(--primary); width: 18px; }

/* ── CART/ACCOUNT/CONTACT ── */
.page-wrap { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.page-title { font-size: 28px; font-weight: 900; color: var(--dark); margin-bottom: 28px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty i { font-size: 48px; margin-bottom: 16px; color: var(--border); }

/* ── LOJA ── */
.loja-header { background: var(--gray-light); padding: 48px 20px; text-align: center; border-bottom: 1px solid var(--border); }

/* ── POLÍTICA / CONTEÚDO ── */
.policy-page { max-width: 820px; margin: 40px auto; padding: 0 20px 60px; }
.policy-page h1 { font-size: 32px; font-weight: 900; margin-bottom: 32px; color: var(--dark); }
.policy-section { margin-bottom: 32px; }
.policy-section h2 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.policy-section h2 span { background: var(--primary); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.policy-section p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 8px; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: #9ca3af; padding: 64px 20px 0; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo img { height: 36px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 16px; color: #6b7280; max-width: 280px; }
.footer-company { font-size: 12px; color: #4b5563; line-height: 1.8; }
.footer-col-title { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: #6b7280; transition: .15s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--primary); width: 16px; }
.footer-contact-item a { color: #6b7280; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  color: #9ca3af; font-size: 11px; font-weight: 700; padding: 5px 10px;
  border-radius: 6px; display: flex; align-items: center; gap: 5px;
}
.footer-badge i { color: var(--primary); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #4b5563;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #4b5563; transition: .15s; }
.footer-bottom-links a:hover { color: var(--primary); }
.footer-legal {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 0; font-size: 11px; color: #374151; border-top: 1px solid rgba(255,255,255,.04);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: .2s;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ── ADMIN LINK ── */
.admin-bar-top {
  background: #1f2937; color: #9ca3af; font-size: 12px;
  padding: 6px 20px; display: flex; justify-content: flex-end; gap: 16px;
}
.admin-bar-top a { color: #9ca3af; }
.admin-bar-top a:hover { color: #fff; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: #1f2937; color: #d1d5db; border-radius: var(--radius);
  padding: 16px 20px; max-width: 700px; width: calc(100% - 32px);
  z-index: 9999; box-shadow: var(--shadow-lg); display: none;
  align-items: center; gap: 16px; flex-wrap: wrap;
}
#cookie-banner.show { display: flex; }
#cookie-banner p { flex: 1; font-size: 13px; min-width: 200px; }
#cookie-banner a { color: var(--primary); }
.cookie-btn { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: var(--font); }
.cookie-accept { background: var(--primary); color: #fff; }
.cookie-refuse { background: rgba(255,255,255,.08); color: #9ca3af; margin-left: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { order: -1; }
  .hero { padding: 48px 20px 56px; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .product-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 12px 16px; gap: 4px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 16px; background: var(--gray-light); border-radius: 10px; }
  .menu-toggle { display: flex; }
  .hero-btns { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 16px; }
}

/* ── CART NAV BADGE ── */
.nav-cart-link{position:relative;padding:8px 12px;border-radius:8px;color:var(--dark2);font-size:18px;display:flex;align-items:center;transition:.15s}
.nav-cart-link:hover{background:var(--primary-light);color:var(--primary)}
.nav-cart-badge{position:absolute;top:2px;right:2px;background:var(--primary);color:#fff;font-size:10px;font-weight:900;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;line-height:1}

/* ===================================================
   Ajustes v2.1 — responsivo, cards sem corte e blocos editáveis
   =================================================== */
html, body { max-width: 100%; overflow-x: hidden; }
body { min-width: 0; }
.section-in, .hero-inner, .product-card, .product-page-grid, .footer-grid, .site-nav { min-width: 0; }

.site-nav a { display: inline-flex; align-items: center; gap: 7px; position: relative; }
.site-nav a i { width: 16px; text-align: center; color: currentColor; flex-shrink: 0; }

.hero-copy { min-width: 0; }
.hero-img { width: 100%; max-width: 100%; background: rgba(255,255,255,.03); }
.hero-img img { width: 100%; height: auto; max-width: 100%; object-fit: contain; }
.hero h1, .section-title, .product-name, .product-page-title { overflow-wrap: anywhere; }

.products-grid { align-items: stretch; }
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
.product-card-body { display: flex; flex-direction: column; flex: 1; }
.product-prices { flex-wrap: wrap; row-gap: 2px; margin-bottom: 12px; }
.product-validity { display: flex; align-items: center; gap: 6px; }
.product-validity i { color: var(--primary); flex-shrink: 0; }
.btn-add-cart { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.related-products-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important; }

.product-page { width: 100%; }
.product-page-img {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-page-img img { width: 100%; height: auto; object-fit: contain; }
.product-page-img .product-badge-sale { z-index: 2; }
.product-page-btns .btn-primary,
.product-page-btns .btn-secondary { width: 100%; }

.features-section { background: #fff; }
.features-grid { align-items: stretch; }
.feature-card { min-width: 0; height: 100%; transition: .18s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.steps-section { background: var(--steps-bg, #172033); }
.steps-section .steps-label { color: #fca5a5; }
.steps-section .steps-title { color: #fff; }
.steps-section .steps-title span { color: var(--primary); }
.step-card { border-radius: 18px; }

.btn-primary, .btn-secondary { min-width: 0; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .header-inner { padding: 0 14px; gap: 8px; }
  .site-logo { flex-shrink: 1; min-width: 0; }
  .site-logo img { height: 34px; max-width: 124px; object-fit: contain; }
  .btn-wa-header { padding: 9px 12px; font-size: 13px; border-radius: 9px; white-space: nowrap; }
  .menu-toggle { flex-shrink: 0; }
  .site-nav { width: 100%; max-width: 100vw; box-sizing: border-box; }
  .site-nav a { width: 100%; justify-content: flex-start; }
  .hero { padding: 38px 16px 48px; }
  .hero-inner { width: 100%; gap: 28px; }
  .hero h1 { font-size: clamp(27px, 8vw, 38px); }
  .hero p { font-size: 15px; margin-bottom: 24px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; margin-top: 24px; }
  .trust-item { width: 100%; }
  .section { padding: 52px 16px; }
  .section-sub { margin-bottom: 32px; font-size: 14px; }
  .product-page { margin: 28px auto; padding: 0 16px; }
  .product-page-grid { gap: 28px; }
  .product-page-price { font-size: 32px; }
  .product-page-img { border-radius: 16px; }
  .footer-grid { width: 100%; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

@media (max-width: 640px) {
  .products-grid,
  .related-products-grid { grid-template-columns: 1fr !important; gap: 18px; }
  .product-card { border-radius: 18px; }
  .product-card-img { aspect-ratio: 4 / 5; }
  .product-card-body { padding: 18px; }
  .product-name { font-size: 16px; }
  .product-price { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { padding: 22px 14px; }
  #cookie-banner { bottom: 10px; width: calc(100% - 20px); padding: 14px; }
  #cookie-banner p { min-width: 100%; }
}

@media (max-width: 390px) {
  .header-inner { padding: 0 10px; }
  .btn-wa-header { padding: 8px 10px; font-size: 12px; }
  .site-logo img { max-width: 112px; }
  .hero { padding-left: 14px; padding-right: 14px; }
}

/* ===================================================
   Ajustes v2.2 — admin/mobile, cookie editável e botão comprar
   =================================================== */
.mobile-buy-after-price{display:none}
.product-page-img{max-width:100%}
.product-page-img img{max-height:620px}
.header-actions{margin-left:auto}
#cookie-banner{max-height:calc(100vh - 32px);overflow:auto}
#cookie-banner>div{display:flex;gap:6px;flex-wrap:wrap}
@media (max-width: 768px) {
  .mobile-buy-after-price{display:block;margin:-10px 0 24px}
  .mobile-buy-after-price .btn-primary{width:100%;justify-content:center;text-align:center}
  .product-page-btns .main-buy-btn{display:none!important}
  .product-page-price-box{margin-bottom:18px}
  .product-page-desc{margin-bottom:22px}
  .product-features{margin-bottom:22px}
  .product-page-img img{max-height:none;width:100%;height:auto;object-fit:contain}
  .loja-header{padding:34px 16px}
  .product-card-img{min-height:220px;max-height:none}
  .product-card-img img{object-fit:contain!important}
  .footer-legal{text-align:center;line-height:1.7}
  #cookie-banner{align-items:flex-start;bottom:8px;width:calc(100% - 16px);border-radius:14px}
  #cookie-banner>div{width:100%;display:grid;grid-template-columns:1fr 1fr;gap:8px}
  .cookie-btn{width:100%;margin-left:0!important}
}
@media (max-width: 430px) {
  .btn-primary,.btn-secondary,.btn-add-cart{font-size:14px;padding-left:14px;padding-right:14px}
  .product-page-title{font-size:22px;line-height:1.2}
  .product-page-price-box{padding:18px}
  .product-page-price{font-size:30px}
  .product-card-img{min-height:210px}
  .product-prices{align-items:flex-start;gap:8px}
  .site-header{max-width:100vw}
}
