/* ================================================================
   MIBOSS — Site (Public) CSS
   ================================================================ */

/* ============ SELF-HOSTED FONTS (no Google Fonts DNS lookup) ============ */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: optional; src: url('/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: optional; src: url('/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: optional; src: url('/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: optional; src: url('/fonts/playfair-display-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: optional; src: url('/fonts/playfair-display-600.woff2') format('woff2'); }

/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0a0a0a;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8e8e8;
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600;
  letter-spacing: 0.05em; color: #000;
}
.logo img { max-height: 36px; width: auto; }
.nav { display: flex; gap: 36px; }
.nav a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a1a1a; transition: opacity 0.2s;
}
.nav a.active { font-weight: 600; }
.nav a:hover { opacity: 0.5; }
.header-actions { display: flex; gap: 18px; align-items: center; }
.icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; color: #000;
}
.icon-btn:hover { opacity: 0.5; }
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { width: 22px; height: 1.5px; background: #000; transition: transform 0.2s, opacity 0.2s; }

/* ============ MINIMAL HEADER (halaman produk) ============ */
.header-minimal { position: sticky; top: 0; z-index: 100; }
.header-minimal .header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* Padding 32px konsisten dengan hero & section system —
     hamburger tidak mepet edge, premium feel */
  padding: 14px 32px;
}
.header-minimal .logo {
  justify-self: center;
  font-size: 24px;
}
.header-minimal .logo img { max-height: 32px; }
.header-minimal .hamburger {
  display: flex;          /* selalu tampil, tidak hanya mobile */
  justify-self: start;
  background: none; border: 0; padding: 6px;
  cursor: pointer;
}
.header-minimal .header-spacer { display: block; }

/* ============ DRAWER (Side menu from left) ============ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 200;
}
.drawer {
  position: fixed;
  top: 0; bottom: 0; left: 0;
  width: min(380px, 88vw);
  background: #fff;
  z-index: 300;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #ececec;
}
.drawer-head-spacer { display: block; }
.drawer-logo {
  justify-self: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  letter-spacing: 0.05em; color: #000;
  text-decoration: none;
}
.drawer-logo img { max-height: 30px; width: auto; }
.drawer-close {
  justify-self: end;
  background: none; border: 0;
  cursor: pointer;
  padding: 6px;
  color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
}
.drawer-close:hover { color: #555; }

.drawer-nav {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 8px 0;
  overflow-y: auto;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px; font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
}
.drawer-nav a:hover { background: #fafafa; }
.drawer-nav a svg { color: #6b6b6b; flex-shrink: 0; }

[x-cloak] { display: none !important; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 88vh; min-height: 600px;
  overflow: hidden;
  background: #f4f4f4;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  filter: grayscale(50%) brightness(0.85);
}
.hero-slide.active { opacity: 1; }
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 0 32px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.9;
  margin-bottom: 24px; font-weight: 500;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero-tagline {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 560px; opacity: 0.9;
  margin-bottom: 40px; line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  padding: 18px 42px;
  background: #fff; color: #000;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid #fff;
}
.btn-hero:hover { background: transparent; color: #fff; }

.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer; transition: background 0.3s;
}
.hero-dot.active { background: #fff; }

/* ============ SECTION ============ */
.section { padding: 100px 32px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: #6a6a6a;
  margin-bottom: 14px; font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
}
.section-inner { max-width: 1400px; margin: 0 auto; }

