/*
Theme Name:   TokobahanInterior Child
Theme URI:    https://tokobahaninterior.com
Description:  GeneratePress Child Theme for TokobahanInterior.com directory website.
Author:       TokobahanInterior.com
Author URI:   https://tokobahaninterior.com
Template:     generatepress
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  tokobahaninterior-child
*/

/* ============================================================
   TABLE OF CONTENTS
   1.  CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   2.  BASE RESET & BODY
   3.  LAYOUT UTILITIES
   4.  NAVBAR
   5.  BUTTONS (GLOBAL)
   6.  HERO SECTION (homepage)
   7.  SEARCH BOX & POPULAR TAGS
   8.  MAP CARD (homepage hero)
   9.  SECTION HEADINGS
  10.  STORE CARDS (homepage grid)
  11.  PRICE COMPARE TABLE
  12.  REVIEWS GRID
  13.  BRANDS SECTION
  14.  CTA BANNER
  15.  TRUST BAR / SITE FOOTER
  16.  PAGE HEADER (archive)
  17.  CATEGORY TAB BAR (archive)
  18.  ARCHIVE MAIN 2-COLUMN LAYOUT
  19.  ARCHIVE STORE LIST COLUMN
  20.  ARCHIVE STORE CARDS (list style)
  21.  ARCHIVE PAGINATION
  22.  ARCHIVE MAP COLUMN
  23.  ARCHIVE CTA & BOTTOM BAR
  24.  SINGLE: BREADCRUMB
  25.  SINGLE: PAGE LAYOUT
  26.  SINGLE: STORE HERO CARD
  27.  SINGLE: GALLERY
  28.  SINGLE: STORE INFO & STATS
  29.  SINGLE: INFO BAR
  30.  SINGLE: ACTION BUTTONS
  31.  SINGLE: ARTICLE LIST
  32.  SINGLE: NEARBY STORES
  33.  SINGLE: CTA SMALL
  34.  SINGLE: SIDEBAR
  35.  SITE FOOTER (full)
  36.  RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-dark: #1a5c2a;
  --green-mid: #2d7a3e;
  --green-light: #4caf50;
  --green-pale: #eaf5ec;
  --orange: #f5a623;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

/* ============================================================
   2. BASE RESET & BODY
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

/* Two-row navbar variant (used in single-toko) */
.navbar-top {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.navbar-bottom {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}

.logo-bars span {
  background: var(--green-dark);
  border-radius: 3px 3px 0 0;
  display: block;
}

.logo-bars span:nth-child(1) { width: 7px; height: 18px; }
.logo-bars span:nth-child(2) { width: 7px; height: 26px; }
.logo-bars span:nth-child(3) { width: 7px; height: 13px; }

.logo-text { line-height: 1.1; }
.logo-text strong { font-size: 16px; font-weight: 800; color: var(--text-dark); }
.logo-text strong em { color: var(--green-light); font-style: normal; }
.logo-text small { font-size: 10px; color: var(--text-muted); display: block; font-weight: 500; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all .15s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-links a.active { font-weight: 600; }

/* Inline search bar (single-toko navbar) */
.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s;
  max-width: 520px;
}

.search-bar:focus-within { border-color: var(--green-light); }

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
}

.search-bar input::placeholder { color: var(--text-light); }

.btn-search-bar {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
}

.btn-search-bar:hover { background: var(--green-mid); }

/* ============================================================
   5. BUTTONS (GLOBAL)
   ============================================================ */
.btn-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-wa:hover { background: var(--green-mid); }

.btn-daftar {
  background: var(--green-dark);
  color: #fff;
  padding: 15px 28px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
  display: block;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 92, 42, .25);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-daftar:hover { background: var(--green-mid); }

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #f0faf2 0%, #fff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -1.5px;
  color: var(--text-dark);
}

.hero-title .green { color: var(--green-light); }

.hero-sub {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 28px;
  max-width: 400px;
  line-height: 1.7;
}

