/* ===========================================================
   Linhares Materiais Elétricos — Estilos do site
   Paleta oficial: preto + amarelo/dourado + laranja
   =========================================================== */

:root {
  --lme-black:        #1A1A1A;
  --lme-bg:           #0F0F0F;
  --lme-bg-card:      #1F1F1F;
  --lme-border:       #2A2A2A;
  --lme-yellow:       #F5B800;
  --lme-yellow-soft:  #FFC72C;
  --lme-orange:       #F39323;
  --lme-white:        #FFFFFF;
  --lme-gray:         #B0B0B0;
  --lme-gray-dark:    #6F6F6F;
  --lme-gray-light:   #F5F5F5;
  --lme-success:      #2BC48A;
  --lme-danger:       #E74C3C;

  --lme-gradient: linear-gradient(135deg, var(--lme-yellow) 0%, var(--lme-orange) 100%);
  --lme-shadow-sm: 0 2px 6px rgba(0,0,0,0.18);
  --lme-shadow-md: 0 8px 24px rgba(0,0,0,0.28);
  --lme-radius:    10px;
  --lme-radius-lg: 16px;
  --lme-fast:      150ms ease;
  --lme-slow:      300ms ease;
  --container:     1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--lme-gray-light);
  color: var(--lme-black);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
.container, main, section, .layout-products, .layout-cart, aside, .filters { min-width: 0; }

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* SVGs inline herdam tamanho do contexto — escopados para containers conhecidos */
.topbar svg, .topbar-info svg { width: 14px; height: 14px; vertical-align: middle; }
.icon-link .icn svg { width: 22px; height: 22px; }
.cat-card .icn svg { width: 30px; height: 30px; }
.product-img svg { width: 60%; height: 60%; opacity: 0.55; }
.info-card .icn svg { width: 24px; height: 24px; }
.footer .social svg { width: 18px; height: 18px; }
.wa-float svg { width: 28px; height: 28px; }
.logo svg { width: 200px; height: 56px; }
.btn svg { width: 16px; height: 16px; vertical-align: middle; }
.cart-item .ci-img svg { width: 55%; opacity: 0.55; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* === Top bar ============================================= */
.topbar {
  background: var(--lme-black);
  color: var(--lme-gray);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--lme-border);
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.topbar a { color: var(--lme-yellow); transition: color var(--lme-fast); }
.topbar a:hover { color: var(--lme-yellow-soft); }
.topbar-info { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }

/* === Header / Navegação ================================== */
.header {
  background: var(--lme-bg);
  color: var(--lme-white);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--lme-shadow-md);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--lme-white);
  font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
}
.logo-tag { font-size: 10px; letter-spacing: 0.15em; color: var(--lme-gray); display: block; font-weight: 500; }

.search-box {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.search-box input {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 999px;
  padding: 0 50px 0 22px;
  background: var(--lme-bg-card);
  color: var(--lme-white);
  font-size: 15px;
  outline: none;
  border: 1px solid var(--lme-border);
  transition: border-color var(--lme-fast);
}
.search-box input:focus { border-color: var(--lme-yellow); }
.search-box input::placeholder { color: var(--lme-gray-dark); }
.search-box button {
  position: absolute; right: 4px; top: 4px;
  height: 36px; width: 36px;
  background: var(--lme-yellow);
  border: none; border-radius: 50%;
  color: var(--lme-black);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

.header-actions { display: flex; align-items: center; gap: 20px; }
.icon-link {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--lme-white);
  transition: background var(--lme-fast);
  font-size: 14px;
}
.icon-link:hover { background: var(--lme-bg-card); }
.icon-link .icn { font-size: 22px; }
.cart-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--lme-yellow);
  color: var(--lme-black);
  font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px; padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
}

/* Menu de categorias */
.nav {
  background: var(--lme-black);
  border-top: 1px solid var(--lme-border);
}
.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 4px;
}
.nav-list a {
  display: block;
  padding: 14px 12px;
  color: var(--lme-white);
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--lme-fast);
}
.nav-list a:hover,
.nav-list a.active { color: var(--lme-yellow); border-bottom-color: var(--lme-yellow); }