/* ============ PRODUCT GRID ============ */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 20px;
}
.product-card { cursor: pointer; display: block; }
.product-image {
  position: relative; aspect-ratio: 1;
  background: #f4f4f4; overflow: hidden;
  margin-bottom: 14px;
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.4s, transform 0.6s ease;
}
.product-image .img-hover {
  position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .img-main { opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .product-image img { transform: scale(1.03); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: #000; color: #fff;
  font-size: 10px; padding: 4px 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; z-index: 2;
}
.product-badge.sale { background: #c41e3a; }
.product-quick {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  text-align: center;
  padding: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s; z-index: 2;
}
.product-card:hover .product-quick {
  opacity: 1; transform: translateY(0);
}
.product-category {
  font-size: 11px; color: #6a6a6a;
  margin-bottom: 4px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-name {
  font-size: 14px; font-weight: 500;
  margin-bottom: 6px; color: #000;
}
.product-price {
  font-size: 14px; font-weight: 600; color: #000;
}
.product-price-old {
  text-decoration: line-through; color: #6b6b6b;
  font-weight: 400; margin-right: 6px;
}
.product-price-sale { color: #c41e3a; }

/* ============ BRAND STORY ============ */
.brand-story-section {
  background: #f8f8f8;
}
.brand-story {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.brand-story-image {
  aspect-ratio: 4/5;
  background: #e0e0e0 center/cover;
}
.brand-story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400; margin-bottom: 24px;
  line-height: 1.15;
}
.brand-story-content p {
  font-size: 15px; color: #555;
  line-height: 1.8; margin-bottom: 32px;
}

/* ============ BUTTONS ============ */
.btn-outline {
  display: inline-block;
  padding: 16px 42px;
  background: transparent; color: #000;
  border: 1px solid #000;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: #000; color: #fff; }
.btn-solid {
  display: inline-block;
  padding: 16px 42px;
  background: #000; color: #fff;
  border: 1px solid #000;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: opacity 0.3s;
}
.btn-solid:hover { opacity: 0.85; }
.btn-center { text-align: center; margin-top: 48px; }

/* ============ FOOTER — 4 kolom (Brand | Bantuan | Kebijakan | Hubungi Kami) + strip metode ============ */
.footer {
  background: #000; color: #fff;
  padding: 50px 32px 22px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 46px;
}

/* Brand block */
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-logo { font-size: 22px; font-weight: 800; letter-spacing: 0.18em; color: #fff; text-decoration: none; }
.footer-about { margin-top: 16px; font-size: 13px; color: #cfcfcf; text-decoration: none; transition: color 0.2s; }
.footer-about:hover { color: #fff; }

/* Heading bersama (kolom kontak + judul accordion) */
.footer-col-h, .f-acc-title {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.footer-col-h { margin: 0 0 16px; display: block; }

/* Daftar link */
.f-acc-list { list-style: none; padding: 0; margin: 0; }
.f-acc-list li { margin-bottom: 10px; }
.f-acc-list a { font-size: 13px; color: #808080; text-decoration: none; transition: color 0.2s; }
.f-acc-list a:hover { color: #fff; }

/* Kontak */
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.footer-contact a, .footer-contact span { font-size: 13px; color: #808080; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }

/* Social icons */
.social-icons { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; max-width: 220px; }
.social-icons a {
  width: 32px; height: 32px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all 0.2s;
  flex-shrink: 0;
}
.social-icons a:hover {
  background: #fff; color: #000; border-color: #fff;
}

/* ===== Accordion (Bantuan, Kebijakan, Metode) =====
   Mobile: collapsible <details> (collapsed by default + chevron).
   Desktop: dipaksa selalu terbuka, tanpa chevron. */
.f-acc { border: 0; }
.f-acc-head {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 0; border-top: 1px solid #1a1a1a;
}
.f-acc-head::-webkit-details-marker { display: none; }
.f-acc-chev { color: #777; flex-shrink: 0; transition: transform 0.2s; }
.f-acc[open] .f-acc-chev { transform: rotate(180deg); }
.f-acc .f-acc-list { padding-bottom: 14px; }

/* Strip metode (full-width di bawah grid) */
.footer-methods { max-width: 1200px; margin: 0 auto; }
.f-acc-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-bottom: 14px; }
.footer-method {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 6px 12px;
  border: 1px solid #2a2a2a; border-radius: 6px; background: #0e0e0e;
}
.footer-method .method-logo-text {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: #d0d0d0; text-transform: uppercase; white-space: nowrap;
}
.footer-method .method-logo-img {
  max-height: 22px; max-width: 80px; width: auto; object-fit: contain; display: block;
}

/* Desktop (≥768px): accordion dipaksa terbuka, tanpa chevron */
@media (min-width: 768px) {
  .f-acc-head { cursor: default; justify-content: flex-start; padding: 0; border-top: 0; margin-bottom: 16px; }
  .f-acc-chev { display: none; }
  .f-acc > .f-acc-list { display: block !important; }   /* paksa tampil walau <details> closed */
  .f-acc > .f-acc-chips { display: flex !important; }
  .f-acc .f-acc-list { padding-bottom: 0; }
  /* Strip metode: 2 grup berdampingan, dipisah garis dari grid di atas */
  .footer-methods { border-top: 1px solid #1a1a1a; margin-top: 26px; padding-top: 24px; display: flex; gap: 64px; flex-wrap: wrap; }
  .footer-method-group { min-width: 240px; }
  .f-acc-chips { padding-bottom: 0; }
}

/* Bottom bar — copyright, centered */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  margin: 16px auto 0; max-width: 1200px;
  padding-top: 22px;
  font-size: 12px;
  color: #8a8a8a;
  text-align: center;
}

/* Tablet — perkecil gap antar kolom */
@media (max-width: 980px) and (min-width: 768px) {
  .footer { padding: 44px 28px 20px; }
  .footer-inner { gap: 32px; }
}

/* ============ CATALOG PAGE ============ */
.page-head {
  border-bottom: 1px solid #ececec;
  padding: 56px 32px 40px;
}
.page-head-inner { max-width: 1400px; margin: 0 auto; }
.breadcrumb {
  font-size: 12px; color: #6a6a6a;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.breadcrumb a { color: #6a6a6a; transition: color 0.2s; }
.breadcrumb a:hover { color: #000; }
.breadcrumb span { margin: 0 8px; color: #ccc; }
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; margin-bottom: 8px;
}
.page-count { font-size: 13px; color: #6a6a6a; }

.catalog-wrap {
  max-width: 1400px; margin: 0 auto;
  padding: 40px 32px 100px;
  display: grid; grid-template-columns: 240px 1fr;
  gap: 48px;
}
.filter-sidebar {
  position: sticky; top: 100px; align-self: start;
}
.filter-group {
  border-bottom: 1px solid #ececec;
  padding: 24px 0;
}
.filter-group:first-child { padding-top: 0; }
.filter-group:last-child { border-bottom: none; }
.filter-title {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #444;
  cursor: pointer;
}
.filter-option input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: #000; cursor: pointer;
}
.filter-option .count { margin-left: auto; font-size: 12px; color: #6b6b6b; }
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececec;
}

/* ============ PRODUCT DETAIL PAGE ============ */
.product-hero {
  max-width: 1180px; margin: 0 auto;
  padding: 48px 32px 72px;        /* lebih breathing room top + bottom */
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;                       /* lebih lega antar kolom */
  align-items: start;
}
.product-gallery {
  position: sticky; top: 80px; align-self: start;     /* sticky lebih dekat header — gallery naik */
  max-width: 480px;             /* lebih compact supaya thumbnail fit viewport standard */
  width: 100%;
  margin-left: auto;            /* dorong ke kanan column, dekat info */
}
.main-image {
  position: relative; aspect-ratio: 1;
  background: #f4f4f4; overflow: hidden;
  margin-bottom: 10px;
  border-radius: 2px;
  /* swipe gesture: izinkan vertikal scroll, tapi capture horizontal pan */
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.main-image img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
}
.thumbnails {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.thumb {
  aspect-ratio: 1; background: #f4f4f4;
  overflow: hidden; cursor: pointer;
  opacity: 0.55; transition: opacity 0.2s;
  padding: 0; border: 1px solid transparent;
  border-radius: 2px;
}
.thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.thumb:hover { opacity: 1; }
.thumb.active { opacity: 1; border-color: #000; }

.product-info-category {
  font-size: 12px; color: #6a6a6a;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 12px;
}
.product-info-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.6vw, 34px);     /* sebelumnya 42px, sekarang 34px max — lebih balanced */
  font-weight: 400; line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.price-block {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid #ececec;
}
.price-current { font-size: 24px; font-weight: 600; color: #000; }   /* turun dari 28 ke 24 */
.price-old { font-size: 16px; text-decoration: line-through; color: #6b6b6b; }
.price-save {
  font-size: 11px; font-weight: 600;
  background: #c41e3a; color: #fff;
  padding: 4px 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 3px;
}

.product-short {
  font-size: 15px; color: #555;
  line-height: 1.7; margin-bottom: 32px;
}

.color-options { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.color-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  cursor: pointer; position: relative;
  transition: transform 0.15s;
}
.color-dot:hover { transform: scale(1.1); }
.color-dot.active::after {
  content: ''; position: absolute;
  inset: -5px; border-radius: 50%;
  border: 1px solid #000;
}
.color-swatch {
  width: 44px; height: 44px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  background-size: cover;
  background-position: center;
  cursor: pointer; position: relative;
  transition: transform 0.15s;
}
.color-swatch:hover { transform: scale(1.05); }
.color-swatch.active::after {
  content: ''; position: absolute;
  inset: -4px; border-radius: 6px;
  border: 1.5px solid #000;
}

/* Variant chips (Warna, Ukuran, dll) — text-based selector */
.variant-block { margin-bottom: 20px; }
.variant-block:last-child { margin-bottom: 0; }
.variant-label {
  font-size: 12px; font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-chip {
  padding: 9px 16px;
  border: 1px solid #d0d0d0;
  font-size: 13px; font-weight: 500;
  cursor: pointer; user-select: none;
  background: #fff; color: #1a1a1a;
  transition: all 0.15s ease;
  border-radius: 6px;
  line-height: 1.3;
}
.variant-chip:hover { border-color: #000; background: #fafafa; }
.variant-chip.active { background: #000; color: #fff; border-color: #000; }

.size-options { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.size-chip {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: 4px;
}
.size-chip:hover { border-color: #000; }
.size-chip.active { background: #000; color: #fff; border-color: #000; }

.embed-checkout {
  padding: 0; background: #fff;
}
.embed-checkout iframe {
  width: 100%; min-height: 600px; border: 0;
}

/* ============ MOCKUP NOTE (dev only) ============ */
.dev-note {
  position: fixed; bottom: 20px; right: 20px;
  background: #000; color: #fff;
  padding: 10px 16px; border-radius: 4px;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 999;
  opacity: 0.7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .catalog-wrap { grid-template-columns: 1fr; gap: 0; }
  .filter-sidebar { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .brand-story { grid-template-columns: 1fr; gap: 32px; }
  .product-hero { grid-template-columns: 1fr; gap: 28px; padding: 24px 24px 8px; }
  .product-gallery {
    position: static;
    max-width: 480px;          /* batas gallery saat stacked, biar tidak sepenuh layar */
    margin: 0 auto;             /* center secara horizontal */
  }
}
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  /* Override .header-minimal (higher specificity) supaya hamburger
     SEJAJAR rata kiri dengan hero carousel & section di mobile (semua 20px) */
  .header-minimal .header-inner { padding: 14px 20px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .icon-btn { width: 32px; height: 32px; }
  .logo { font-size: 22px; }
  .section { padding: 60px 20px; }
  .hero { height: 80vh; min-height: 520px; }
  .product-hero { padding: 24px 20px 48px; }
  /* Footer mobile: stack 1 kolom; Bantuan/Kebijakan/Metode jadi accordion */
  .footer { padding: 30px 20px 16px; }
  .footer-inner {
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 0;
  }
  .footer-brand { order: 1; padding-bottom: 18px; }
  .footer-contact-col { order: 2; padding: 14px 0; border-top: 1px solid #1a1a1a; }
  .footer-contact-col .footer-col-h { margin-bottom: 12px; }
  .footer-inner .f-acc { order: 3; }
  .social-icons { gap: 8px; }
  .footer-methods { margin-top: 0; }
  .footer-bottom { padding-top: 16px; font-size: 11px; }

  /* === Product detail mobile refinements === */
  /* Title lebih dominant di mobile (28px instead of clamp min 26px) — visual anchor lebih kuat */
  .product-info-name { font-size: 28px; }

  /* Variant chip touch-friendly (min 44px area approx) */
  .variant-chip { padding: 11px 18px; font-size: 13px; }
}