/* ============================================================
   7. SEARCH BOX & POPULAR TAGS
   ============================================================ */
.search-box {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 13px;
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  transition: border-color .15s;
}

.search-box:focus-within { border-color: var(--green-light); }

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  min-width: 0;
}

.search-box input::placeholder { color: var(--text-light); }

.search-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

.search-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--green-dark);
  white-space: nowrap;
  padding: 0 10px;
  font-weight: 500;
  cursor: pointer;
}

.btn-search {
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
  transition: background .15s;
  flex-shrink: 0;
}

.btn-search:hover { background: var(--green-mid); }

.popular-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.popular-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .15s;
  background: #fff;
}

.tag:hover {
  border-color: var(--green-light);
  color: var(--green-dark);
  background: var(--green-pale);
}

/* ============================================================
   8. MAP CARD (homepage hero widget)
   ============================================================ */
.map-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-header h4 { font-size: 14px; font-weight: 700; }

.btn-peta {
  background: var(--green-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-body {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #e8f4ea;
}

.map-img { width: 100%; height: 100%; object-fit: cover; }

.map-overlay { position: absolute; inset: 0; pointer-events: none; }

.map-pin { position: absolute; transform: translate(-50%, -100%); }
.map-pin svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #4285f4;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(66, 133, 244, .2);
  transform: translate(-50%, -50%);
}

.map-popup {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 11px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
  min-width: 175px;
  font-size: 12px;
  pointer-events: none;
}

.map-popup strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; color: var(--text-dark); }
.map-popup .dist { color: var(--text-muted); display: block; }
.map-popup .jam { color: var(--green-dark); font-weight: 600; display: block; margin-top: 1px; }

.map-popup::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, .08);
}

/* ============================================================
   9. SECTION HEADINGS
   ============================================================ */
.section { padding: 44px 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 6px;
}

.section-title { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.section-sub { font-size: 13px; color: var(--text-muted); margin-top: 3px; }

.link-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.link-all:hover { color: var(--green-light); }

/* ============================================================
   10. STORE CARDS (homepage grid)
   ============================================================ */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.store-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}

.store-card:hover {
  box-shadow: 0 8px 24px rgba(26, 92, 42, .12);
  transform: translateY(-3px);
}

.store-thumb {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: #e5e7eb;
}

.store-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.store-card:hover .store-thumb img { transform: scale(1.05); }

.store-dist {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.store-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background .15s;
}