/* === Hero (home) ========================================= */
.hero {
  background: var(--lme-black);
  color: var(--lme-white);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(245,184,0,0.10) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(243,147,35,0.08) 0, transparent 40%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><path d='M30 10 L20 40 L35 38 L25 70 L55 35 L40 38 L50 10 Z' fill='%23F5B800' fill-opacity='0.04'/></svg>");
  background-size: 200px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; margin: 0 0 20px;
  font-weight: 800; letter-spacing: -0.02em;
}
.hero h1 .accent {
  background: var(--lme-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { font-size: 18px; color: var(--lme-gray); max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--lme-border);
}
.hero-stats .stat strong {
  display: block;
  font-size: 26px;
  color: var(--lme-yellow);
  font-weight: 800;
}
.hero-stats .stat span { font-size: 13px; color: var(--lme-gray); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 100%; max-width: 420px; }

/* === Botões ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all var(--lme-fast);
  white-space: nowrap;
}
.btn-primary { background: var(--lme-yellow); color: var(--lme-black); }
.btn-primary:hover { background: var(--lme-yellow-soft); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(245,184,0,0.3); }
.btn-secondary { background: transparent; color: var(--lme-white); border: 2px solid var(--lme-white); }
.btn-secondary:hover { background: var(--lme-white); color: var(--lme-black); }
.btn-dark { background: var(--lme-black); color: var(--lme-white); }
.btn-dark:hover { background: #2A2A2A; }
.btn-ghost { background: transparent; color: var(--lme-black); border: 1px solid var(--lme-border); }
.btn-ghost:hover { background: var(--lme-gray-light); }
.btn-whatsapp { background: #25D366; color: var(--lme-white); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }
.btn-label-short { display: none; }

/* === Seções ============================================== */
.section { padding: 64px 0; }
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-title h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lme-black);
}
.section-title h2 span { color: var(--lme-orange); }
.section-title .lead { color: var(--lme-gray-dark); font-size: 15px; margin-top: 6px; }
.section-title a { font-size: 14px; color: var(--lme-orange); font-weight: 600; }

/* === Cards de categoria ================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  padding: 28px 18px;
  border: 1px solid #ECECEC;
  transition: all var(--lme-slow);
  color: var(--lme-black);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lme-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--lme-slow);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--lme-shadow-md); border-color: var(--lme-yellow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card .icn {
  width: 56px; height: 56px;
  background: var(--lme-gradient);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--lme-black);
}
.cat-card h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.cat-card span { font-size: 12px; color: var(--lme-gray-dark); }

/* === Grid e cards de produto ============================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  border: 1px solid #ECECEC;
  padding: 16px;
  transition: all var(--lme-fast);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--lme-shadow-md); transform: translateY(-2px); border-color: var(--lme-yellow); }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--lme-gray-light);
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img svg { width: 60%; height: 60%; opacity: 0.55; }
.product-img .product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--lme-white);
}
.product-tags {
  position: absolute;
  top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--lme-yellow);
  color: var(--lme-black);
}
.tag.tag-orange { background: var(--lme-orange); color: var(--lme-white); }
.tag.tag-dark   { background: var(--lme-black); color: var(--lme-yellow); }

.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lme-gray-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-name {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--lme-black);
  margin: 0 0 10px;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--lme-black);
  margin: 8px 0 6px;
}
.product-price .un {
  font-size: 12px;
  color: var(--lme-gray-dark);
  font-weight: 500;
  margin-left: 4px;
}
.product-stock {
  font-size: 12px;
  color: var(--lme-success);
  margin-bottom: 12px;
}
.product-stock.low { color: var(--lme-danger); }
.product-card .actions { margin-top: auto; }

/* === Filtros (página produtos) =========================== */
.filters {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  padding: 22px;
  border: 1px solid #ECECEC;
  position: sticky;
  top: 130px;
}
.filters h3 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lme-gray-dark);
}
.filter-group { margin-bottom: 22px; }
.filter-group .label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--lme-black);
}
.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  cursor: pointer;
}
.filter-group input[type=checkbox] { accent-color: var(--lme-yellow); }
.filter-group input[type=number],
.filter-group input[type=text],
.filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-size: 14px;
  background: var(--lme-white);
}
.filter-group input:focus,
.filter-group select:focus { outline: none; border-color: var(--lme-yellow); }

