
:root {
  --bg: #ffffff; --bg-soft: #fafafa; --card: #ffffff;
  --border: #e8e8e8; --border-strong: #d5d5d5;
  --text: #1a1a1a; --text-soft: #4a4a4a; --muted: #8a8a8a;
  --accent: #6b2929; --accent-dim: rgba(107,41,41,0.08);
  --green: #25d366; --red: #d32f2f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--bg); color: var(--text); min-height: 100vh;
  padding-bottom: 80px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-weight: 600; line-height: 1.3; }

.announce { background: var(--text); color: #fff; text-align: center; padding: 8px 16px; font-size: 12px; }

.site-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.logo { width: 50px; height: 50px; }
.brand-name { font-size: 18px; font-weight: 700; letter-spacing: 2px; }
.tagline { font-size: 11px; color: var(--muted); font-style: italic; }
.main-nav { display: flex; gap: 20px; font-size: 14px; flex-wrap: wrap; }
.main-nav a:hover { color: var(--accent); }

.breadcrumb { max-width: 1200px; margin: 16px auto; padding: 0 20px; color: var(--muted); font-size: 13px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

.hero, .hub-hero { max-width: 900px; margin: 32px auto; padding: 0 20px; text-align: center; }

/* Trust strip — below hero on homepage */
.trust-strip { background: var(--bg-soft); padding: 40px 20px; margin: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-icon { font-size: 32px; margin-bottom: 8px; }
.trust-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.trust-desc { font-size: 13px; color: var(--muted); line-height: 1.4; }
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-icon { font-size: 24px; }
  .trust-title { font-size: 13px; }
  .trust-desc { font-size: 11px; }
}
.hero h1, .hub-hero h1 { font-size: 32px; margin-bottom: 12px; }
.hero .lead, .hub-hero .lead, .hub-hero p { font-size: 16px; color: var(--text-soft); max-width: 700px; margin: 0 auto 16px; }
.features { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin: 16px 0; font-size: 13px; color: var(--text-soft); }
.features span { color: var(--accent); font-weight: 500; }
.hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.btn-primary, .btn-secondary { display: inline-block; padding: 12px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: all .15s; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { opacity: 0.9; }
.btn-secondary { background: var(--bg-soft); border: 1px solid var(--border); color: var(--text); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.info-box { background: #fffaf0; border: 1px solid #f5e2b8; color: #8a6f1a; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin: 16px auto; max-width: 600px; }

.city-section { max-width: 1200px; margin: 40px auto; padding: 0 20px; text-align: center; }
.city-section h2 { font-size: 20px; margin-bottom: 12px; }
.city-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 14px; }
.city-chip { background: var(--bg-soft); border: 1px solid var(--border); padding: 8px 14px; border-radius: 999px; font-size: 13px; transition: all .15s; }
.city-chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.cat-section, .featured, .about, .products-list, .info-section, .cta-section, .related, .reviews-placeholder, .faq-section, .reviews-section, .product-content, .cat-browse {
  max-width: 1300px; margin: 48px auto; padding: 0 20px;
}
.cat-section h2, .featured h2, .about h2, .products-list h2, .info-section h2, .cta-section h2, .related h2, .reviews-placeholder h2, .faq-section h2, .reviews-section h2, .product-content h2, .cat-browse h2 {
  font-size: 22px; margin-bottom: 10px;
}

/* Category browse cards (real categories) */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin-top: 16px;
}
.cat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: all .2s; display: block;
}
.cat-card:hover {
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
.cat-card-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.cat-card:hover .cat-card-img img { transform: scale(1.04); }
.cat-card-info { padding: 14px; text-align: center; }
.cat-card-name { font-size: 14px; font-weight: 600; color: var(--text); }
.cat-card-count { font-size: 12px; color: var(--accent); margin-top: 4px; }
.product-content h2 { margin-top: 32px; }
.product-content h2:first-child { margin-top: 0; }
.cat-section p, .info-section p, .product-content p { color: var(--text-soft); margin-bottom: 14px; max-width: 800px; }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.about-grid > div { background: var(--bg-soft); padding: 20px; border-radius: 10px; }
.about-grid h3 { font-size: 15px; margin-bottom: 8px; color: var(--accent); }
.about-grid p { font-size: 13px; color: var(--text-soft); margin: 0; }

.cta-section, .reviews-placeholder { text-align: center; }
.reviews-note { color: var(--muted); font-style: italic; }
.reviews-placeholder-block { background: var(--bg-soft); border: 1px dashed var(--border-strong); border-radius: 10px; padding: 30px; text-align: center; max-width: 600px; margin: 20px auto; }
.muted { color: var(--muted); font-size: 13px; }

.see-more { display: inline-block; margin-top: 16px; color: var(--accent); font-weight: 600; font-size: 14px; }
.see-more:hover { text-decoration: underline; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: all .2s; display: block; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: var(--border-strong); }
.card-img { aspect-ratio: 1; background: var(--bg-soft); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .card-img img { transform: scale(1.04); }
.card-info { padding: 12px; }
.card-name { font-size: 13px; font-weight: 500; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 36px; }
.card-price { margin-top: 6px; color: var(--accent); font-weight: 600; font-size: 14px; }

.product-page { max-width: 1200px; margin: 24px auto 24px; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .product-page { grid-template-columns: 1fr; gap: 20px; } }
.product-gallery img#main-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; background: var(--bg-soft); }
.thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: all .15s; }
.thumbs img:hover { border-color: var(--accent); }

.product-info h1 { font-size: 26px; margin-bottom: 6px; }
.p-subtitle { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.p-price { font-size: 24px; color: var(--accent); font-weight: 700; margin-bottom: 16px; }
.opt-group { margin-bottom: 14px; }
.opt-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 8px; font-weight: 600; display: flex; justify-content: space-between; align-items: baseline; }
.opt-label .selected-val { color: var(--text); text-transform: none; letter-spacing: 0; font-size: 13px; font-weight: 500; }
.opt-values { display: flex; gap: 6px; flex-wrap: wrap; }
.opt-pill {
  background: #fff; border: 1px solid var(--border); color: var(--text);
  padding: 9px 16px; border-radius: 6px; font-size: 13px; cursor: pointer;
  transition: all .15s; user-select: none; white-space: nowrap;
  font-family: inherit;
}
.opt-pill:hover:not(:disabled) { border-color: var(--accent); }
.opt-pill.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.opt-pill.unavailable {
  opacity: 0.35; cursor: not-allowed; text-decoration: line-through;
  background: var(--bg-soft);
}
.opt-pill:disabled { cursor: not-allowed; }
.range-note { font-size: 13px; color: var(--muted); font-weight: 400; margin-left: 8px; }
.btn-primary.disabled { background: #bbb; pointer-events: none; }
.p-cta { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 12px; }
.deposit-note { background: #fffaf0; border: 1px solid #f5e2b8; color: #8a6f1a; padding: 10px 14px; border-radius: 8px; font-size: 12px; margin-bottom: 18px; }

.p-desc { white-space: pre-wrap; line-height: 1.7; }
.p-desc p { margin-bottom: 14px; color: var(--text-soft); }
.caracts { list-style: none; padding: 0; }
.caracts li { padding: 6px 0; color: var(--text-soft); font-size: 14px; }
.caracts li:before { content: "✓ "; color: var(--accent); font-weight: 700; }

.faq-item { border-bottom: 1px solid var(--border); padding: 12px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 15px; padding: 4px 0; }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { color: var(--text-soft); padding: 8px 0 4px; line-height: 1.7; font-size: 14px; }

.bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 10px 16px; display: flex; gap: 10px; justify-content: center; z-index: 100; box-shadow: 0 -2px 12px rgba(0,0,0,0.05); }
.bottom-bar a { padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; }
.bottom-bar .call { background: var(--bg-soft); border: 1px solid var(--border); color: var(--text); }
.bottom-bar .wa { background: var(--green); color: #fff; }

.site-footer { background: var(--bg-soft); border-top: 1px solid var(--border); margin-top: 60px; padding: 40px 20px 30px; }
.foot-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.foot-grid > div { font-size: 13px; color: var(--text-soft); }
.foot-grid > div > a, .foot-grid > div > p { display: block; padding: 4px 0; }
.foot-grid > div > a:hover { color: var(--accent); }
.foot-brand { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.foot-tag { font-size: 12px; font-style: italic; color: var(--muted); margin-bottom: 10px; }
.foot-grid strong { color: var(--text); display: block; margin-bottom: 8px; }
.cities-inline { font-size: 12px; line-height: 1.9; }
.cities-inline a:hover { color: var(--accent); }
.foot-legal { max-width: 1200px; margin: 30px auto 0; text-align: center; color: var(--muted); font-size: 11px; border-top: 1px solid var(--border); padding-top: 20px; }

@media (max-width: 600px) {
  .hero h1, .hub-hero h1 { font-size: 22px; }
  .site-header { padding: 12px 16px; }
  .main-nav { font-size: 12px; gap: 12px; }
  .product-info h1 { font-size: 20px; }
  .p-price { font-size: 20px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-info { padding: 10px; }
  .card-name { font-size: 12px; }
}
