/*
  Bisnis Kaca — Main Stylesheet
  Mobile-first. Zero third-party. Semua warna via CSS variables dari plugin.
  Fallback vars didefinisikan di sini; nilai sesungguhnya di-inject oleh plugin.
*/

/* ============================================================
   0. CSS Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --bk-primary:   #2563eb;
  --bk-secondary: #1e40af;
  --bk-accent:    #f59e0b;
  --bk-text:      #1f2937;
  --bk-bg:        #ffffff;
  --bk-surface:   #f8fafc;
  --bk-font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bk-font-body:    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* spacing scale */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-6: 24px; --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px;

  /* radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px;

  /* shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);

  /* transition */
  --tr: .2s ease;

  /* container */
  --container: 1140px;
  --gutter:    16px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bk-bg);
  color: var(--bk-text);
  font-family: var(--bk-font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--bk-primary); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--bk-secondary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bk-font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 var(--sp-4);
  color: var(--bk-text);
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.4rem,  4vw, 2rem);    }
h3 { font-size: clamp(1.1rem,  3vw, 1.5rem);  }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--sp-4); }

ul, ol { padding-left: var(--sp-6); }

/* ============================================================
   1a. Top Header Bar
   ============================================================ */
.topbar {
  background: var(--bk-secondary);
  color: rgba(255,255,255,.9);
  font-size: 0.78rem;
  padding-block: 6px;
  line-height: 1.4;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-left svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,.8);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.topbar-right {
  font-weight: 500;
  letter-spacing: .02em;
}
@media (max-width: 480px) {
  .topbar-right { display: none; }
}

/* ============================================================
   1b. Banner Slider
   — Height sama persis dengan .hero (padding-block: sp-12 sp-10 / sp-16)
   — Kita pakai min-height yang identik: 280px mobile, 420px tablet+
   ============================================================ */

/* Variabel tinggi — selaraskan dengan .hero */
:root {
  --bk-slider-h-mobile: 220px;
  --bk-slider-h-tablet: 360px;
  --bk-slider-h-desktop: 460px;
}

.bk-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  /* Tinggi minimum sama dengan hero mobile */
  height: var(--bk-slider-h-mobile);
  background: var(--bk-secondary);
  user-select: none;
  -webkit-user-select: none;
}

.bk-slider-track {
  display: flex;
  height: 100%;
  /* Geser track berdasarkan index aktif */
  transform: translateX(calc(var(--bk-slide-index, 0) * -100%));
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.bk-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.bk-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.bk-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Caption overlay */
.bk-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
}
.bk-slide-caption span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
  line-height: 0;
}

/* Prev / Next buttons */
.bk-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: background .15s, opacity .15s;
  line-height: 0;
  padding: 0;
}
.bk-slider-btn:hover { background: #fff; }
.bk-slider-btn svg {
  width: 20px; height: 20px;
  stroke: var(--bk-text);
  stroke-width: 2.5;
  fill: none;
}
.bk-slider-btn--prev { left: 12px; }
.bk-slider-btn--next { right: 12px; }

/* Dots */
.bk-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.bk-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, width .2s;
}
.bk-slider-dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* Tablet */
@media (min-width: 560px) {
  .bk-slider { height: var(--bk-slider-h-tablet); }
  .bk-slider-btn { width: 44px; height: 44px; }
  .bk-slider-btn--prev { left: 16px; }
  .bk-slider-btn--next { right: 16px; }
  .bk-slide-caption { padding: 20px 24px; }
  .bk-slide-caption span { font-size: 1rem; line-height: 1.4; }
}

/* Desktop */
@media (min-width: 1024px) {
  .bk-slider { height: var(--bk-slider-h-desktop); }
  .bk-slider-btn { width: 48px; height: 48px; }
  .bk-slider-btn--prev { left: 24px; }
  .bk-slider-btn--next { right: 24px; }
  .bk-slider-dots { bottom: 20px; }
  .bk-slider-dot { width: 10px; height: 10px; }
  .bk-slider-dot.is-active { width: 28px; }
}

