/* ============================================================
   Depósito Luiza - Frontend CSS (marketplace responsivo)
   ============================================================ */

:root {
  --primary-color: #0086FF;
  --secondary-color: #005FCC;
  --background-color: #EEF3F6;
  --text-color: #1F2937;
  --blue-light: #EAF5FF;
  --white: #FFFFFF;
  --border: #E5E9EF;
  --text-muted: #667085;
  --green: #00A650;
  --yellow: #FFB800;
  --radius: 8px;
  --shadow: 0 1px 6px rgba(16,24,40,.07);
  --shadow-md: 0 4px 20px rgba(16,24,40,.13);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-color);
  background: var(--background-color);
  font-size: 14px;
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 16px; width: 100%; }

/* ===================== DRAWER MOBILE ===================== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.52);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 290px; max-width: 88vw;
  background: var(--white); z-index: 400; overflow-y: auto;
  transform: translateX(-100%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
  background: var(--primary-color); color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; min-height: 54px; flex-shrink: 0;
}
.drawer-title { font-size: 14px; }
.drawer-close {
  background: none; border: 0; color: var(--white);
  cursor: pointer; padding: 4px; line-height: 0;
}
.drawer-section-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted); padding: 12px 18px 4px; font-weight: 700;
}
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px; padding: 11px 18px;
  font-size: 14px; border-bottom: 1px solid #f2f4f7; color: var(--text-color);
}
.drawer-nav a:hover { background: var(--blue-light); color: var(--primary-color); }
.drawer-footer-links { padding: 4px 0; flex: 1; }
.drawer-group-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted); padding: 12px 18px 4px; font-weight: 700;
}
.drawer-small-link {
  display: block; padding: 8px 18px; font-size: 13px;
  color: var(--text-muted); border-bottom: 1px solid #f5f6f8;
}
.drawer-small-link:hover { color: var(--primary-color); }

/* ======================== TOPBAR ========================= */
.topbar { background: var(--white); border-bottom: 1px solid var(--border); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 34px; }
.topbar-text { font-size: 12px; color: var(--text-muted); }
.topbar-btn {
  background: var(--blue-light); color: var(--secondary-color);
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px;
}

/* =================== GRADIENTE HERO ====================== */
/* Fundo azul que continua do header e vai sumindo em degradê */
.site-main { position: relative; }

.page-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 540px;
  /* usa máscara para o degradê funcionar com qualquer cor CSS variable */
  background: var(--primary-color);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 12%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 12%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* Garante que todo conteúdo da home fique acima do gradiente */
.site-main > *:not(.page-bg-gradient) { position: relative; z-index: 1; }

/* ===================== MAIN HEADER ======================= */
.main-header {
  background: var(--primary-color); color: var(--white);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.header-inner {
  display: flex; align-items: center; gap: 16px;
  min-height: 72px; padding: 8px 16px;
}
.mobile-menu-toggle {
  display: none; background: none; border: 0;
  color: var(--white); cursor: pointer; padding: 6px; line-height: 0; flex-shrink: 0;
}
.logo img { max-height: 44px; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--white); white-space: nowrap; }

/* Busca */
.search-form {
  flex: 1; display: flex; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  max-width: 800px; height: 44px;
}
.search-form input {
  flex: 1; border: 0; padding: 0 16px;
  font-size: 14px; outline: none; color: var(--text-color);
}
.search-btn {
  border: 0; background: var(--white); padding: 0 16px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--border); flex-shrink: 0;
}
.search-btn:hover { background: #f0f7ff; }

/* Ícones direita */
.header-icons { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
.header-icon-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--white); padding: 6px 10px; border-radius: var(--radius);
  font-size: 11px; line-height: 1; white-space: nowrap;
  transition: background .15s;
}
.header-icon-btn:hover { background: rgba(255,255,255,.16); }
.header-icon-btn svg { display: block; }

