/* =========================================================
   TOKO SEPATU RODA JOINS BEKASI — main stylesheet
   ========================================================= */

:root {
  --green-900: #0b3d24;
  --green-800: #0e4a2c;
  --green-700: #116b3a;
  --green-600: #159a48;
  --green-500: #1cb356;
  --green-100: #e7f6ec;
  --ink: #14201a;
  --ink-soft: #4b5b53;
  --paper: #ffffff;
  --paper-soft: #f6f8f6;
  --line: #e3e9e4;
  --gold: #f5b301;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 61, 36, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 61, 36, 0.14);
  --container: 1240px;
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn-outline:hover { background: var(--green-100); }
.btn-light {
  background: #fff;
  color: var(--green-800);
}
.btn-light:hover { background: var(--green-100); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-900);
  color: #eafbf0;
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0.9; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { opacity: 0.85; }
.topbar-social a:hover { opacity: 1; }

/* ---------- Header / Nav ---------- */
/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 24px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 12px;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .86rem;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s ease,color .15s ease,transform .15s ease;
}
.nav-links a.nav-link:hover,
.nav-links a.nav-link.active {
  background: var(--green-100);
  color: var(--green-700);
}
.nav-links a.nav-link:hover { transform: translateY(-1px); }
.nav-links .active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -5px;
  height: 3px;
  border-radius: 3px;
  background: var(--green-600);
}
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 205px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .15s ease;
  z-index: 20;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
}
.dropdown a:hover { background: var(--green-100); color: var(--green-700); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 13px;
  width: 158px;
  min-width: 0;
  background: #fff;
}
.search-box input {
  border: none;
  outline: none;
  font-size: .8rem;
  width: 100%;
  min-width: 0;
  font-family: inherit;
}
.search-box button {
  border: none;
  background: var(--green-600);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-soft);
  border: 1.5px solid var(--line);
  flex-shrink: 0;
}
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--green-600);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-actions .btn-sm {
  padding: 9px 13px;
  font-size: .78rem;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: var(--paper-soft);
  border-radius: 9px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* Provided image assets */
.hero-art img { object-fit: contain; }
.cat-img img,
.product-thumb img,
.gallery-grid img,
.about-grid > img,
.promo-img {
  object-fit: contain;
}
.about-grid > img { object-fit: cover; }
.gallery-grid img { background: #f6f8f6; }

/* ---------- Breadcrumb / page header ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  padding: 54px 0 46px;
  text-align: center;
}
.page-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.85;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-top: 10px; }
.page-hero p { margin-top: 12px; opacity: 0.92; max-width: 560px; margin-left: auto; margin-right: auto; }
.breadcrumb {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ---------- Hero (Beranda) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 78% 20%, #10552f 0%, var(--green-900) 55%, #08301b 100%);
  color: #fff;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--green-500);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-top: 14px;
  color: #fff;
}
.hero h1 .accent { color: var(--green-500); }
.hero p.lead {
  margin-top: 18px;
  max-width: 480px;
  color: #d7e9dd;
  font-size: 1.02rem;
}
.hero-feature-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px 26px;
}
.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #d7e9dd;
  font-weight: 500;
}
.hero-feature-list .ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-500);
}
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art img { width: 100%; max-width: 460px; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4)); }
.badge-quality {
  position: absolute;
  top: 10px; right: 6%;
  background: var(--green-500);
  color: var(--green-900);
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.hero-hashtag {
  position: absolute;
  bottom: 6%;
  right: 4%;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  opacity: 0.85;
}
.hero-decor {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px);
  z-index: 1;
}

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section-tight { padding: 44px 0; }
.section-alt { background: var(--paper-soft); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 8px; }
.section-head h2 .accent { color: var(--green-600); }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
}
.section-link:hover { background: var(--green-100); border-color: var(--green-600); color: var(--green-700); }
.carousel-nav { display: flex; gap: 8px; }
.carousel-nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.carousel-nav button:hover { background: var(--green-100); border-color: var(--green-600); }

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-500); }
.cat-card .cat-img {
  background: linear-gradient(160deg, var(--green-100), #f0faf3);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}
.cat-card .cat-img img { width: 78%; }
.cat-card-foot { display: flex; align-items: center; gap: 12px; }
.cat-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-card h3 { font-size: 1rem; }
.cat-card p { font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }
.cat-card-arrow {
  margin-left: auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

/* ---------- Product grid / cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-thumb {
  background: linear-gradient(160deg, #f0faf3, var(--green-100));
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-thumb img { width: 72%; }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-600);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-tag.tag-sale { background: #dc2626; }
.product-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.product-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 0.95rem; font-weight: 600; }
.product-price { color: var(--green-700); font-weight: 800; font-size: 1.02rem; }
.product-price .old { color: var(--ink-soft); font-weight: 500; font-size: 0.8rem; text-decoration: line-through; margin-left: 6px; }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ink-soft); }
.product-rating .stars { color: var(--gold); letter-spacing: 1px; }
.product-cta { margin-top: 10px; display: flex; gap: 8px; }
.product-cta .btn { flex: 1; }

/* ---------- Promo banner ---------- */
.promo-banner {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.promo-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.promo-copy .discount { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; font-family: var(--font-display); }
.promo-copy .discount span { color: var(--green-900); background: #fff; padding: 0 8px; border-radius: 8px; }
.promo-copy p { margin-top: 6px; max-width: 300px; opacity: 0.92; }
.promo-copy .btn { margin-top: 18px; }
.promo-img { max-width: 340px; justify-self: center; }
.promo-points { display: grid; gap: 18px; justify-items: start; }
.promo-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.82rem; }
.promo-points .ico {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promo-points strong { display: block; font-size: 0.86rem; }
.promo-points small { opacity: 0.85; }

/* ---------- About / store section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-copy .eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 700; color: var(--green-600); }
.about-copy h2 { margin-top: 8px; font-size: clamp(1.5rem, 3vw, 2rem); }
.about-copy h2 .accent { color: var(--green-600); }
.about-copy p.desc { margin-top: 14px; color: var(--ink-soft); }
.stat-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-item .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--green-700); display: flex; align-items: center; gap: 8px; }
.stat-item .lbl { font-size: 0.78rem; color: var(--ink-soft); }
.stat-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.testi-quote { color: var(--green-300, #bfe6cc); font-size: 1.8rem; line-height: 1; color: var(--green-600); opacity: 0.5; }
.testi-card p.msg { margin-top: 8px; font-size: 0.88rem; color: var(--ink-soft); }
.testi-person { margin-top: 16px; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--green-700);
  overflow: hidden;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 1px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #d7e9dd; padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand .brand-text .eyebrow,
.footer-brand .brand-text .city { color: #a9c9b6; }
.footer-brand p { margin-top: 14px; font-size: 0.85rem; color: #a9c9b6; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--green-600); }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 16px; color: #fff; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: #a9c9b6; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-item { display: flex; gap: 8px; align-items: flex-start; font-size: 0.85rem; color: #a9c9b6; }
.footer-cta {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 22px;
}
.footer-cta h4 { color: #fff; margin-bottom: 4px; }
.footer-cta p { font-size: 0.82rem; color: #a9c9b6; margin-bottom: 14px; }
.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #a9c9b6;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  animation: float-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { background: var(--green-700); }
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21,154,72,0.35), var(--shadow-md); }
  50% { box-shadow: 0 0 0 12px rgba(21,154,72,0), var(--shadow-md); }
}

/* ---------- Filters (Produk page) ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: flex-start;
}
.filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 92px;
}
.filter-panel h4 { font-size: 0.95rem; margin-bottom: 14px; }
.filter-group { margin-bottom: 22px; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding: 6px 0;
  cursor: pointer;
}
.filter-group input[type="checkbox"],
.filter-group input[type="radio"] { accent-color: var(--green-600); width: 16px; height: 16px; }
.price-range { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.price-range input { width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 10px; font-size: 0.82rem; }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-toolbar select {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 0.85rem;
}
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600;
}
.pagination .active { background: var(--green-600); color: #fff; border-color: var(--green-600); }

/* ---------- Brand page ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 20px; text-align: center; transition: all 0.18s ease;
}
.brand-card:hover { border-color: var(--green-500); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.brand-logo {
  width: 74px; height: 74px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; color: var(--green-700); font-size: 1.1rem;
}
.brand-card h3 { font-size: 1rem; }
.brand-card p { font-size: 0.8rem; color: var(--ink-soft); margin-top: 6px; }

/* ---------- Gallery page ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-grid a {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: contain; background: var(--green-100); transition: transform 0.3s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-grid .g-wide { grid-column: span 2; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info-list { display: grid; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ico {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; }
.contact-info-item p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 11px 14px; font-family: inherit; font-size: 0.9rem; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--green-600); outline: none;
}
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden; margin-top: 30px;
  border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Tentang Kami page ---------- */
.timeline { display: grid; gap: 26px; margin-top: 30px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.timeline-year { font-family: var(--font-display); font-weight: 800; color: var(--green-600); font-size: 1.1rem; }
.timeline-item p { color: var(--ink-soft); font-size: 0.88rem; margin-top: 4px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.value-card .ico {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--ink-soft); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 30px; }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1; border-radius: var(--radius-lg); background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--green-700);
}
.team-card h4 { font-size: 0.92rem; }
.team-card span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- FAQ (Kontak) ---------- */
.faq-list { display: grid; gap: 12px; margin-top: 20px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.faq-item summary {
  padding: 16px 20px; font-weight: 600; font-size: 0.92rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--green-600); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-body { padding: 0 20px 18px; font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Breadcrumb hero small icons row on product/aksesoris ---------- */
.tab-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.tab-row a {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.85rem; font-weight: 600;
}
.tab-row a.active, .tab-row a:hover { background: var(--green-600); border-color: var(--green-600); color: #fff; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .product-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  .nav-links a.nav-link { padding-left: 8px; padding-right: 8px; font-size: .81rem; }
  .search-box { width: 135px; }
  .nav-actions .btn-sm { padding-left: 10px; padding-right: 10px; }
}

@media (max-width: 960px) {
  .nav-links, .search-box { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-wrap.open .nav-links a.nav-link { width: 100%; }
  .nav-wrap.open .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; margin-top: 4px;
  }
  .nav-wrap.open .has-dropdown.dd-open .dropdown { display: block; }
  .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
  .hero-feature-list { grid-template-columns: repeat(2, auto); justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .promo-banner { grid-template-columns: 1fr; text-align: center; }
  .promo-points { justify-items: center; }
  .promo-img { order: -1; }
}

@media (max-width: 720px) {
  .nav-wrap { min-height: 72px; padding: 8px 16px; }
  .brand img { width: 58px; height: 58px; }
  .nav-actions { margin-left: auto; }
  .nav-actions .cart-link { display: none; }
  .nav-actions .btn-sm { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid.cols-4, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-left span:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
  .cat-grid, .product-grid, .product-grid.cols-4, .product-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .promo-banner { padding: 26px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
