body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #faf9f7;
  color: #333;
}

a {
  color: #a76b5b;
  text-decoration: none;
}

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

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo a {
  font-size: 1.6rem;
  font-weight: 600;
}

.menu {
  display: flex;
  gap: 16px;
  align-items: center;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 60px;
  padding: 24px 0;
  font-size: 0.9rem;
}
/* Tipografia & utilitários */
h1, h2, h3 { margin: 0 0 10px; }
.muted { color: #6c6a68; }
.small { font-size: 0.9rem; }
.lead { font-size: 1.05rem; line-height: 1.6; color: #4c4a48; }

.page-head { padding: 22px 0 10px; }
.page-head h1 { font-size: 1.8rem; }

.filters {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr auto auto;
  gap: 10px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  margin: 14px 0 18px;
}

.input, .select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e7e3df;
  background: #fbfbfa;
  outline: none;
}

.check {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  color: #5f5c59;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #d8c9c3;
  background: #b5796a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover { filter: brightness(0.97); }

.btn-ghost {
  background: transparent;
  color: #a76b5b;
  border: 1px solid #e2d7d2;
}

.btn-big { padding: 12px 16px; border-radius: 14px; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-bottom: 20px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.card-img { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1); transition: transform 240ms ease; }
.card:hover .card-img img { transform: scale(1.03); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #777;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.badge-shopee { background: #f05a28; }
.badge-ml { background: #2f7df6; }
.badge-amz { background: #111; }

.card-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.card-title { font-size: 1.05rem; line-height: 1.35; }
.card-title a { color: #2f2c2a; }
.card-text { margin: 0; color: #5b5855; line-height: 1.5; min-height: 44px; }

.meta { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #f1ece8;
  color: #6a3f36;
  border: 1px solid #eadfda;
}
.pill-soft { background: #f7f4f1; color: #5f5c59; }

.card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.price { white-space: nowrap; }

.empty {
  background: #fff;
  border: 1px dashed #eadfda;
  border-radius: 18px;
  padding: 18px;
}

.disclaimer {
  margin: 22px 0 40px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
}

/* Produto */
.product {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  margin-top: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px;
  border-top: 1px solid #f0ece9;
  background: #fbfbfa;
}

.product-info { padding: 16px; }
.product-cta { margin: 14px 0; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.tag {
  font-size: 0.85rem;
  background: #fff2ef;
  color: #8a4e3e;
  border: 1px solid #f0d7d1;
  padding: 6px 10px;
  border-radius: 999px;
}
.note { margin-top: 16px; }
.note ul { padding-left: 18px; color: #4c4a48; }
.back { margin-top: 14px; }

/* Responsivo */
@media (max-width: 980px) {
  .filters { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .product { grid-template-columns: 1fr; }
  .product-media img { min-height: 260px; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}
/* ===== Lane Inspira - Ajustes finos (igual PDF) ===== */

/* Header mais “editorial” */
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 16px 16px;
}
.menu { flex-wrap: wrap; justify-content: center; }

/* Títulos e texto de apoio (página da vitrine) */
.page-head h1{ font-size: 2rem; letter-spacing: -0.2px; }
.page-head p{ max-width: 760px; }

/* Caixa dos filtros (bem “cartão”) */
.filters{
  border-radius: 18px;
  padding: 16px;
  gap: 12px;
}

/* Inputs mais altos, como no PDF */
.input, .select{
  padding: 12px 14px;
  border-radius: 14px;
  background: #faf8f6;
}

/* Grid dos filtros: 2 colunas (desktop) como no PDF */
@media (min-width: 981px){
  .filters{
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
  /* forçar ordem agradável */
  .filters input[name="q"]{ grid-column: 1 / 2; }
  .filters select[name="cat"]{ grid-column: 2 / 3; }
  .filters select[name="amb"]{ grid-column: 1 / 2; }
  .filters select[name="store"]{ grid-column: 2 / 3; }
  .filters select[name="sort"]{ grid-column: 1 / 2; }
  .filters .check{ grid-column: 2 / 3; justify-content:flex-start; padding-left: 6px; }
  .filters button[type="submit"]{ grid-column: 1 / 2; }
  .filters a.btn-ghost{ grid-column: 2 / 3; }
}

/* Botões grandes como no print */
.btn{
  padding: 12px 16px;
  border-radius: 14px;
}
.btn-ghost{
  padding: 12px 16px;
}

/* Cards mais “fofos” */
.card{
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.card-img{
  border-bottom: 1px solid #f2eeeb;
}

/* Badge (loja) bem legível em cima da imagem */
.badge{
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
}

/* Pílulas mais delicadas */
.pill{
  background: #f6eeea;
  border: 1px solid #f0e2dc;
}
.pill-soft{
  background: #f9f6f4;
  border: 1px solid #f1ece8;
}

/* “Ver preço na loja” menor e discreto */
.card-actions .price{
  font-size: 0.92rem;
}

/* Grid de cards: 2 colunas no desktop médio (igual aparência do PDF) */
@media (min-width: 860px) and (max-width: 1200px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
/* ===== Header – correção de quebra de linha ===== */

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap; /* 🔑 impede quebra de linha */
}

/* Dropdown base */
.dropdown {
  position: relative;
}

.drop-trigger {
  cursor: pointer;
  font-weight: 600;
  color: #a76b5b;
  padding: 6px 4px;
}

/* Menu dropdown escondido */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 14px;
  min-width: 200px;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  z-index: 100;
}

/* Links do dropdown */
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: #faf6f4;
}

/* Mostrar dropdown no hover */
.dropdown:hover .dropdown-menu {
  display: block;
}
.menu a {
  font-weight: 500;
}

.menu a:hover,
.drop-trigger:hover {
  color: #8a4e3e;
}
/* ===== HEADER FINAL – LANE INSPIRA ===== */

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;

  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.drop-trigger{
  cursor:pointer;
  font-weight:600;
  color:#a76b5b;
  padding:6px 4px;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  border:1px solid #eee;
  border-radius:14px;
  min-width:200px;
  padding:8px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  z-index:999;
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#333;
}

.dropdown-menu a:hover{
  background:#faf6f4;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

/* Mostrar dropdown no clique (mobile / touch) */
.dropdown.open .dropdown-menu{
  display:block;
}
/* ===== Blog – Hero ===== */
.page-head h1{
  font-size: 2.1rem;
  letter-spacing: -0.3px;
}

.page-head p{
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== Blog – Filtros ===== */
.blog .filters,
.filters{
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
}

.filters button,
.filters .btn-ghost{
  min-width: 120px;
  text-align: center;
}
/* ===== Blog – Cards ===== */
.card-title{
  font-size: 1.15rem;
}

.card-text{
  line-height: 1.55;
}

.card-actions{
  margin-top: 10px;
}

.card-actions .btn{
  padding: 10px 16px;
}
.site-footer{
  font-size: 0.85rem;
  color: #6f6b68;
}