/* =================== MENU HORIZONTAL ==================== */
/* Desktop: mesma cor do header */
.main-nav { background: var(--primary-color); border-top: 1px solid rgba(255,255,255,.15); }
.main-nav-inner {
  display: flex; height: 40px; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.main-nav-inner::-webkit-scrollbar { display: none; }
.main-nav-inner a {
  color: rgba(255,255,255,.88); font-size: 13px; font-weight: 500;
  white-space: nowrap; padding: 0 16px;
  display: flex; align-items: center; border-right: 1px solid rgba(255,255,255,.1);
}
.main-nav-inner a:hover { background: rgba(255,255,255,.13); color: var(--white); }
.main-nav-inner a.nav-highlight { color: #FFE600; font-weight: 700; }

.site-main { padding: 10px 0 40px; }

/* ======================= BANNERS ======================== */
.hero-section { margin-top: 10px; }
/* o padding nas laterais mostra o azul do gradiente atrás do banner */
.hero-section .container { padding: 0 12px; }
.hero-carousel {
  position: relative; border-radius: 12px;
  overflow: hidden; background: rgba(255,255,255,.12);
}
.hero-track { display: flex; transition: transform .4s ease; }
.hero-slide { min-width: 100%; }
.banner { display: block; width: 100%; }
.hero-banner img { width: 100%; height: 280px; object-fit: cover; display: block; }
.banner img { width: 100%; object-fit: cover; display: block; }

.banner-placeholder {
  height: 260px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); text-align: center; padding: 24px;
}
.banner-placeholder strong { font-size: 20px; }
.banner-placeholder small { opacity: .85; font-size: 13px; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(255,255,255,.92); border: 0; width: 38px; height: 38px;
  border-radius: 50%; cursor: pointer; color: var(--text-color);
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.carousel-arrow:hover { background: var(--white); }
.carousel-dots {
  position: absolute; bottom: 8px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
}
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.55); cursor: pointer; transition: all .2s;
}
.carousel-dots button.active { background: var(--white); width: 20px; border-radius: 4px; }

.below-hero {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 10px;
}
.mini-banner img, .below-hero .banner-placeholder { height: 128px; border-radius: var(--radius); }
.mini-banner .banner-placeholder { height: 128px; }

/* Garante que os mini-banners apareçam acima do gradiente */
.below-hero .banner { border-radius: var(--radius); overflow: hidden; }

/* =========== DRAG SCROLL (carrossel horizontal) ========== */
.drag-scroll-row {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 4px; cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.drag-scroll-row::-webkit-scrollbar { display: none; }
.drag-scroll-row.is-dragging { cursor: grabbing; user-select: none; }
.drag-scroll-row .product-card {
  min-width: 160px; max-width: 160px;
  scroll-snap-align: start; flex-shrink: 0;
}
.drag-row-arrows { display: flex; justify-content: flex-end; gap: 8px; margin-top: 10px; }
.drag-arrow {
  background: var(--white); border: 1px solid var(--border);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--text-color);
}
.drag-arrow:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* ====== MINI FEAT CARDS (Destaques — carrossel compacto) ====== */
.mini-feat-section { margin-top: 10px; }

.mini-feat-row {
  display: flex; gap: 8px;
  overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}
.mini-feat-row::-webkit-scrollbar { display: none; }

.mini-feat-card {
  min-width: 134px; max-width: 134px; flex-shrink: 0;
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(16,24,40,.07);
  transition: box-shadow .18s;
}
.mini-feat-card:hover { box-shadow: 0 3px 12px rgba(16,24,40,.13); }
.mini-feat-card a { display: flex; flex-direction: column; height: 100%; }

.mini-feat-label {
  display: block; font-size: 10px; font-weight: 700;
  color: var(--primary-color); background: var(--blue-light);
  padding: 5px 8px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  border-bottom: 1px solid rgba(0,134,255,.12);
  letter-spacing: .01em;
}