.layout-products {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 22px;
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  border: 1px solid #ECECEC;
}
.results-bar .count { font-size: 14px; color: var(--lme-gray-dark); }
.results-bar .count strong { color: var(--lme-black); }
.results-bar select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #DDD;
  background: var(--lme-white);
  font-size: 14px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 16px 0;
}
.pagination .page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #DDD;
  background: var(--lme-white);
  color: var(--lme-black);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pagination .page-btn:hover:not(.disabled):not(.atual) {
  border-color: var(--lme-yellow);
  background: #FFFDF2;
}
.pagination .page-btn.atual {
  background: var(--lme-yellow);
  border-color: var(--lme-yellow);
  color: var(--lme-black);
  cursor: default;
}
.pagination .page-btn.disabled {
  color: #BBB;
  background: #F7F7F7;
  cursor: not-allowed;
}
.pagination .page-gap {
  color: var(--lme-gray);
  padding: 0 6px;
}

.empty-state {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  padding: 60px 24px;
  text-align: center;
  color: var(--lme-gray-dark);
  border: 1px dashed #DDD;
}
.empty-state h3 { color: var(--lme-black); margin: 12px 0 6px; }

/* === Banner promocional ================================== */
.promo-strip {
  background: var(--lme-gradient);
  color: var(--lme-black);
  padding: 18px 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.promo-strip strong { font-weight: 800; }

.cta-box {
  background: var(--lme-black);
  color: var(--lme-white);
  border-radius: var(--lme-radius-lg);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--lme-gradient);
  border-radius: 50%;
  right: -100px; bottom: -100px;
  opacity: 0.15;
}
.cta-box h2 { font-size: 28px; margin: 0 0 8px; font-weight: 800; }
.cta-box p { color: var(--lme-gray); margin: 0; max-width: 600px; }

/* === Footer ============================================== */
.footer {
  background: var(--lme-black);
  color: var(--lme-gray);
  padding: 60px 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lme-border);
}
.footer h4 {
  color: var(--lme-white);
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a:hover { color: var(--lme-yellow); }
.footer .social { display: flex; gap: 10px; margin-top: 14px; }
.footer .social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lme-bg-card);
  border-radius: 50%;
  transition: background var(--lme-fast);
}
.footer .social a:hover { background: var(--lme-yellow); color: var(--lme-black); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--lme-gray-dark);
}