/* ============================================================
   1. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-16); }
.section--surface { background: var(--bk-surface); }

/* ============================================================
   2. Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bk-bg);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: var(--sp-4);
}

.site-logo {
  font-family: var(--bk-font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--bk-text);
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.site-logo:hover { color: var(--bk-primary); }
.logo-img {
  max-height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-text {
  display: block;
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--bk-text);
  border-radius: 2px;
  transition: var(--tr);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.primary-nav {
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--bk-bg);
  padding: var(--sp-6);
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  z-index: 99;
}
.primary-nav.is-open { transform: translateX(0); }

.primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.primary-nav ul a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bk-text);
  border-radius: var(--r-md);
}
.primary-nav ul a:hover,
.primary-nav ul .current-menu-item > a { background: var(--bk-surface); color: var(--bk-primary); }

.header-cta {
  display: none;
}

/* Desktop nav — 768px+ */
@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .primary-nav {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    overflow: visible;
    flex: 1;
  }
  .primary-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-1);
  }
  .primary-nav ul a {
    font-size: 0.9rem;
    padding: var(--sp-2) var(--sp-3);
  }

  .header-cta { display: flex; align-items: center; }
}

/* ============================================================
   3. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  border-radius: var(--r-md);
  font-family: var(--bk-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--tr);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--bk-primary);
  color: #fff;
  border-color: var(--bk-primary);
}
.btn--primary:hover {
  background: var(--bk-secondary);
  border-color: var(--bk-secondary);
  color: #fff;
}
.btn--accent {
  background: var(--bk-accent);
  color: #fff;
  border-color: var(--bk-accent);
}
.btn--outline {
  background: transparent;
  color: var(--bk-primary);
  border-color: var(--bk-primary);
}
.btn--outline:hover {
  background: var(--bk-primary);
  color: #fff;
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--full { width: 100%; }

/* WhatsApp Button */
.btn--wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--wa:hover { background: #1da851; border-color: #1da851; color: #fff; }

/* ============================================================
   4. Hero Section
   ============================================================ */
.hero {
  /* min-height sama dengan slider agar tinggi konsisten */
  min-height: var(--bk-slider-h-mobile);
  display: flex;
  align-items: center;
  padding-block: var(--sp-12) var(--sp-10);
  background: linear-gradient(135deg, var(--bk-primary) 0%, var(--bk-secondary) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 720px; margin-inline: auto; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: var(--sp-4);
}
.hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.hero p  { color: rgba(255,255,255,.88); font-size: 1.05rem; margin-bottom: var(--sp-8); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
}

@media (min-width: 560px) {
  .hero { min-height: var(--bk-slider-h-tablet); }
}
@media (min-width: 768px) {
  .hero { text-align: left; padding-block: var(--sp-16); }
  .hero-content { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .hero { min-height: var(--bk-slider-h-desktop); }
}

/* ============================================================
   5. Cards
   ============================================================ */
.card {
  background: var(--bk-bg);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr), transform var(--tr);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: var(--sp-4); }
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bk-primary);
  margin-bottom: var(--sp-2);
}
.card-title { margin-bottom: var(--sp-2); }
.card-title a { color: var(--bk-text); }
.card-title a:hover { color: var(--bk-primary); }
.card-desc { font-size: 0.9rem; color: #6b7280; margin-bottom: var(--sp-4); }
.card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bk-primary);
  margin-bottom: var(--sp-3);
}

/* ============================================================
   6. Grid Layouts
   ============================================================ */
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 560px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   7. Section Headings
   ============================================================ */
.section-header {
  margin-bottom: var(--sp-10);
  text-align: center;
}
.section-header p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
}
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bk-primary);
  margin-bottom: var(--sp-2);
}

/* ============================================================
   7b. Filter Tabs
   ============================================================ */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 24px;
}

/* ============================================================
   8. Layanan / Services
   ============================================================ */
.service-item {
  text-align: center;
  padding: var(--sp-6);
  background: var(--bk-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--tr), transform var(--tr);
}
.service-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--bk-surface);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--bk-primary); fill: none; stroke-width: 1.8; }
.service-item h3 { font-size: 1.05rem; margin-bottom: var(--sp-2); }
.service-item p  { font-size: 0.9rem; color: #6b7280; margin: 0; }

/* ============================================================
   9. Gallery Grid
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: flex-end;
  padding: var(--sp-3);
  opacity: 0;
  transition: opacity var(--tr);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ============================================================
   10. WhatsApp Float Button
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  text-decoration: none;
  transition: all var(--tr);
}
.wa-float:hover { background: #1da851; transform: translateY(-2px); color: #fff; }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ============================================================
   11. Contact Section
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--bk-surface);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--bk-primary); fill: none; stroke-width: 1.8; }
.contact-info-item h4 { font-size: 0.85rem; color: #9ca3af; margin-bottom: 4px; font-weight: 500; }
.contact-info-item p  { margin: 0; font-weight: 600; color: var(--bk-text); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--bk-text); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid #e5e7eb;
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: var(--bk-font-body);
  background: var(--bk-bg);
  color: var(--bk-text);
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bk-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   12. Breadcrumb
   ============================================================ */
.breadcrumb {
  padding-block: var(--sp-3);
  font-size: 0.82rem;
  color: #9ca3af;
}
.breadcrumb ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
}
.breadcrumb li + li::before { content: '/'; color: #d1d5db; margin-right: var(--sp-2); }
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: var(--bk-primary); }