.mini-feat-thumb {
  aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; padding: 8px;
}
.mini-feat-thumb img { max-height: 100%; object-fit: contain; }
.mini-feat-placeholder { font-size: 38px; opacity: .35; }

.mini-feat-name {
  font-size: 11px; color: #334155; line-height: 1.3;
  padding: 0 8px 4px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}

.mini-feat-price {
  display: block; font-size: 15px; font-weight: 800;
  color: var(--text-color); padding: 2px 8px 4px; line-height: 1.1;
}
.mini-feat-cents { font-size: 11px; font-weight: 600; }

.mini-feat-ship {
  display: block; font-size: 10px; color: var(--green);
  font-weight: 600; padding: 0 8px 8px;
}

/* ==================== SEÇÕES DA HOME ==================== */
.home-section {
  background: var(--white); border-radius: var(--radius);
  padding: 14px 16px; margin-top: 12px; box-shadow: var(--shadow);
}
.section-head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.section-head h2 { font-size: 16px; font-weight: 700; }
.section-sub { color: var(--text-muted); font-size: 12px; }
.section-link {
  margin-left: auto; font-size: 13px; color: var(--primary-color);
  font-weight: 600; white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

.products-row.is-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}

/* ===================== PRODUCT CARD ===================== */
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px;
  position: relative; transition: box-shadow .2s, transform .15s;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-link { display: flex; flex-direction: column; flex: 1; }

/* Badge (Full, Oferta...) */
.product-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: var(--primary-color); color: var(--white);
  font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; letter-spacing: .02em;
}

/* Imagem */
.product-thumb {
  aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; margin-bottom: 8px;
  overflow: hidden; border-radius: 4px;
}
.product-thumb img {
  max-height: 100%; object-fit: contain;
  transition: transform .2s;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-thumb-placeholder { font-size: 44px; color: var(--text-muted); opacity: .35; }
.product-thumb-placeholder.big { font-size: 100px; }

/* Nome */
.product-name {
  font-size: 12px; font-weight: 400; line-height: 1.35;
  min-height: 32px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 5px; color: #334155;
}

/* Rating */
.product-rating {
  display: flex; align-items: center; gap: 3px; margin-bottom: 5px;
}
.stars { color: var(--yellow); font-size: 12px; letter-spacing: .5px; }
.stars .star-empty { color: #ddd; }
.rating-num { color: var(--text-muted); font-size: 11px; }

/* Preços */
.product-prices { margin-bottom: 3px; }
.price-old { color: var(--text-muted); text-decoration: line-through; font-size: 11px; display: block; }
.price-main-row { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }
.price-now {
  color: #0f172a; font-size: 13px; font-weight: 500; line-height: 1.1;
}
.price-now strong { font-size: 20px; font-weight: 800; }
.price-now sup { font-size: 12px; font-weight: 700; vertical-align: super; line-height: 1; }
.pix-label {
  font-size: 11px; color: var(--text-muted);
  background: #f1f5f9; padding: 1px 6px; border-radius: 10px;
  white-space: nowrap; align-self: center;
}
.price-discount-pill {
  display: inline-block; background: #dcfce7; color: #16a34a;
  font-size: 11px; font-weight: 700; padding: 2px 7px;
  border-radius: 10px; margin-top: 3px;
}

/* Parcelamento */
.product-installment { color: var(--text-muted); font-size: 11px; margin-top: 4px; line-height: 1.3; }

/* Frete */
.product-shipping {
  display: flex; align-items: center; gap: 4px;
  color: var(--green); font-weight: 600; font-size: 11px; margin-top: 5px;
}

/* ============== CATEGORIAS CIRCULARES ================= */
.categories-circles {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 6px; scrollbar-width: none;
}
.categories-circles::-webkit-scrollbar { display: none; }
.cat-circle { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 74px; }
.cat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; overflow: hidden;
  border: 2px solid var(--border); transition: border-color .2s;
}
.cat-circle:hover .cat-icon { border-color: var(--primary-color); }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-name { font-size: 11px; text-align: center; line-height: 1.2; }

/* ============== BANNERS INTERMEDIÁRIOS ================ */
.middle-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.middle-strip .banner img, .middle-strip .banner-placeholder { height: 148px; border-radius: var(--radius); }
.editorial { margin-top: 12px; }
.editorial-box { background: var(--white); border-radius: var(--radius); padding: 28px; text-align: center; box-shadow: var(--shadow); }

/* ================ DETALHE DO PRODUTO ================= */
.breadcrumb { font-size: 12px; color: var(--text-muted); margin: 12px 0; }
.breadcrumb a:hover { color: var(--primary-color); }
.product-detail {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px;
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.pd-main-image {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 360px;
}
.pd-main-image img { max-height: 400px; object-fit: contain; }
.pd-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 62px; height: 62px; border: 1px solid var(--border);
  border-radius: 6px; padding: 4px; background: var(--white); cursor: pointer;
}
.pd-thumb:hover { border-color: var(--primary-color); }
.pd-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pd-title { font-size: 20px; line-height: 1.3; margin-bottom: 8px; }
.pd-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pd-sku { margin-left: auto; font-size: 12px; }
.pd-prices { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.pd-installment { color: var(--text-muted); margin-top: 4px; font-size: 13px; }
.pd-shipping { color: var(--green); font-weight: 600; margin-top: 6px; }
.pd-short { margin-top: 16px; color: var(--text-color); line-height: 1.6; }
.pd-actions { margin-top: 20px; }
.btn-buy {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--white); font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius); font-size: 15px;
}
.btn-buy:hover { filter: brightness(.93); }
.pd-stock { margin-top: 12px; color: var(--text-muted); font-size: 13px; }
.pd-description {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; margin-top: 12px; box-shadow: var(--shadow);
}
.pd-description h2 { font-size: 18px; margin-bottom: 12px; }
.pd-description-body { line-height: 1.7; }

