/* ============================================================
   Casa & Ambiente — Identidade Visual
   Paleta: madeira/terracota (marca) + verde-menta (confirmação) + âmbar (destaque)
   Tipografia: Poppins (títulos) + Inter (corpo) — carregadas via
   <link rel="stylesheet"> no <head> de cada página (não-bloqueante),
   não por @import (que atrasa a renderização).
   ============================================================ */

:root {
  --ac-wood: #6b3f2a;
  --ac-wood-dark: #40241a;
  --ac-terracotta: #c2683b;
  --ac-terracotta-dark: #a24f2a;
  --ac-mint: #0e9488;
  --ac-mint-soft: #e6f7f5;
  --ac-amber: #d99a3d;
  --ac-ink: #241a14;
  --ac-muted: #7a6a5c;
  --ac-line: #e6dccd;
  --ac-bg: #fffaf5;
  --ac-soft: #f6ede3;
  --ac-danger: #b23a3a;
  --ac-shadow: 0 24px 70px rgba(60, 35, 20, 0.16);
  --ac-radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ac-ink);
  background: var(--ac-bg);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.no-scroll { overflow: hidden; }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.container.narrow { width: min(820px, calc(100% - 32px)); }

h1, h2, h3 { font-family: 'Poppins', Arial, Helvetica, sans-serif; }
h1, h2, h3, p { overflow-wrap: break-word; }

/* ── BARRA DE URGÊNCIA ── */
.urgency-bar-light {
  background: var(--ac-wood);
  text-align: center;
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid var(--ac-terracotta);
}
.urgency-bar-light span { color: var(--ac-amber); font-weight: 700; }

/* ── HEADER ── */
.site-header-ac { background: linear-gradient(to bottom, var(--ac-wood-dark), var(--ac-wood)); padding: 20px 0 0; }

.ha-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-bottom: 20px;
}

.ha-menu-icon { display: none; cursor: pointer; flex-shrink: 0; background: none; border: none; padding: 0; }
.ha-logo { flex-shrink: 0; }
.ac-logo-svg { height: 40px; display: block; }