/* ============================================================
   13. Footer
   ============================================================ */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,.75);
  padding-block: var(--sp-12) var(--sp-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p { font-size: 0.9rem; margin-bottom: var(--sp-4); }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: var(--sp-3); display: block; }
.footer-logo-link { display: inline-block; margin-bottom: var(--sp-3); text-decoration: none; }
.footer-logo-img  { max-height: 56px; width: auto; object-fit: contain; display: block; }

.footer-widget-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-nav a { color: rgba(255,255,255,.65); font-size: 0.9rem; }
.footer-nav a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

.social-links { display: flex; gap: var(--sp-3); }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--tr);
}
.social-links a:hover { background: var(--bk-primary); color: #fff; }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   14. Archive / Blog List
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 640px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .posts-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   15. Pagination
   ============================================================ */
.pagination { margin-top: var(--sp-10); }
.pagination ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }
.pagination li a,
.pagination li span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding-inline: var(--sp-3);
  border: 1.5px solid #e5e7eb;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--bk-text);
  transition: all var(--tr);
}
.pagination li a:hover     { border-color: var(--bk-primary); color: var(--bk-primary); }
.pagination .current span  { background: var(--bk-primary); border-color: var(--bk-primary); color: #fff; }

/* ============================================================
   16. Singular / Single Post
   ============================================================ */
.entry-header { margin-bottom: var(--sp-8); }
.entry-header .entry-meta { font-size: 0.85rem; color: #6b7280; margin-bottom: var(--sp-4); }
.entry-thumbnail { border-radius: var(--r-lg); overflow: hidden; margin-bottom: var(--sp-8); aspect-ratio: 16/9; }
.entry-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.entry-content { max-width: 720px; }
.entry-content h2, .entry-content h3 { margin-top: var(--sp-8); }
.entry-content ul, .entry-content ol { margin-bottom: var(--sp-4); }

/* ============================================================
   17. Produk Single
   ============================================================ */
.produk-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 768px) { .produk-layout { grid-template-columns: 1fr 1fr; } }

.produk-gallery-main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; }
.produk-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.produk-meta { display: flex; flex-direction: column; gap: var(--sp-4); }
.produk-price { font-size: 1.8rem; font-weight: 800; color: var(--bk-primary); }
.produk-actions { display: flex; flex-direction: column; gap: var(--sp-3); }
@media (min-width: 480px) { .produk-actions { flex-direction: row; } }

/* ============================================================
   18. Badges & Labels
   ============================================================ */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-sm);
}
.badge--primary { background: var(--bk-primary); color: #fff; }
.badge--accent  { background: var(--bk-accent);  color: #fff; }
.badge--surface { background: var(--bk-surface); color: var(--bk-text); }

/* ============================================================
   19. Testimonials
   ============================================================ */
.testimonial-card {
  background: var(--bk-bg);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: var(--sp-3); }
.testimonial-text  { font-size: 0.95rem; color: #4b5563; font-style: italic; margin-bottom: var(--sp-4); }
.testimonial-author { font-weight: 700; font-size: 0.9rem; color: var(--bk-text); }
.testimonial-role   { font-size: 0.8rem; color: #9ca3af; }

/* ============================================================
   20. Stats / Counter
   ============================================================ */
.section--counter {
  min-height: var(--bk-slider-h-mobile);
  display: flex;
  align-items: center;
}
@media (min-width: 560px)  { .section--counter { min-height: var(--bk-slider-h-tablet);  } }
@media (min-width: 1024px) { .section--counter { min-height: var(--bk-slider-h-desktop); } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--bk-primary);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.stat-label { font-size: 0.85rem; color: #6b7280; }

/* ============================================================
   21. Utility Classes
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--bk-primary); }
.text-accent  { color: var(--bk-accent); }
.text-muted   { color: #6b7280; }
.mt-auto { margin-top: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   22. Skip to content (aksesibilitas)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--bk-primary);
  color: #fff;
  padding: var(--sp-3) var(--sp-6);
  font-weight: 700;
  z-index: 999;
  transition: top .1s;
}
.skip-link:focus { top: 0; }
