
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #1a6b3e;
  --green2:  #145730;
  --amber:   #e8960c;
  --amber2:  #c67d00;
  --bg:      #f7f4f0;
  --white:   #ffffff;
  --text:    #2a2a2a;
  --muted:   #666666;
  --border:  #ddd8d0;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,.08);
}

body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
       background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green2); text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.top-bar { background: var(--green2); color: #fff; font-size: .82rem; padding: 6px 0; }
.top-bar .container { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.top-bar a { color: #fff; opacity: .9; }
.top-bar a:hover { opacity: 1; text-decoration: none; }
.top-bar .spacer { margin-left: auto; }

/* ── HEADER ── */
header { background: var(--white); box-shadow: 0 2px 8px rgba(0,0,0,.1); position: sticky; top:0; z-index:100; }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 20px; max-width:1140px; margin:0 auto; }
.logo { font-size: 1.4rem; font-weight: 800; color: var(--green); letter-spacing: -.5px; white-space: nowrap; }
.logo span { color: var(--amber); }
nav { display: flex; gap: 6px; flex-wrap: wrap; margin-left: auto; }
nav a { padding: 7px 14px; border-radius: 20px; font-size: .88rem; font-weight: 500; color: var(--text); transition: background .15s, color .15s; }
nav a:hover, nav a.active { background: var(--green); color: #fff; text-decoration: none; }
.btn-call { background: var(--amber) !important; color: var(--white) !important; font-weight:700 !important; }
.btn-call:hover { background: var(--amber2) !important; }

/* ── BREADCRUMBS ── */
.breadcrumbs { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: .83rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { color: var(--text); font-weight: 500; }

/* ── HERO (home) ── */
.hero { background: linear-gradient(135deg, var(--green) 0%, #2d9b59 100%); color: #fff; padding: 70px 0 60px; text-align:center; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.hero p { font-size: 1.1rem; opacity: .92; max-width: 600px; margin: 0 auto 28px; }
.hero .cta-group { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; gap:8px; padding:13px 26px; border-radius:6px; font-weight:700; font-size:.95rem; cursor:pointer; transition: transform .1s, box-shadow .1s; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); text-decoration:none; }
.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber2); color: var(--white); }
.btn-secondary { background: rgba(255,255,255,.15); color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green2); color: #fff; }
.btn-wa { background: #25d366; color: var(--white); }
.btn-wa:hover { background: #1da851; color: #fff; }

/* ── SECTIONS ── */
.section { padding: 52px 0; }
.section-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; color: var(--text); }
.section-title span { color: var(--green); }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.cat-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; text-align:center; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; border: 1px solid var(--border); }
.cat-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); text-decoration:none; }
.cat-card .emoji { font-size: 2.4rem; margin-bottom: 10px; display:block; }
.cat-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cat-card p  { font-size: .8rem; color: var(--muted); }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.product-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border); display:flex; flex-direction:column; gap:8px; transition: transform .15s; }
.product-card:hover { transform: translateY(-2px); }
.product-card .cat-badge { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--green); font-weight: 600; }
.product-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); }
.product-card .price-range { font-size: .82rem; color: var(--muted); }
.product-card a.card-link { color: var(--green); font-size:.85rem; font-weight:600; margin-top:auto; }

/* ── PRODUCT PAGE ── */
.product-page { padding: 40px 0 60px; }
.product-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
@media (max-width: 860px) { .product-layout { grid-template-columns: 1fr; } }
.product-main h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 12px; line-height: 1.3; }
.meta-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 20px; }
.badge { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: .78rem; color: var(--muted); font-weight:500; }
.badge.green { background: #e8f5ee; border-color: #a8d8bc; color: var(--green2); }
.product-desc { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.detail-block { margin-bottom: 20px; }
.detail-block h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); font-weight:600; margin-bottom:6px; }
.detail-block p { font-size: .93rem; }
.keywords-box { background: #f0faf5; border-left: 4px solid var(--green); padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 24px; }
.keywords-box p { font-size:.84rem; color: var(--muted); margin-bottom:4px; }
.keywords-box strong { color: var(--text); }

/* ── PRODUCT IMAGE ── */
.product-img-wrap { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #f0faf5; }
.product-img-wrap img { width: 100%; height: auto; display: block; }

/* ── CONTACT SIDEBAR ── */
.contact-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); position: sticky; top: 90px; }
.contact-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.contact-card .btn { width:100%; justify-content:center; margin-bottom:10px; font-size:.9rem; }
.store-info-box { margin-top:20px; font-size: .84rem; color: var(--muted); line-height: 1.8; }
.store-info-box strong { color: var(--text); display:block; margin-bottom:2px; }

/* ── INFO STRIP ── */
.info-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.info-strip .container { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:20px; }
.info-item { display:flex; align-items:flex-start; gap:12px; }
.info-item .icon { font-size: 1.6rem; flex-shrink:0; }
.info-item h4 { font-size:.88rem; font-weight:700; margin-bottom:2px; }
.info-item p { font-size:.8rem; color: var(--muted); }

/* ── MAP SECTION ── */
.map-section { padding: 48px 0; }
.map-section iframe { width:100%; height:380px; border:none; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── FOOTER ── */
footer { background: var(--green2); color: rgba(255,255,255,.85); padding: 44px 0 24px; }
.footer-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap:32px; margin-bottom:32px; }
footer h4 { color: #fff; font-size:.9rem; font-weight:700; margin-bottom:14px; text-transform:uppercase; letter-spacing:.5px; }
footer ul { list-style:none; }
footer ul li { margin-bottom:7px; }
footer ul li a { color:rgba(255,255,255,.75); font-size:.85rem; }
footer ul li a:hover { color:#fff; text-decoration:none; }
.footer-copy { border-top: 1px solid rgba(255,255,255,.15); padding-top:20px; text-align:center; font-size:.78rem; opacity:.65; }

/* ── RELATED ── */
.related-section { background: var(--white); padding: 40px 0; border-top: 1px solid var(--border); }

/* ── FAMILY PAGE ── */
.family-hero { background: linear-gradient(135deg, var(--green) 0%, #2d9b59 100%); color:#fff; padding:44px 0 36px; margin-bottom:36px; }
.family-hero h1 { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; margin-bottom:8px; }
.family-hero p { opacity:.9; max-width:560px; }

/* ── NEARBY STRIP ── */
.nearby-strip { padding: 28px 0; background: var(--white); border-top: 1px solid var(--border); }
.nearby-strip .label { font-size: .78rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; text-align: center; margin-bottom: 12px; }
.nearby-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.nearby-chip { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: .8rem; color: var(--muted); }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow); }
.why-card .why-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.why-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.why-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { margin-top: 32px; border-top: 2px solid var(--green); padding-top: 20px; }
.faq-section > h2 { font-size: 1.05rem; font-weight: 800; margin-bottom: 16px; color: var(--green); text-transform: uppercase; letter-spacing: .4px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; }
.faq-item h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.faq-item p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── LOCAL TEXT BLOCK ── */
.local-text-block { background: #f0faf5; border-left: 4px solid var(--green); padding: 28px 32px; border-radius: 0 var(--radius) var(--radius) 0; margin: 36px 0; }
.local-text-block h2 { font-size: 1.1rem; font-weight: 800; color: var(--green2); margin-bottom: 10px; }
.local-text-block p { font-size: .94rem; color: #444; line-height: 1.8; }

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; }
  nav { width:100%; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap:4px; }
  .local-text-block { padding: 20px 18px; }
}