.store-fav:hover { background: #fff; }
.store-fav svg { width: 15px; height: 15px; stroke: #9ca3af; fill: none; transition: stroke .15s; }
.store-fav:hover svg { stroke: #ef4444; }

.store-body { padding: 12px; }

.store-name-row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.store-name { font-size: 13.5px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }

.badge-verified {
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.stars-row { display: flex; align-items: center; gap: 2px; margin-bottom: 3px; }
.star { width: 12px; height: 12px; fill: var(--orange); }
.star.empty { fill: #e5e7eb; }
.star.half { fill: var(--orange); } /* SVG half-star handled via JS */
.rating-count { font-size: 11px; color: var(--text-muted); margin-left: 3px; }

.store-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.store-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }

.store-tag {
  font-size: 10px;
  padding: 3px 7px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-muted);
  font-weight: 500;
}

.btn-wa-store {
  width: 100%;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  transition: background .15s;
  margin-bottom: 7px;
}

.btn-wa-store:hover { background: var(--green-mid); }

.btn-maps {
  width: 100%;
  background: #fff;
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: inherit;
  transition: all .15s;
}

.btn-maps:hover { background: var(--bg-light); border-color: #9ca3af; }

/* ============================================================
   11. PRICE COMPARE TABLE
   ============================================================ */
.price-section {
  background: var(--bg-light);
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.price-title { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }

.cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; }

.cat-tab {
  padding: 7px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-mid);
  font-family: inherit;
  transition: all .15s;
}

.cat-tab.active { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.cat-tab:hover:not(.active) { background: var(--green-pale); color: var(--green-dark); border-color: var(--green-light); }

.price-table-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.price-table { width: 100%; border-collapse: collapse; font-size: 13px; }

.price-table thead th {
  background: #f3f4f6;
  padding: 11px 14px;
  font-weight: 600;
  font-size: 11.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-align: left;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.price-table thead th.tc { text-align: center; }
.price-table tbody td { padding: 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: #fafafa; }

.prod-cell { display: flex; align-items: center; gap: 12px; }
.prod-swatch { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; border: 1px solid var(--border); }
.prod-name { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.35; }
.prod-code { font-size: 11px; color: var(--text-muted); font-weight: 400; }

.price-val { text-align: center; vertical-align: middle; }
.price-num { font-weight: 700; color: var(--text-dark); font-size: 13px; }
.price-num.cheapest { color: var(--green-dark); }
.price-unit { font-size: 10.5px; color: var(--text-muted); font-weight: 400; display: block; }

.badge-cheapest {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .3px;
  margin-top: 3px;
  text-transform: uppercase;
}

.store-head-cell { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.store-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.store-head-name { font-size: 10.5px; font-weight: 600; color: var(--text-mid); text-align: center; line-height: 1.3; }
.tbl-arrow { text-align: center; color: var(--text-light); font-size: 16px; padding: 14px 8px; }

/* ============================================================
   12. REVIEWS GRID
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow .2s;
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-stars-row { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; }
.review-stars-row svg { width: 14px; height: 14px; fill: var(--orange); }
.review-score { font-size: 14px; font-weight: 800; margin-left: 5px; color: var(--text-dark); }

.review-text { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.reviewer-city { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ============================================================
   13. BRANDS SECTION
   ============================================================ */
.brands-section { padding: 36px 0; border-top: 1px solid var(--border); }

.brands-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.brands-grid {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.brand-item {
  flex: 1;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  transition: background .15s;
  cursor: pointer;
  gap: 3px;
}

.brand-item:last-child { border-right: none; }
.brand-item:hover { background: var(--green-pale); }
.brand-name { font-size: 14px; font-weight: 900; color: var(--text-dark); letter-spacing: -.3px; text-align: center; line-height: 1.1; }
.brand-sub { font-size: 9px; font-weight: 400; color: var(--text-light); text-transform: uppercase; letter-spacing: .5px; text-align: center; }

/* ============================================================
   14. CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #edfaf0 0%, #d1fae5 100%);
  padding: 44px 0;
  border-top: 1px solid #b7f5c8;
}

.cta-inner {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-person { position: relative; }

.cta-person-demo {
  width: 140px;
  height: 170px;
  background: linear-gradient(160deg, #2d7a3e, #1a5c2a);
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cta-person-demo::after { content: '👷'; font-size: 72px; position: absolute; bottom: -8px; }

.cta-content h2 { font-size: 26px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 8px; }
.cta-content p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.65; }

.cta-benefits { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.cta-benefit { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-mid); }
.cta-benefit svg { width: 18px; height: 18px; color: var(--green-dark); flex-shrink: 0; }

.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 10px; flex-shrink: 0; }

.cta-free { font-size: 13px; color: #047857; font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   15. TRUST BAR / SITE FOOTER (homepage)
   ============================================================ */
.trust-bar { background: #fff; border-top: 1px solid var(--border); padding: 22px 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.trust-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { width: 22px; height: 22px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.trust-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.trust-text small { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   16. PAGE HEADER (archive-toko)
   ============================================================ */
.page-header {
  padding: 36px 0 24px;
  background: #fff;
}

.page-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.page-title .green { color: var(--green-light); }
.page-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }

.search-area {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.loc-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  background: #fff;
  transition: border-color .15s;
  cursor: pointer;
}

.loc-input-wrap:hover { border-color: var(--green-light); }

.loc-input-wrap input {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-mid);
  background: transparent;
  flex: 1;
  cursor: pointer;
}

.btn-lokasi {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1.5px solid var(--green-light);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .15s;
  flex-shrink: 0;
}

.btn-lokasi:hover { background: var(--green-dark); color: #fff; }

.store-search-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s;
  flex: 1;
}

.store-search-wrap:focus-within { border-color: var(--green-light); }

.store-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
}

.store-search-wrap input::placeholder { color: var(--text-light); }

.btn-cari {
  background: var(--green-dark);
  color: #fff;
  border: none;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}

.btn-cari:hover { background: var(--green-mid); }

/* ============================================================
   17. CATEGORY TAB BAR (archive)
   ============================================================ */
.cat-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.cat-tabs-archive {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  height: 52px;
}

.cat-tabs-archive::-webkit-scrollbar { display: none; }

.cat-tab-archive {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  height: 100%;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all .15s;
  flex-shrink: 0;
  text-decoration: none;
}

.cat-tab-archive:hover { color: var(--green-dark); background: var(--green-pale); }
.cat-tab-archive.active { color: var(--green-dark); border-bottom-color: var(--green-dark); background: var(--green-pale); }
.cat-tab-icon { width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.filter-btn-tab {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--border);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn-tab:hover { background: var(--bg-light); color: var(--green-dark); }

/* ============================================================
   18. ARCHIVE MAIN 2-COLUMN LAYOUT
   ============================================================ */
.main-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  min-height: 700px;
}

/* ============================================================
   19. ARCHIVE STORE LIST COLUMN
   ============================================================ */
.store-list-col {
  border-right: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.list-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.list-count { font-size: 13.5px; font-weight: 600; color: var(--text-dark); }
.list-count span { color: var(--green-dark); font-weight: 800; }

.sort-select {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  background: #fff;
  font-family: inherit;
}

.store-cards { flex: 1; overflow-y: auto; scrollbar-width: thin; }

/* ============================================================
   20. ARCHIVE STORE CARDS (list style)
   ============================================================ */
.store-card-list {
  display: grid;
  grid-template-columns: 130px 1fr;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
  position: relative;
}

.store-card-list:hover { background: #fafafa; }
.store-card-list.active-card { background: var(--green-pale); }

.store-thumb-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #e5e7eb;
}

.store-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.store-card-list:hover .store-thumb-wrap img { transform: scale(1.04); }

.verified-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
}

.fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}

.fav-btn:hover { background: #fff; }
.fav-btn svg { width: 14px; height: 14px; stroke: #9ca3af; fill: none; stroke-width: 2; transition: stroke .15s; }
.fav-btn:hover svg { stroke: #ef4444; }

.store-card-info { padding: 12px 14px; display: flex; flex-direction: column; justify-content: space-between; }

.sname-row { display: flex; align-items: flex-start; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.sname { font-size: 14.5px; font-weight: 800; color: var(--text-dark); line-height: 1.3; }
.bv { background: #dbeafe; color: #1d4ed8; font-size: 9.5px; font-weight: 700; padding: 2px 6px; border-radius: 20px; flex-shrink: 0; margin-top: 1px; }

.srating { display: flex; align-items: center; gap: 2px; margin-bottom: 4px; }
.srating svg { width: 12px; height: 12px; fill: var(--orange); }
.srating .rnum { font-size: 12.5px; font-weight: 700; color: var(--text-dark); margin-right: 2px; }
.srating .rcnt { font-size: 11.5px; color: var(--text-muted); }

.saddr { font-size: 12px; color: var(--text-mid); margin-bottom: 2px; font-weight: 500; }

.sdist {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sdist svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

.stags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.stag { font-size: 11px; padding: 2px 8px; border: 1px solid var(--border); border-radius: 4px; color: var(--text-muted); font-weight: 500; }

.card-btns { display: flex; gap: 6px; }

.btn-wa-card {
  flex: 1;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background .15s;
}

.btn-wa-card:hover { background: var(--green-mid); }

.btn-maps-card {
  flex: 1;
  background: #fff;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 7px 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all .15s;
}

.btn-maps-card:hover { border-color: var(--green-light); color: var(--green-dark); }

/* ============================================================
   21. ARCHIVE PAGINATION
   ============================================================ */
.list-pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}

.pag-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
  color: var(--text-mid);
  text-decoration: none;
}

.pag-btn:hover { border-color: var(--green-light); color: var(--green-dark); }
.pag-btn.active, .pag-btn.current { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.pag-btn.ellipsis { border: none; background: none; cursor: default; color: var(--text-muted); }

.pag-next {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-mid);
  transition: all .15s;
  text-decoration: none;
}

.pag-next:hover { border-color: var(--green-light); color: var(--green-dark); }

/* ============================================================
   22. ARCHIVE MAP COLUMN
   ============================================================ */
.map-col {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  background: #c8dfc0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--border);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.map-toolbar input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--green-dark); cursor: pointer; }
.map-toolbar label { font-size: 13px; font-weight: 600; color: var(--text-dark); cursor: pointer; }

.map-area { flex: 1; position: relative; overflow: hidden; }
.map-bg { width: 100%; height: 100%; background: linear-gradient(160deg, #d4e8cc 0%, #c0d8b4 30%, #b8d0a8 60%, #c8dcbc 100%); }

.mrd { position: absolute; background: rgba(255, 255, 255, .7); border-radius: 2px; }
.mlb { position: absolute; font-size: 11px; font-weight: 700; color: #374151; background: rgba(255, 255, 255, .75); padding: 2px 6px; border-radius: 4px; white-space: nowrap; }
.mpin { position: absolute; font-size: 24px; transform: translate(-50%, -100%); filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .35)); cursor: pointer; transition: transform .15s; line-height: 1; }
.mpin:hover { transform: translate(-50%, -110%) scale(1.15); }
.myou { position: absolute; width: 14px; height: 14px; background: #4285f4; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 6px rgba(66, 133, 244, .18); transform: translate(-50%, -50%); }

.map-zoom { position: absolute; top: 52px; right: 14px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.mzb { width: 32px; height: 32px; border: none; background: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--text-mid); transition: background .15s; border-bottom: 1px solid var(--border); }
.mzb:last-child { border-bottom: none; }
.mzb:hover { background: var(--green-pale); }

.map-legend { position: absolute; bottom: 16px; right: 14px; background: #fff; border-radius: 10px; padding: 12px 14px; box-shadow: var(--shadow-md); font-size: 12px; }
.map-legend h4 { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.legend-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12.5px; color: var(--text-mid); font-weight: 500; }
.ldot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-link { display: flex; align-items: center; gap: 5px; color: var(--green-dark); font-size: 12.5px; font-weight: 700; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); cursor: pointer; }

/* ============================================================
   23. ARCHIVE CTA & BOTTOM BAR
   ============================================================ */
.archive-cta-section {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 20px 24px;
}

.archive-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr repeat(4, auto) auto;
  gap: 16px;
  align-items: center;
}

.archive-cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.archive-cta-icon svg { width: 26px; height: 26px; stroke: var(--text-muted); fill: none; stroke-width: 1.8; }
.archive-cta-text h3 { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.archive-cta-text p { font-size: 13px; color: var(--text-muted); }
.archive-cta-benefit { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text-mid); font-weight: 500; white-space: nowrap; }
.archive-cta-benefit svg { width: 15px; height: 15px; stroke: var(--green-dark); fill: none; stroke-width: 2.5; flex-shrink: 0; }

.btn-daftar-archive {
  background: var(--green-dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background .15s;
}

.btn-daftar-archive:hover { background: var(--green-mid); }

.bottom-bar { background: #fff; border-top: 1px solid var(--border); padding: 20px 24px; }

.bottom-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.bb-item { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-right: 1px solid var(--border); }
.bb-item:last-child { border-right: none; }
.bb-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bb-icon svg { width: 20px; height: 20px; stroke: var(--green-dark); fill: none; stroke-width: 2; }
.bb-text strong { display: block; font-size: 13px; font-weight: 700; }
.bb-text small { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* ============================================================
   24. SINGLE: BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 18px 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb svg { width: 13px; height: 13px; stroke: var(--text-light); fill: none; stroke-width: 2; flex-shrink: 0; }
.breadcrumb span { color: var(--text-dark); font-weight: 600; }

/* ============================================================
   25. SINGLE: PAGE LAYOUT
   ============================================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding-bottom: 40px;
}

/* ============================================================
   26. SINGLE: STORE HERO CARD
   ============================================================ */
.store-hero {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}

/* ============================================================
   27. SINGLE: GALLERY
   ============================================================ */
.store-gallery {
  display: grid;
  grid-template-columns: 1fr 220px;
}

.gallery-main {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #e5e7eb;
}

.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-wa-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 280px;
  background: #e5e7eb;
}

.gallery-thumb { overflow: hidden; position: relative; background: #d1d5db; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-thumb:hover img { transform: scale(1.05); }

.gallery-more { position: relative; }

.gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  cursor: pointer;
}

.gallery-more-overlay svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.gallery-more-overlay span { font-size: 12px; font-weight: 700; }

/* ============================================================
   28. SINGLE: STORE INFO & STATS
   ============================================================ */
.store-info { padding: 22px 24px; }

.store-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }

.badge-verified-lg {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #d1fae5;
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-verified-lg svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.store-name-title { font-size: 26px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 4px; }
.store-tagline { color: var(--text-muted); font-size: 14px; margin-bottom: 12px; }

.store-stats { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.store-rating-row { display: flex; align-items: center; gap: 4px; }
.store-rating-num { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.stars-sm { display: flex; gap: 2px; margin: 0 3px; }
.stars-sm svg { width: 13px; height: 13px; fill: var(--orange); }
.review-count { font-size: 13px; color: var(--text-muted); }
.stat-sep { color: var(--border); font-size: 14px; }

.store-views { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-muted); }
.store-views svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.prod-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.prod-tag { padding: 4px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: 12px; font-weight: 500; color: var(--text-mid); background: #fff; }

.store-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }
.btn-selengkapnya { font-size: 13px; font-weight: 700; color: var(--green-dark); display: inline-flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; }

/* ============================================================
   29. SINGLE: INFO BAR
   ============================================================ */
.info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.info-cell { padding: 16px 18px; border-right: 1px solid var(--border); }
.info-cell:last-child { border-right: none; }

.info-cell-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 6px;
}

.info-cell-label svg { width: 14px; height: 14px; stroke: var(--green-dark); fill: none; stroke-width: 2; flex-shrink: 0; }
.info-cell-val { font-size: 13px; font-weight: 500; color: var(--text-dark); line-height: 1.5; }
.info-cell-val a { color: var(--green-dark); font-weight: 600; display: flex; align-items: center; gap: 4px; font-size: 13px; }
.info-cell-val .wa-num { color: var(--green-dark); font-weight: 700; font-size: 13px; display: flex; align-items: center; gap: 5px; }

/* ============================================================
   30. SINGLE: ACTION BUTTONS
   ============================================================ */
.action-btns {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.btn-primary-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
  flex: 1;
  min-width: 160px;
}

.btn-primary-lg:hover { background: var(--green-mid); }

.btn-secondary-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--text-mid);
  padding: 12px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
  flex: 1;
  min-width: 140px;
}

.btn-secondary-lg:hover { border-color: var(--green-light); color: var(--green-dark); }

/* ============================================================
   31. SINGLE: ARTICLE LIST
   ============================================================ */
.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.section-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-card-header h2 { font-size: 16px; font-weight: 800; letter-spacing: -.3px; }
.section-accent { width: 3px; height: 20px; background: var(--green-dark); border-radius: 2px; }

.article-list { padding: 4px 0; }

.article-item {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  cursor: pointer;
}

.article-item:last-child { border-bottom: none; }
.article-item:hover { background: var(--bg-light); }

.article-thumb { width: 100px; height: 70px; border-radius: 9px; overflow: hidden; flex-shrink: 0; background: #e5e7eb; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }

.article-body { flex: 1; min-width: 0; }
.article-title { font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 5px; }
.article-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 11.5px; color: var(--text-light); flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 4px; }
.article-meta svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.btn-lihat-semua {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--bg-light);
  cursor: pointer;
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
  font-family: inherit;
  transition: background .15s;
}

.btn-lihat-semua:hover { background: #e8f5ea; }

/* ============================================================
   32. SINGLE: NEARBY STORES
   ============================================================ */
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 16px 20px; }

.nearby-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
}

.nearby-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.nearby-thumb { height: 80px; overflow: hidden; background: #e5e7eb; }
.nearby-thumb img { width: 100%; height: 100%; object-fit: cover; }

.nearby-body { padding: 8px 10px; }
.nearby-name { font-size: 12.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.nearby-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 2px; }
.nearby-stars svg { width: 10px; height: 10px; fill: var(--orange); }
.nearby-loc { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 3px; margin-bottom: 7px; }
.nearby-actions { display: flex; gap: 4px; }

.btn-xs { padding: 5px 8px; border-radius: 5px; font-size: 10.5px; font-weight: 600; cursor: pointer; font-family: inherit; border: none; transition: all .15s; display: flex; align-items: center; gap: 3px; }
.btn-xs-green { background: var(--green-dark); color: #fff; }
.btn-xs-green:hover { background: var(--green-mid); }
.btn-xs-outline { background: #fff; color: var(--text-mid); border: 1px solid var(--border) !important; }
.btn-xs-outline:hover { border-color: var(--green-light) !important; color: var(--green-dark); }

/* ============================================================
   33. SINGLE: CTA SMALL
   ============================================================ */
.cta-small {
  background: var(--green-pale);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.cta-small-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-small-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.cta-small-text h3 { font-size: 15px; font-weight: 800; margin-bottom: 3px; letter-spacing: -.3px; }
.cta-small-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.cta-small-btn {
  background: var(--green-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}

.cta-small-btn:hover { background: var(--green-mid); }
.cta-sub-link { font-size: 12px; color: var(--green-dark); font-weight: 600; margin-top: 5px; display: block; }

/* ============================================================
   34. SINGLE: SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 14px; }

.side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.side-card-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.side-card-title { font-size: 14px; font-weight: 800; letter-spacing: -.2px; }
.side-link { font-size: 12.5px; font-weight: 600; color: var(--green-dark); }

.map-thumb { height: 190px; background: linear-gradient(160deg, #c8dfc0, #b0d0a8); position: relative; overflow: hidden; }
.map-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.map-thumb-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #c0d8b8, #a8c8a0); position: relative; }
.map-pin-big { font-size: 36px; filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .3)); }
.map-label { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); background: #fff; padding: 5px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; white-space: nowrap; box-shadow: var(--shadow); }

.konsultasi-card { padding: 16px; text-align: center; }
.konsultasi-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }

.btn-wa-konsultasi {
  width: 100%;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 11px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
}

.btn-wa-konsultasi:hover { background: var(--green-mid); }

.prod-unggulan-list { padding: 6px 0; }
.prod-row { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--border); transition: background .15s; cursor: pointer; }
.prod-row:last-child { border-bottom: none; }
.prod-row:hover { background: var(--bg-light); }
.prod-swatch-block { width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0; border: 1px solid var(--border); object-fit: cover; }
.prod-row-info { flex: 1; min-width: 0; }
.prod-row-name { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.prod-row-price { font-size: 12px; color: var(--green-dark); font-weight: 600; margin-top: 1px; }

.cat-tags-wrap { padding: 12px 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.cat-tag-sm { padding: 5px 11px; border: 1.5px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block; }
.cat-tag-sm:hover { border-color: var(--green-light); color: var(--green-dark); background: var(--green-pale); }

.keunggulan-list { padding: 10px 16px; }
.keunggulan-item { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.keunggulan-item svg { width: 16px; height: 16px; stroke: var(--green-dark); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 2px; }

.jam-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.jam-table tr { border-bottom: 1px solid var(--border); }
.jam-table tr:last-child { border-bottom: none; }
.jam-table td { padding: 9px 16px; vertical-align: middle; }
.jam-table td:first-child { font-weight: 600; color: var(--text-dark); }
.jam-table td:last-child { text-align: right; color: var(--text-mid); }
.jam-tutup { color: #ef4444 !important; font-weight: 700; }

.ulasan-preview { padding: 14px 16px; }
.ulasan-item { display: flex; gap: 10px; margin-bottom: 12px; }
.ulasan-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: #e5e7eb; }
.ulasan-avatar-placeholder { width: 36px; height: 36px; border-radius: 50%; background: var(--green-pale); color: var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.ulasan-body .ulasan-name { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.ulasan-body .ulasan-stars { display: flex; align-items: center; gap: 2px; margin: 2px 0; }
.ulasan-body .ulasan-stars svg { width: 11px; height: 11px; fill: var(--orange); }
.ulasan-body .ulasan-text { font-size: 12px; color: var(--text-mid); line-height: 1.55; }
.ulasan-body .ulasan-date { font-size: 11px; color: var(--text-light); margin-top: 3px; }
.ulasan-avatars { display: flex; align-items: center; padding: 8px 16px 14px; }
.ulasan-avatar-sm { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; margin-right: -8px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.ulasan-count { margin-left: 16px; font-size: 12px; color: var(--green-dark); font-weight: 600; }

/* ============================================================
   35. SITE FOOTER (full, from detail-toko)
   ============================================================ */
.site-footer { background: #111827; color: #fff; padding: 48px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand .logo-text-footer strong { font-size: 16px; font-weight: 800; }
.footer-brand .logo-text-footer strong em { color: var(--green-light); font-style: normal; }
.footer-brand .logo-text-footer small { font-size: 11px; color: #9ca3af; display: block; margin-top: 1px; }
.footer-brand p { font-size: 13px; color: #9ca3af; line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: #1f2937; display: flex; align-items: center; justify-content: center; transition: background .15s; cursor: pointer; }
.social-btn:hover { background: var(--green-dark); }
.social-btn svg { width: 17px; height: 17px; stroke: #9ca3af; fill: none; stroke-width: 1.8; }

.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: #9ca3af; transition: color .15s; }
.footer-col ul li a:hover { color: var(--green-light); }

.footer-bottom { border-top: 1px solid #1f2937; padding: 18px 0; text-align: center; font-size: 13px; color: #6b7280; }

/* ============================================================
   36. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ≤ 1024px */
@media (max-width: 1024px) {
  .hero-title { font-size: 36px; }
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { flex-wrap: wrap; }
  .brand-item { min-width: calc(25% - 1px); }
  .cta-inner { grid-template-columns: 1fr auto; }
  .cta-person-demo { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ≤ 960px */
@media (max-width: 960px) {
  .main-layout { grid-template-columns: 1fr; }
  .map-col { display: none; }
  .archive-cta-inner { grid-template-columns: auto 1fr auto; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .store-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { display: none; }
  .info-bar { grid-template-columns: 1fr 1fr; }
  .info-cell:nth-child(2) { border-right: none; }
  .info-cell:nth-child(3) { border-top: 1px solid var(--border); }
  .info-cell:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .price-top { flex-direction: column; align-items: flex-start; }
  .cta-inner { grid-template-columns: 1fr; }
}

/* ≤ 700px */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .search-area { grid-template-columns: 1fr auto; }
  .store-card-list { grid-template-columns: 100px 1fr; }
  .bottom-bar-grid { grid-template-columns: 1fr 1fr; }
}

/* ≤ 600px */
@media (max-width: 600px) {
  .navbar-top { flex-wrap: wrap; height: auto; padding: 10px 0; gap: 10px; }
  .search-bar { order: 3; width: 100%; }
  .action-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .stores-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
}