/* === Carrinho (drawer + página) ========================== */
.cart-table {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  border: 1px solid #ECECEC;
  padding: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #ECECEC;
}
.cart-item:last-child { border-bottom: none; }
.cart-item .ci-img {
  width: 80px; height: 80px;
  background: var(--lme-gray-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item .ci-img svg { width: 55%; opacity: 0.55; }
.cart-item h4 { margin: 0 0 4px; font-size: 14px; font-weight: 600; }
.cart-item .ci-meta { font-size: 12px; color: var(--lme-gray-dark); }
.cart-item .ci-price { font-weight: 800; font-size: 16px; color: var(--lme-black); }
.cart-item .ci-remove {
  border: none; background: none;
  color: var(--lme-danger); cursor: pointer;
  font-size: 18px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #DDD;
  border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  width: 34px; height: 34px;
  border: none;
  background: var(--lme-white);
  color: var(--lme-black);
  font-size: 16px; font-weight: 700;
}
.qty-control button:hover { background: var(--lme-gray-light); }
.qty-control input {
  width: 50px;
  height: 34px;
  border: none;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: var(--lme-white);
}

.cart-summary {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  border: 1px solid #ECECEC;
  padding: 24px;
  position: sticky; top: 130px;
}
.cart-summary h3 { margin: 0 0 18px; }
.cart-summary .line {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.cart-summary .total {
  display: flex; justify-content: space-between;
  margin: 14px 0;
  padding-top: 14px;
  border-top: 2px dashed #ECECEC;
  font-size: 22px;
  font-weight: 800;
}
.cart-summary .total span:last-child { color: var(--lme-orange); }

.layout-cart {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* === Formulário checkout ================================= */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--lme-black); }
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid #DDD;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--lme-white);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--lme-yellow); box-shadow: 0 0 0 3px rgba(245,184,0,0.18); }
.field .hint { font-size: 12px; color: var(--lme-gray-dark); }
.radio-list { display: flex; flex-direction: column; gap: 10px; }
.radio-list label {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid #DDD;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--lme-fast);
}
.radio-list label:hover { border-color: var(--lme-yellow); background: var(--lme-gray-light); }
.radio-list input[type=radio] { accent-color: var(--lme-yellow); }
.radio-list input[type=radio]:checked + span { font-weight: 700; }

.section-form {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  border: 1px solid #ECECEC;
  padding: 24px;
  margin-bottom: 20px;
}
.section-form h3 { margin: 0 0 18px; font-size: 18px; }

/* === Páginas de conteúdo (sobre, contato) ================ */
.page-hero {
  background: var(--lme-black);
  color: var(--lme-white);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 12px; font-weight: 800; }
.page-hero p { color: var(--lme-gray); max-width: 600px; margin: 0 auto; font-size: 17px; }

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.info-card {
  background: var(--lme-white);
  border-radius: var(--lme-radius);
  padding: 28px;
  border: 1px solid #ECECEC;
}
.info-card .icn {
  width: 48px; height: 48px;
  background: var(--lme-gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lme-black);
  margin-bottom: 14px;
}
.info-card h3 { margin: 0 0 8px; font-size: 18px; }
.info-card p { color: var(--lme-gray-dark); margin: 0; font-size: 14px; }

/* === Mapa embedado ======================================= */
.map-wrapper {
  position: relative;
  border-radius: var(--lme-radius-lg);
  overflow: hidden;
  border: 1px solid #ECECEC;
  box-shadow: var(--lme-shadow-sm);
  background: var(--lme-bg-card);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
@media (max-width: 640px) {
  .map-wrapper iframe { height: 300px; }
}

/* === WhatsApp flutuante ================================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--lme-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform var(--lme-fast);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* === Toast notification ================================== */
.toast {
  position: fixed;
  bottom: 100px; right: 24px;
  background: var(--lme-black);
  color: var(--lme-white);
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--lme-yellow);
  box-shadow: var(--lme-shadow-md);
  font-size: 14px;
  font-weight: 500;
  z-index: 200;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--lme-fast);
  pointer-events: none;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left-color: var(--lme-success); }
.toast.error   { border-left-color: var(--lme-danger); }

/* === Responsive ========================================== */
@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto auto; gap: 12px; }
  .search-box { grid-column: 1 / -1; max-width: 100%; order: 3; }
  .layout-products { grid-template-columns: minmax(0, 1fr); }
  .filters { position: static; }
  .layout-cart { grid-template-columns: minmax(0, 1fr); }
  .cart-summary { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 50px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { max-width: 280px; margin: 0 auto; }
  .cta-box { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .topbar { font-size: 12px; }
  .topbar-info { gap: 12px; }
  .section { padding: 44px 0; }
  .section-title h2 { font-size: 26px; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-card { padding: 12px; }
  .product-price { font-size: 18px; }
  .product-card .btn { font-size: 12px; padding: 10px 12px; letter-spacing: 0.02em; }
  .product-name { font-size: 13px; min-height: 32px; }
  .product-card .btn-label-full { display: none; }
  .product-card .btn-label-short { display: inline; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .cart-item {
    grid-template-columns: 60px 1fr;
    grid-template-areas: 'img info info' 'img price qty' 'img . remove';
    column-gap: 12px;
  }
  .cart-item .ci-img { grid-area: img; width: 60px; height: 60px; }
  .icon-link .lbl { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  /* Menu: scroll horizontal em telas estreitas (senão empilha em muitas linhas) */
  .nav-list { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .nav-list::-webkit-scrollbar { display: none; }
}