/* ==================== LISTAGENS ====================== */
.listing-head { padding: 14px 0; }
.listing-head h1 { font-size: 20px; }
.listing-head p { color: var(--text-muted); margin-top: 4px; }
.listing-count { color: var(--text-muted); font-size: 13px; }
.empty-state {
  background: var(--white); padding: 40px; text-align: center;
  border-radius: var(--radius); color: var(--text-muted); margin-top: 12px;
}
.pagination { display: flex; gap: 6px; justify-content: center; margin: 24px 0; flex-wrap: wrap; }
.pagination a { background: var(--white); border: 1px solid var(--border); padding: 8px 14px; border-radius: 6px; }
.pagination a.active { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.institutional-page { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.institutional-page h1 { margin-bottom: 16px; }
.page-content { line-height: 1.7; }
.error-page { background: var(--white); border-radius: var(--radius); padding: 60px; text-align: center; box-shadow: var(--shadow); margin: 30px 0; }
.error-page h1 { font-size: 64px; color: var(--primary-color); }
.error-page p { margin: 12px 0 24px; color: var(--text-muted); }

/* ======================= FOOTER ====================== */
.benefits-strip { background: var(--secondary-color); color: var(--white); padding: 16px 0; margin-top: 32px; }
.benefits-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit { display: flex; align-items: center; gap: 10px; }
.benefit svg { flex-shrink: 0; opacity: .9; }
.benefit strong { display: block; font-size: 13px; }
.benefit small { font-size: 11px; opacity: .82; }

.site-footer { background: var(--white); border-top: 1px solid var(--border); }
.footer-links-grid { padding: 28px 0 16px; }
.footer-cols-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 36px; }
.footer-links-col { display: flex; flex-direction: column; }
.footer-links-col a { font-size: 14px; color: #334155; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
.footer-links-col a:hover { color: var(--primary-color); }
.footer-legal-text { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border); }
.footer-legal-text p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

.footer-contact-bar { background: #f8fafc; border-top: 1px solid var(--border); padding: 22px 0; }
.footer-contact-inner { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-chat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--primary-color); color: var(--primary-color);
  font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 8px;
}
.footer-chat-btn:hover { background: var(--blue-light); }
.footer-phone { color: var(--text-muted); font-size: 13px; }
.footer-phone strong { display: block; font-size: 17px; color: var(--text-color); }
.footer-wpp-btn {
  background: #25D366; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: auto;
}
.footer-wpp-btn:hover { filter: brightness(.9); }
.footer-address { font-size: 12px; color: var(--text-muted); }
.footer-bottom { background: #1e293b; color: rgba(255,255,255,.55); padding: 12px 0; }
.footer-bottom p { font-size: 12px; }
.footer-bottom strong { color: rgba(255,255,255,.85); }

.wpp-float {
  position: fixed; right: 16px; bottom: 20px; width: 52px; height: 52px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 250;
}
.wpp-float:hover { transform: scale(1.07); }

/* =====================================================
   RESPONSIVO - TABLET
   ===================================================== */
@media (max-width: 1100px) {
  .products-row.is-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .products-row.is-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================
   RESPONSIVO - MOBILE
   ===================================================== */
@media (max-width: 768px) {

  /* ------ Header ------ */
  .mobile-menu-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; min-height: auto; gap: 8px; padding: 8px 12px; }
  .logo { flex: 1; }
  .logo-text { font-size: 16px; }
  .logo img { max-height: 36px; }
  .search-form { order: 3; flex-basis: 100%; max-width: none; height: 40px; }
  .header-icons { gap: 0; }
  .header-icon-btn span { display: none; }
  .header-icon-btn { padding: 6px 8px; }

  /* Oculta o menu horizontal de categorias no mobile */
  .main-nav { display: none; }

  /* ------ Hero ------ */
  .hero-banner img { height: 160px; }
  .below-hero { grid-template-columns: 1fr 1fr; gap: 8px; }
  .below-hero .banner:last-child { display: none; }
  .mini-banner img, .below-hero .banner-placeholder { height: 96px; }

  /* ------ Seções: fundo transparente no mobile ------ */
  /* Os cards ficam com fundo branco; a seção fica sem fundo inteiriço */
  .home-section {
    background: transparent;
    box-shadow: none;
    padding: 12px 0;
    border-radius: 0;
  }
  .home-section .section-head { padding: 0 4px; }

  /* ------ Drag scroll: cards maiores em mobile ------ */
  .drag-scroll-row .product-card { min-width: 145px; max-width: 145px; }
  .drag-scroll-row { gap: 8px; }

  /* ------ Grid: 2 colunas no mobile ------ */
  .products-row.is-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* ------ Card: ajustes mobile ------ */
  .price-now strong { font-size: 18px; }
  .product-badge { font-size: 9px; padding: 2px 6px; }

  /* ------ Faixa do meio ------ */
  .middle-strip { grid-template-columns: 1fr; gap: 8px; }
  .middle-strip .banner:nth-child(n+2) { display: none; }

  /* ------ Detalhe produto ------ */
  .product-detail { grid-template-columns: 1fr; padding: 14px; }
  .pd-main-image { min-height: 220px; }
  .pd-main-image img { max-height: 250px; }

  /* ------ Benefits ------ */
  .benefits-inner { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* ------ Footer ------ */
  .footer-cols-wrap { grid-template-columns: 1fr; }
  .footer-contact-actions { flex-wrap: wrap; gap: 10px; }
  .footer-wpp-btn { margin-left: 0; }
}

@media (max-width: 420px) {
  .benefits-inner { grid-template-columns: 1fr; }
  .drag-scroll-row .product-card { min-width: 132px; max-width: 132px; }
  .products-row.is-grid { gap: 6px; }
}