.ha-search {
  flex: 1; max-width: 550px; display: flex; align-items: center;
  background: #fff; border-radius: 10px; padding: 6px 16px; height: 44px; border: none;
}
.ha-search input { border: none; outline: none; width: 100%; height: 100%; font-size: 14px; font-family: 'Inter', sans-serif; }
.ha-search button { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
.ha-search svg { width: 20px; height: 20px; fill: #6b7280; }

.ha-cart { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 14px; cursor: pointer; flex-shrink: 0; background: none; border: none; }
.ha-cart-icon { position: relative; display: flex; }
.ha-cart-icon svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 2; }
.ha-cart-badge {
  position: absolute; top: -5px; right: -8px; background: var(--ac-terracotta); color: #fff;
  font-size: 11px; font-weight: 800; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.ha-links {
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: center; gap: 30px; padding: 12px 20px;
  overflow-x: auto; white-space: nowrap;
}
.ha-links a { color: #fff; text-decoration: none; font-size: 13px; font-weight: 500; opacity: 0.9; }
.ha-links a:hover { opacity: 1; text-decoration: underline; }
@media (min-width: 769px) { .ha-links[hidden] { display: flex !important; } }

/* ── BARRA DE CONFIANÇA ── */
.ac-trust-bar { background: var(--ac-soft); border-bottom: 2px solid rgba(194,104,59,0.18); padding: 13px 0; }
.ac-tb-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; padding: 0 20px; }
.ac-tb-item { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; color: var(--ac-wood); text-transform: uppercase; letter-spacing: 0.06em; }
.ac-tb-item svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── BOTÕES ── */
.button {
  min-height: 48px; padding: 0 24px; border: 0; border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.05em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.button-large { min-height: 58px; }

.button-primary, .button.button-primary {
  color: #fff;
  background: var(--ac-terracotta);
  box-shadow: 0 12px 28px rgba(194, 104, 59, 0.35);
}
.button-primary:hover, .button.button-primary:hover {
  background: var(--ac-terracotta-dark);
  box-shadow: 0 14px 34px rgba(194, 104, 59, 0.45);
}

@keyframes ac-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(194,104,59,0.35); }
  50% { box-shadow: 0 12px 40px rgba(194,104,59,0.6), 0 0 0 8px rgba(194,104,59,0.1); }
}
#buy-now, #sticky-buy { animation: ac-pulse 2.8s ease-in-out infinite; }

.badge-accent { background: var(--ac-wood) !important; }
.marquee-strip { background: var(--ac-wood) !important; }

/* ── PRODUTO / GALERIA ── */
.product-section { overflow: hidden; padding: 38px 0 18px; background: #fff; }
.product-layout {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 78px); align-items: start;
}
.gallery { position: sticky; top: 24px; width: 100%; }
.gallery-main {
  position: relative; overflow: hidden; aspect-ratio: 1;
  border: 1px solid rgba(36,26,20,0.12); border-radius: 30px; background: #eee; box-shadow: var(--ac-shadow);
}
.gallery-main > img { width: 100%; height: 100%; object-fit: cover; transition: opacity 180ms ease, transform 500ms ease; }
.gallery-main:hover > img { transform: scale(1.025); }

.badge { position: absolute; top: 16px; padding: 7px 12px; color: #fff; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }

.gallery-arrow {
  position: absolute; top: 50%; width: 44px; height: 44px; color: var(--ac-ink);
  border: 0; border-radius: 50%; background: rgba(255,255,255,0.9); box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  font-family: Arial, sans-serif; font-size: 32px; line-height: 1; opacity: 0;
  transform: translateY(-50%); transition: opacity 180ms ease, transform 180ms ease;
}
.gallery-main:hover .gallery-arrow, .gallery-arrow:focus-visible { opacity: 1; }
.gallery-arrow:hover { transform: translateY(-50%) scale(1.06); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }

.thumbnails { display: flex; justify-content: center; gap: 10px; overflow-x: auto; margin-top: 16px; padding: 3px 2px 7px; scrollbar-width: thin; }
.thumbnail { overflow: hidden; width: 62px; height: 62px; padding: 0; border: 2px solid transparent; border-radius: 14px; background: transparent; opacity: 0.66; transition: 160ms ease; }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail:hover, .thumbnail.active { border-color: var(--ac-wood); opacity: 1; transform: translateY(-2px); }

.product-info { padding-top: 10px; }
.breadcrumb { margin: 0 0 20px; color: var(--ac-muted); font-size: 12px; }
.gallery-breadcrumb { margin-bottom: 12px; }
.eyebrow { margin: 0 0 10px; color: var(--ac-wood); font-size: 12px; font-weight: 900; letter-spacing: 0.16em; }
.eyebrow.centered { text-align: center; }

h1 { max-width: 700px; margin: 0; font-size: clamp(34px, 4.4vw, 54px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.subtitle { margin: 20px 0; color: var(--ac-muted); font-size: 17px; }

.price-block { display: flex; flex-wrap: wrap; gap: 8px 13px; align-items: baseline; margin-top: 28px; }
.price-block strong { font-family: 'Poppins', sans-serif; font-size: 40px; line-height: 1; color: var(--ac-wood); }
.price-block .price-note { color: var(--ac-muted); font-size: 13px; }

.product-actions { display: grid; gap: 11px; margin-top: 25px; }
.cta-sub-note { display: flex; align-items: center; justify-content: center; gap: 5px; margin: 7px 0 0; font-size: 11px; color: #6b7280; text-align: center; }
.cta-sub-note svg { flex-shrink: 0; stroke: #9ca3af; }

.buy-pay-icons { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.buy-pay-icons span { font-size: 0.72rem; color: #6b7280; font-weight: 600; margin-right: 4px; white-space: nowrap; }
.buy-pay-icons img { height: 28px; border-radius: 4px; border: 1px solid #e5e7eb; padding: 2px 6px; background: #fff; }

.garantia-legal { background: var(--ac-soft); border: 1px solid #e3cdb3; border-radius: 10px; padding: 16px 20px; margin-top: 14px; text-align: center; }
.garantia-legal strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--ac-wood); margin-bottom: 6px; }
.garantia-legal p { font-size: 0.82rem; color: #374151; line-height: 1.65; margin: 0; }
.garantia-legal a { color: var(--ac-terracotta); text-decoration: none; font-weight: 600; }

/* ── FRETE ── */
.shipping-calc { margin-top: 18px; padding: 16px; border: 1px solid var(--ac-line); border-radius: 16px; background: var(--ac-bg); }
.shipping-calc > label { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: var(--ac-ink); font-size: 14px; font-weight: 800; }
.shipping-calc > label svg { width: 20px; height: 20px; fill: none; stroke: var(--ac-wood); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shipping-calc-row { display: flex; gap: 8px; }
.shipping-calc-row input { flex: 1; min-width: 0; height: 46px; padding: 0 14px; border: 1px solid var(--ac-line); border-radius: 12px; background: #f9f5f0; font-size: 15px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.shipping-calc-row input:focus { border-color: rgba(194,104,59,0.5); background: #fff; box-shadow: 0 0 0 3px rgba(194,104,59,0.12); }
.shipping-calc-row button { flex: 0 0 auto; padding: 0 22px; color: #fff; border: 0; border-radius: 12px; background: var(--ac-wood); font-size: 14px; font-weight: 800; transition: background 160ms ease; }
.shipping-calc-row button:hover { background: var(--ac-wood-dark); }
.shipping-calc-row button:disabled { opacity: 0.6; cursor: default; }
.shipping-calc-help { display: inline-block; margin-top: 9px; color: var(--ac-muted); font-size: 12px; text-decoration: underline; }
.shipping-calc-result { margin-top: 13px; padding: 12px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.shipping-calc-result[hidden] { display: none; }
.shipping-calc-result.is-success { color: #0b6b60; border: 1px solid #a9dcd5; background: var(--ac-mint-soft); }
.shipping-calc-result.is-error { color: var(--ac-danger); border: 1px solid #edc4c4; background: #fbeeee; }
.shipping-calc-result strong { font-weight: 900; }
.shipping-calc-result .ship-free { color: var(--ac-mint); font-weight: 900; }

/* ── CONFIANÇA / PAGAMENTO ── */
.trust-trio { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.tt-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: #f9f5f0; border-radius: 12px; border: 1px solid var(--ac-line); }
.tt-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tt-green { background: var(--ac-mint-soft); }
.tt-green svg { stroke: var(--ac-mint); width: 20px; height: 20px; }
.tt-blue { background: #f3e4d8; }
.tt-blue svg { stroke: var(--ac-terracotta); width: 20px; height: 20px; fill: none; }
.tt-item .tt-icon svg[viewBox="0 0 24 24"] { width: 20px; height: 20px; fill: none; }
.tt-text { display: flex; flex-direction: column; gap: 2px; }
.tt-text strong { font-size: 13px; color: #111827; }
.tt-text span { font-size: 12px; color: #6b7280; }

/* ── SEÇÕES GENÉRICAS ── */
.section { padding: 64px 0; }
.section h2 { margin: 0 0 42px; font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; text-align: center; }
.ac-section-eyebrow { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--ac-terracotta); text-transform: uppercase; margin-bottom: 10px; display: block; }
.ac-section-title { text-align: center; font-size: clamp(22px, 3vw, 32px); color: var(--ac-wood); margin: 0 0 40px; font-weight: 800; line-height: 1.2; }

/* ── BANNER DE DESTAQUE ── */
.feature-banner { padding: 48px 0 0; background: #fff; }
.feature-banner-img { display: block; width: 100%; max-width: 720px; height: auto; margin: 0 auto; border-radius: 24px; box-shadow: var(--ac-shadow); }

/* ── BENEFÍCIOS ── */
.benefits-section { background: #fff; padding: 64px 0; }
.benefits-visual-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1100px; margin: 0 auto 36px; padding: 0 20px; }
.benefits-visual-strip img { display: block; width: 100%; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(60,35,20,0.12); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.benefit-card { background: var(--ac-soft); border: 1px solid rgba(194,104,59,0.14); border-radius: 18px; padding: 30px 22px; text-align: center; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(60,35,20,0.14); }
.benefit-icon { width: 58px; height: 58px; background: linear-gradient(135deg, var(--ac-wood-dark), var(--ac-wood)); border-radius: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.benefit-icon svg { width: 28px; height: 28px; fill: #fff; }
.benefit-card h3 { font-size: 15px; font-weight: 800; color: var(--ac-wood); margin: 0 0 8px; }
.benefit-card p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.65; }

/* ── FAIXA MARQUEE ── */
.marquee-strip { overflow: hidden; background: linear-gradient(90deg, var(--ac-wood), #5a3524); border-top: 3px solid #fff; border-bottom: 3px solid #fff; box-shadow: var(--ac-shadow); }
.marquee-track { display: flex; will-change: transform; animation: marqueeScroll 22s linear infinite; }
.marquee-group { display: flex; flex-shrink: 0; align-items: center; padding: 16px 0; }
.marquee-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 22px; color: #fff; font-size: 15px; font-weight: 800; letter-spacing: 0.06em; white-space: nowrap; }
.marquee-sep { color: var(--ac-amber); font-size: 13px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── VÍDEO EM DESTAQUE ── */
.video-showcase { background: var(--ac-soft); padding: 68px 0; }
.video-showcase-inner { display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: center; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.video-showcase video { display: block; width: 100%; height: auto; margin: 0 auto; border-radius: 26px; box-shadow: var(--ac-shadow); background: #000; }
.video-showcase-text .ac-section-eyebrow { text-align: left; }
.video-showcase-text h2 { font-size: clamp(22px, 3vw, 30px); color: var(--ac-wood); margin: 0 0 14px; font-weight: 800; line-height: 1.25; }
.video-showcase-text p { color: #5c4a3e; font-size: 15px; margin: 0 0 20px; line-height: 1.65; }
.video-showcase-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.video-showcase-list li { display: flex; align-items: center; gap: 10px; color: var(--ac-wood); font-size: 14px; font-weight: 700; }
.video-showcase-list svg { width: 20px; height: 20px; stroke: var(--ac-terracotta); fill: none; stroke-width: 2.5; flex-shrink: 0; }
@media (max-width: 760px) { .video-showcase-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; } .video-showcase video { max-width: 300px; } .video-showcase-text .ac-section-eyebrow { text-align: center; } .video-showcase-list { align-items: center; } }

/* ── DESCRIÇÃO DO PRODUTO ── */
.product-description { padding-top: 74px; padding-bottom: 74px; background: #fff; }
.description-container { width: min(960px, calc(100% - 32px)); padding: 28px; border: 1px solid #ece0d3; border-radius: 24px; background: #fff; box-shadow: 0 16px 45px rgba(60,35,20,0.1); }
.product-description h2 { margin-bottom: 24px; color: var(--ac-wood); font-family: 'Poppins', sans-serif; font-size: clamp(26px, 5vw, 44px); font-weight: 900; letter-spacing: -0.01em; line-height: 1.1; text-align: center; text-transform: uppercase; }
.description-images { display: grid; gap: 14px; }
.description-images img { display: block; width: 100%; height: auto; border-radius: 18px; background: #f3f3f3; }
.description-images-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
@media (max-width: 640px) { .description-images-row { grid-template-columns: 1fr; } }

/* ── FICHA TÉCNICA ── */
.specs-section { background: var(--ac-soft); padding: 64px 0; }
.specs-layout { display: grid; grid-template-columns: 380px 1fr; gap: 30px; align-items: start; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.specs-visual-img { display: block; width: 100%; height: auto; border-radius: 18px; box-shadow: 0 6px 30px rgba(36,26,20,0.1); }
.specs-table { max-width: 720px; margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 30px rgba(36,26,20,0.1); }
@media (max-width: 860px) { .specs-layout { grid-template-columns: 1fr; padding: 0; } .specs-table { margin: 0 16px; max-width: none; } .specs-visual-img { max-width: 380px; margin: 0 auto; } }
.specs-row { display: flex; border-bottom: 1px solid #f1ece4; }
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(odd) { background: #fff; }
.specs-row:nth-child(even) { background: #fdfaf6; }
.specs-label { width: 44%; padding: 15px 20px; font-size: 13px; font-weight: 700; color: var(--ac-wood); background: rgba(194,104,59,0.06) !important; border-right: 2px solid rgba(194,104,59,0.16); }
.specs-value { padding: 15px 20px; font-size: 13px; color: #475569; flex: 1; line-height: 1.5; }

/* ── PROVA SOCIAL ── */
.social-proof-bar { background: var(--ac-wood); padding: 52px 0; }
.spb-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; padding: 0 20px; }
.spb-item { text-align: center; }
.spb-number { font-family: 'Poppins', sans-serif; font-size: clamp(36px, 5vw, 52px); font-weight: 900; color: var(--ac-amber); display: block; line-height: 1; }
.spb-label { font-size: 11px; color: rgba(255,255,255,0.75); margin-top: 8px; display: block; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }

/* ── ANIMAÇÕES DE SCROLL ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── GARANTIA ── */
.guarantee-section { background: linear-gradient(135deg, var(--ac-wood) 0%, #4f2f21 100%); padding: 72px 0; }
.guarantee-card { display: flex; gap: 48px; align-items: center; max-width: 900px; margin: 0 auto; padding: 0 20px; }
.guarantee-shield { flex-shrink: 0; width: 110px; height: 110px; background: rgba(217,154,61,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 3px solid rgba(217,154,61,0.42); }
.guarantee-shield svg { width: 54px; height: 54px; fill: var(--ac-amber); stroke: none; }
.guarantee-content .ac-section-eyebrow { text-align: left; margin-bottom: 6px; color: var(--ac-amber); }
.guarantee-content h2 { font-size: clamp(20px, 2.8vw, 28px); color: #fff; margin: 0 0 14px; font-weight: 800; line-height: 1.25; }
.guarantee-content p { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0 0 20px; line-height: 1.6; }
.guarantee-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.guarantee-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 600; }
.guarantee-list svg { width: 18px; height: 18px; stroke: var(--ac-amber); fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* ── CTA DE MEIO DE PÁGINA ── */
.midcta-section { background: var(--ac-terracotta); padding: 72px 0; text-align: center; }
.midcta-inner { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.midcta-section h2 { font-size: clamp(24px, 3.5vw, 38px); color: #fff; margin: 0 0 12px; font-weight: 900; line-height: 1.2; }
.midcta-section h2 span { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.5); text-underline-offset: 4px; }
.midcta-sub { font-size: 15px; color: rgba(255,255,255,0.88); margin: 0 0 32px; }
.midcta-btn { display: inline-block; background: var(--ac-wood-dark); color: #fff; font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 900; letter-spacing: 0.04em; padding: 18px 44px; border: none; border-radius: 999px; cursor: pointer; box-shadow: 0 10px 36px rgba(0,0,0,0.3); transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.midcta-btn:hover { background: #2e1a12; transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,0.35); }

/* ── SOBRE NÓS (sem foto de equipe — painel editorial) ── */
.about-section { background: var(--ac-soft); padding: 64px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-panel {
  border-radius: var(--ac-radius); background: linear-gradient(135deg, var(--ac-wood-dark), var(--ac-wood));
  box-shadow: var(--ac-shadow); padding: 44px 34px; display: flex; flex-direction: column; gap: 26px; color: #fff;
  min-height: 420px; justify-content: center;
}
.about-panel-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(217,154,61,0.22); display: flex; align-items: center; justify-content: center; }
.about-panel-icon svg { width: 32px; height: 32px; fill: var(--ac-amber); }
.about-panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-panel-stats div strong { display: block; font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 900; color: var(--ac-amber); line-height: 1; }
.about-panel-stats div span { display: block; margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.68); letter-spacing: 0.05em; }

.about-content .about-title { margin: 0 0 22px; font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; text-align: left; }
.about-content p { margin: 0 0 18px; color: var(--ac-muted); font-size: 17px; line-height: 1.7; }
.about-lead { color: var(--ac-ink); font-size: 18px; font-weight: 500; }
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 0; padding: 0; list-style: none; }
.about-highlights li { display: flex; flex-direction: column; gap: 4px; padding: 18px 16px; background: #fff; border: 1px solid var(--ac-line); border-radius: 16px; }
.about-highlights strong { color: var(--ac-wood); font-size: 20px; font-weight: 900; line-height: 1.1; }
.about-highlights span { color: var(--ac-muted); font-size: 13px; line-height: 1.4; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-content .about-title, .about-content .eyebrow { text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .about-highlights li { flex-direction: row; align-items: baseline; gap: 10px; }
}

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--ac-line); }
.faq-list details { border-bottom: 1px solid var(--ac-line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; padding: 23px 5px; cursor: pointer; list-style: none; font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--ac-terracotta); font-family: Arial, sans-serif; font-size: 25px; }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { margin: -6px 0 22px; padding-right: 50px; color: var(--ac-muted); }

/* ── FOOTER ── */
.site-footer-ac { background: linear-gradient(to bottom, var(--ac-wood-dark), var(--ac-wood)) !important; padding: 50px 0 0; color: #fff; font-family: 'Inter', sans-serif; }
.fg-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; padding: 0 20px; }
.fg-col { text-align: center; }
.fg-col h4 { font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ac-amber); }
.fg-col p, .fg-col a { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.6; text-decoration: none; display: block; margin-bottom: 6px; transition: color 0.2s; }
.fg-col a:hover { color: var(--ac-amber); text-decoration: underline; }
.fg-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 12px; color: rgba(255,255,255,0.8); justify-content: center; }
.fg-contact-item svg { width: 14px; height: 14px; fill: var(--ac-amber); flex-shrink: 0; margin-top: 2px; }
.fg-security-box { background: rgba(255,255,255,0.08); border-radius: 6px; padding: 10px 14px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 500; justify-content: center; border: 1px solid rgba(217,154,61,0.22); }
.fg-security-box svg { width: 18px; height: 18px; fill: none; stroke: var(--ac-amber); stroke-width: 1.5; }
.fg-bottom-bar { background: var(--ac-wood-dark); width: 100%; padding: 20px; border-top: 2px solid var(--ac-terracotta); }
.fg-bottom-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px; padding: 0 20px; }
.fg-copyright { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; text-align: center; }

.fg-trust-strip { border-top: 1px solid rgba(255,255,255,.12); padding: 30px 0 24px; }
.fg-trust-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; display: flex; gap: 30px; align-items: flex-start; }
.fgt-left { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; }
.fgt-right { flex: 1; min-width: 0; }
.fgt-heading { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; text-align: center; }
.fgt-pay { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; margin-bottom: 18px; }
.fgt-pay img { height: 34px; border-radius: 5px; background: rgba(255,255,255,.08); padding: 4px 9px; border: 1px solid rgba(255,255,255,.1); }
.fgt-safe { display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(217,154,61,.5); border-radius: 20px; padding: 5px 14px; font-size: .76rem; color: rgba(255,255,255,.88); font-weight: 700; letter-spacing: .05em; }
.fgt-safe svg { width: 14px; height: 14px; fill: var(--ac-amber); flex-shrink: 0; }
.fgt-badges { display: grid; grid-template-columns: minmax(120px,190px) minmax(120px,190px); gap: 10px; margin-bottom: 14px; }
.fgt-badge { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 11px 14px; display: flex; align-items: center; gap: 10px; }
.fgt-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.fgt-badge strong { display: block; font-size: .77rem; color: #fff; font-weight: 700; line-height: 1.2; }
.fgt-badge span { display: block; font-size: .67rem; color: rgba(255,255,255,.5); letter-spacing: .05em; margin-top: 2px; }
.fgt-cta { display: flex; align-items: center; gap: 14px; background: transparent; border: 2px solid var(--ac-mint); border-radius: 10px; padding: 12px 18px; cursor: pointer; width: 100%; text-align: left; font-family: inherit; transition: background .2s; box-sizing: border-box; }
.fgt-cta:hover { background: rgba(14,148,136,.14); }
.fgt-cta-ico { width: 42px; height: 42px; background: var(--ac-mint); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fgt-cta-ico svg { width: 22px; height: 22px; fill: #fff; }
.fgt-cta-txt { flex: 1; }
.fgt-cta-txt small { display: block; font-size: .69rem; color: var(--ac-mint); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.fgt-cta-txt strong { display: block; font-size: 1.05rem; color: #fff; font-weight: 800; line-height: 1.25; }
.fgt-cta-txt .fgt-sub { font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: .05em; text-transform: uppercase; }
.fgt-arrow { width: 20px; height: 20px; fill: rgba(255,255,255,.45); flex-shrink: 0; }

@media (max-width: 768px) {
  .fg-trust-inner { flex-direction: column; gap: 22px; align-items: center; }
  .fgt-left, .fgt-right { width: 100%; text-align: center; }
  .fgt-pay { justify-content: center; }
  .fgt-safe { align-self: center; }
  .fgt-badges { grid-template-columns: 1fr 1fr; }
  .fgt-cta { text-align: left; }
}

/* ── STICKY / CARRINHO / TOAST ── */
.sticky-purchase {
  position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; padding: 10px 0;
  border-top: 1px solid var(--ac-line); background: rgba(255,255,255,0.94);
  box-shadow: 0 -12px 40px rgba(60,35,20,0.12); backdrop-filter: blur(16px);
  opacity: 0; pointer-events: none; transform: translateY(100%); transition: 220ms ease;
}
.sticky-purchase.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-purchase .container { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.sticky-purchase .container > div { display: flex; flex-direction: column; font-size: 13px; }
.sticky-purchase span { color: var(--ac-wood); font-weight: 800; }

.cart-layer { position: fixed; z-index: 100; inset: 0; visibility: hidden; }
.cart-layer.open { visibility: visible; }
.cart-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(36,26,20,0.55); opacity: 0; transition: opacity 220ms ease; }
.cart-layer.open .cart-backdrop { opacity: 1; }
.cart-drawer { position: absolute; top: 0; right: 0; display: flex; flex-direction: column; width: min(440px, 100%); height: 100%; background: var(--ac-bg); box-shadow: -20px 0 70px rgba(60,35,20,0.2); transform: translateX(100%); transition: transform 250ms ease; }
.cart-layer.open .cart-drawer { transform: translateX(0); }
.cart-drawer > header { display: flex; justify-content: space-between; align-items: center; padding: 21px 22px; border-bottom: 1px solid var(--ac-line); }
.cart-drawer h2 { margin: 0; font-family: 'Poppins', sans-serif; font-size: 23px; font-weight: 700; }
.icon-button { width: 40px; height: 40px; color: var(--ac-ink); border: 0; border-radius: 50%; background: var(--ac-soft); font-size: 25px; }
.cart-items { flex: 1; overflow: auto; padding: 20px; }
.empty-cart { display: grid; height: 100%; place-content: center; color: var(--ac-muted); text-align: center; }
.empty-cart strong { color: var(--ac-ink); font-family: 'Poppins', sans-serif; font-size: 22px; }
.cart-item { position: relative; display: grid; grid-template-columns: 88px 1fr auto; gap: 14px; margin-bottom: 13px; padding: 13px; border: 1px solid var(--ac-line); border-radius: 18px; background: #fff; }
.cart-item img { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; }
.cart-item > div { display: flex; flex-direction: column; }
.cart-item strong { font-size: 13px; line-height: 1.3; }
.cart-item span { color: var(--ac-muted); font-size: 11px; }
.cart-item b { margin-top: auto; color: var(--ac-wood); }
.cart-item button { width: 28px; height: 28px; color: var(--ac-muted); border: 0; border-radius: 50%; background: var(--ac-soft); font-size: 18px; }
.cart-drawer > footer { padding: 20px; border-top: 1px solid var(--ac-line); }
.cart-drawer > footer > div { display: flex; justify-content: space-between; align-items: end; margin-bottom: 16px; }
.cart-drawer > footer strong { font-family: 'Poppins', sans-serif; font-size: 26px; }
.cart-drawer > footer .button { width: 100%; }

.toast {
  position: fixed; z-index: 120; right: 20px; bottom: 88px; max-width: min(360px, calc(100% - 40px));
  padding: 13px 17px; color: #fff; border-radius: 12px; background: var(--ac-ink); box-shadow: var(--ac-shadow);
  font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(10px); transition: 180ms ease;
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* ── PÁGINAS INSTITUCIONAIS / LEGAIS ── */
.inst-hero { background: var(--ac-wood); color: #fff; padding: 60px 24px 70px; }
.inst-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.inst-hero p { opacity: .85; font-size: 1rem; max-width: 600px; }
.inst-crumb { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ac-amber); margin-bottom: 14px; font-weight: 600; }
.inst-crumb a { color: var(--ac-amber); text-decoration: none; }
.inst-main { max-width: 880px; margin: 0 auto; padding: 52px 24px 80px; }
.inst-section { margin-bottom: 44px; }
.inst-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ac-terracotta); margin-bottom: 8px; display: block; }
.inst-section h2 { font-size: 1.4rem; font-weight: 800; color: var(--ac-wood); margin-bottom: 14px; }
.inst-section p { color: #374151; font-size: .97rem; line-height: 1.75; margin-bottom: 10px; }
.inst-list { list-style: none; padding: 0; margin: 14px 0; }
.inst-list li { padding: 9px 0 9px 24px; position: relative; border-bottom: 1px solid #f0ece6; color: #374151; font-size: .95rem; line-height: 1.6; }
.inst-list li:last-child { border-bottom: none; }
.inst-list li::before { content: '\2192'; position: absolute; left: 0; color: var(--ac-terracotta); font-weight: 700; }
.inst-hl { border-left: 4px solid var(--ac-terracotta); background: var(--ac-soft); padding: 18px 22px; border-radius: 0 8px 8px 0; margin: 22px 0; }
.inst-hl p { color: var(--ac-wood); margin: 0; font-size: .95rem; }
.inst-hr { border: none; border-top: 1px solid #e9e1d6; margin: 38px 0; }
.inst-rights { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; margin: 18px 0; }
.inst-right-item { background: #faf7f3; border: 1px solid #e9e1d6; border-radius: 8px; padding: 16px; text-align: center; }
.inst-right-item .ri { font-size: 1.4rem; margin-bottom: 8px; }
.inst-right-item h4 { font-size: .85rem; font-weight: 700; color: var(--ac-wood); margin-bottom: 4px; }
.inst-right-item p { font-size: .8rem; color: #6b7280; margin: 0; }
.inst-cbox { background: var(--ac-wood); color: #fff; border-radius: 12px; padding: 30px 34px; margin-top: 44px; }
.inst-cbox h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.inst-cbox p { color: rgba(255,255,255,.82); font-size: .92rem; margin-bottom: 7px; }
.inst-cbox a { color: var(--ac-amber); text-decoration: none; }

/* ── FICHA DA EMPRESA (páginas legais) ── */
.legal-company { margin: 8px 0 28px; padding: 18px 20px; background: var(--ac-soft); border: 1px solid var(--ac-line); border-radius: 14px; }
.legal-company dl { display: grid; grid-template-columns: 150px 1fr; gap: 10px 16px; margin: 0; }
.legal-company dt { color: var(--ac-muted); font-size: 13px; font-weight: 800; }
.legal-company dd { margin: 0; font-size: 14px; }
@media (max-width: 560px) {
  .legal-company dl { grid-template-columns: 1fr; gap: 2px 0; }
  .legal-company dd { margin-bottom: 10px; }
}

/* ── CONTATO ── */
.ct-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px 80px; display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.ct-form-card { background: #fff; border: 1px solid #e9e1d6; border-radius: 14px; padding: 36px 38px; }
.ct-form-card h2 { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--ac-wood); margin-bottom: 6px; }
.ct-form-card .ct-sub { font-size: .9rem; color: #6b7280; margin-bottom: 28px; }
.ct-group { margin-bottom: 20px; }
.ct-group label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ac-wood); margin-bottom: 7px; }
.ct-group input, .ct-group select, .ct-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: .95rem; color: #374151; background: #fff; outline: none;
  font-family: inherit; transition: border-color .2s, box-shadow .2s; box-sizing: border-box; -webkit-appearance: none; appearance: none;
}
.ct-group input:focus, .ct-group select:focus, .ct-group textarea:focus { border-color: var(--ac-terracotta); box-shadow: 0 0 0 3px rgba(194,104,59,.15); }
.ct-group textarea { resize: vertical; min-height: 130px; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-btn { width: 100%; padding: 14px; background: var(--ac-terracotta); color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; letter-spacing: .02em; transition: background .2s; margin-top: 6px; font-family: inherit; }
.ct-btn:hover { background: var(--ac-terracotta-dark); }
.ct-btn:disabled { background: #d1d5db; cursor: not-allowed; }
.ct-success { display: none; background: var(--ac-mint-soft); border: 1.5px solid var(--ac-mint); border-radius: 10px; padding: 22px; text-align: center; color: #0b6b60; font-weight: 600; margin-top: 20px; font-size: .97rem; }
.ct-success .cs-ico { font-size: 2rem; margin-bottom: 8px; }
.ct-info { display: flex; flex-direction: column; gap: 16px; }
.ct-icard { border: 1px solid #e9e1d6; border-radius: 12px; padding: 22px; }
.ct-icard-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ct-ico { width: 42px; height: 42px; background: var(--ac-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-ico svg { width: 20px; height: 20px; fill: var(--ac-terracotta); }
.ct-icard h3 { font-size: 1rem; font-weight: 700; color: var(--ac-wood); margin: 0; }
.ct-icard p { font-size: .9rem; color: #6b7280; line-height: 1.65; margin: 0; }
.ct-icard a { color: var(--ac-terracotta); text-decoration: none; font-weight: 600; }
.ct-hours { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.ct-hour-item { background: #faf7f3; border-radius: 6px; padding: 10px 12px; }
.ct-hour-item span { display: block; font-size: .68rem; color: #9ca3af; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; margin-bottom: 2px; }
.ct-hour-item p { font-size: .88rem; color: var(--ac-wood); font-weight: 600; margin: 0; }
.ct-response-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--ac-soft); border: 1px solid #e3cdb3; border-radius: 20px; padding: 5px 12px; font-size: .82rem; color: var(--ac-wood); font-weight: 600; margin-top: 8px; }

@media (max-width: 860px) {
  .ct-wrap { grid-template-columns: 1fr; gap: 36px; }
  .ct-info { order: -1; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-hours { grid-template-columns: 1fr; }
}

/* ── VITRINE DA LOJA (index.html) ── */
.shop-hero { background: linear-gradient(135deg, var(--ac-wood-dark) 0%, var(--ac-wood) 100%); padding: 68px 0 76px; text-align: center; color: #fff; }
.shop-hero-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--ac-amber); margin-bottom: 14px; display: block; }
.shop-hero h1 { font-family: 'Poppins', sans-serif; font-size: clamp(30px, 5vw, 48px); font-weight: 900; margin: 0 0 14px; letter-spacing: -0.02em; line-height: 1.1; }
.shop-hero p { font-size: 16px; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; line-height: 1.6; }

.shop-section { padding: 64px 0; background: #fff; }
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; max-width: 1100px; margin: 0 auto; }
.shop-card { display: flex; flex-direction: column; border: 1px solid var(--ac-line); border-radius: 20px; overflow: hidden; background: #fff; text-decoration: none; color: inherit; box-shadow: 0 8px 24px rgba(60,35,20,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.shop-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(60,35,20,0.16); }
.shop-card-media { position: relative; aspect-ratio: 1; overflow: hidden; background: #f3f3f3; }
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.shop-card:hover .shop-card-media img { transform: scale(1.04); }
.shop-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-card-body h3 { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 800; color: var(--ac-ink); margin: 0; line-height: 1.3; }
.shop-card-desc { font-size: 13px; color: var(--ac-muted); line-height: 1.55; margin: 0; flex: 1; }
.shop-card-price { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 900; color: var(--ac-wood); margin: 4px 0 6px; }
.shop-card-cta { display: inline-flex; align-items: center; justify-content: center; margin-top: auto; text-align: center; }

/* Enquanto o catálogo tiver só 1 produto, centraliza o card em vez de deixar colado à esquerda */
.shop-grid:has(.shop-card:only-child) { display: flex; justify-content: center; }
.shop-grid:has(.shop-card:only-child) .shop-card { max-width: 380px; width: 100%; }

/* ── LGPD ── */
#lgpd-banner a { color: var(--ac-amber); }
#lgpd-banner button:last-child { background: var(--ac-terracotta) !important; }
.lgpd-row { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.lgpd-text { flex: 1; min-width: 240px; }
.lgpd-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 420px) {
  #lgpd-banner { padding: 14px 16px !important; }
  .lgpd-row { gap: 12px; }
  .lgpd-text { min-width: 0; flex-basis: 100%; }
  .lgpd-actions { width: 100%; }
  .lgpd-actions button { flex: 1 1 0; }
}

/* ── RESPONSIVO ── */
@media (max-width: 950px) {
  .product-layout { grid-template-columns: 1fr; }
  .gallery { position: static; width: 100%; max-width: 680px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .ha-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding-bottom: 12px; }
  .ha-menu-icon { display: flex; align-items: center; grid-column: 1; grid-row: 1; }
  .ha-logo { display: flex; justify-content: center; grid-column: 2; grid-row: 1; }
  .ac-logo-svg { height: 32px; margin: 0 auto; }
  .ha-cart { display: flex; justify-content: flex-end; grid-column: 3; grid-row: 1; }
  .ha-cart .cart-text { display: none; }
  .ha-search { grid-column: 1 / -1; grid-row: 2; width: 100%; max-width: 100%; margin: 0; height: 40px; }
  .ha-links { display: none; flex-direction: column; gap: 0; padding: 0; border-top: 1px solid rgba(255,255,255,0.12); width: 100%; text-align: left; }
  .ha-links:not([hidden]) { display: flex; }
  .ha-links a { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; width: 100%; }
  .fg-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; text-align: center; }
  .fg-col { display: flex; flex-direction: column; align-items: center; }
  .fg-contact-item, .fg-security-box { justify-content: center; }
  .fg-bottom-inner { flex-direction: column-reverse; justify-content: center; text-align: center; gap: 12px; }
  .ac-tb-inner { gap: 14px; }
  .ac-tb-item { font-size: 10px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .spb-inner { gap: 32px; }
  .specs-table { margin: 0 16px; }
  .guarantee-card { flex-direction: column; gap: 24px; text-align: center; }
  .guarantee-content .ac-section-eyebrow { text-align: center; }
  .guarantee-list { display: inline-flex; align-self: center; }
  .guarantee-list li { justify-content: flex-start; align-items: flex-start; text-align: left; }
  .sticky-purchase .container > div { display: none; }
  .sticky-purchase .button { width: 100%; }
  h1 { font-size: 34px; }
  .gallery-arrow { opacity: 1; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-visual-strip { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .container { width: min(100% - 22px, 1180px); }
  .gallery-main { border-radius: 20px; }
  .thumbnail { width: 51px; height: 51px; }
  h1 { font-size: 26px; letter-spacing: -0.02em; }
  .subtitle { font-size: 15px; margin: 14px 0; }
  .price-block strong { font-size: 32px; }
  .price-block { margin-top: 20px; }
}
