/* ==========================================================================
   Multimayaka Theme — refined spacing system & polished mobile
   Palette: #E31E24 · #0D47A1 · #111111 · #6D6E71 · #FFFFFF
   Headings: Montserrat · Body: Inter · Scale: 8px grid
   ========================================================================== */

:root {
  /* Colors */
  --c-red: #E31E24;
  --c-red-dark: #B5161B;
  --c-red-soft: #FCE5E6;
  --c-blue: #0D47A1;
  --c-blue-dark: #082F6B;
  --c-blue-soft: #E3ECF8;
  --c-black: #111111;
  --c-gray: #6D6E71;
  --c-gray-light: #E5E7EB;
  --c-gray-lighter: #F3F4F6;
  --c-gray-lightest: #F9FAFB;
  --c-white: #FFFFFF;

  /* Spacing scale (8px grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 48px;
  --s-10: 56px;
  --s-11: 64px;
  --s-12: 80px;
  --s-13: 96px;
  --s-14: 120px;

  /* Vertical section padding (responsive via media queries) */
  --section-y: 80px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(17, 17, 17, .04);
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, .06), 0 1px 3px rgba(17, 17, 17, .08);
  --shadow-md: 0 4px 6px -1px rgba(17, 17, 17, .08), 0 2px 4px -2px rgba(17, 17, 17, .06);
  --shadow-lg: 0 10px 25px -5px rgba(17, 17, 17, .12), 0 8px 10px -6px rgba(17, 17, 17, .06);
  --shadow-xl: 0 20px 40px -12px rgba(17, 17, 17, .18);

  /* Fonts */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-head: 'Montserrat', var(--font-body);

  /* Layout */
  --container-max: 1280px;
  --container-pad: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; line-height: 1.5; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-black);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

img, svg { display: block; max-width: 100%; height: auto; }
img { border-radius: inherit; }

a { color: var(--c-red); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-red-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--c-black);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-red); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

.skip-link {
  position: absolute; top: -100px; left: 16px; background: var(--c-red); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-md); z-index: 100; font-weight: 700;
}
.skip-link:focus { top: 16px; color: #fff; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn--primary { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn--primary:hover { background: var(--c-red-dark); color: #fff; border-color: var(--c-red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--c-black); border-color: var(--c-black); }
.btn--secondary:hover { background: var(--c-black); color: #fff; }
.btn--light { background: #fff; color: var(--c-red); border-color: #fff; }
.btn--light:hover { background: var(--c-red-soft); color: var(--c-red); border-color: var(--c-red-soft); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn--copy {
  background: #fff;
  color: var(--c-red);
  border: 2px solid var(--c-red);
  padding: 11px 20px;
  font-size: 12px;
}
.btn--copy:hover, .btn--copy.is-copied { background: var(--c-red); color: #fff; }

/* ===== Announcement bar (top strip) ===== */
.announcement-bar {
  background: var(--c-black);
  color: #fff;
  font-size: 12.5px;
  position: relative;
  z-index: 51;
}
.announcement-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  padding: 9px var(--container-pad);
  flex-wrap: wrap;
}
.announcement-bar__icon { font-size: 14px; }
.announcement-bar__text {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: .01em;
}
.announcement-bar__cta {
  color: #fff;
  background: var(--c-red);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.announcement-bar__cta:hover { background: var(--c-red-dark); color: #fff; transform: translateY(-1px); }

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-gray-light);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-xs);
}

/* Mobile-only search row — hidden on desktop */
.site-header__search-row { display: none; }

/* Offset sticky header below the WordPress admin bar for logged-in users */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
@media screen and (max-width: 600px) {
  body.admin-bar .site-header { top: 0; }
  body.admin-bar #wpadminbar { position: absolute; }
}
/* Announcement bar scrolls away (not sticky), so no offset needed */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-7);
  align-items: center;
  padding-top: var(--s-4);
  padding-bottom: var(--s-4);
}

.site-branding,
.site-branding .custom-logo-link { max-width: 220px; }
.site-branding a {
  display: flex; align-items: center; gap: var(--s-3); text-decoration: none;
  color: var(--c-black);
}
.custom-logo-link {
  display: inline-flex !important;
  align-items: center;
  line-height: 0;
}
.custom-logo-link img,
img.custom-logo {
  display: block;
  width: auto !important;
  height: 44px !important;
  max-height: 44px !important;
  max-width: 200px !important;
  object-fit: contain;
}

.brand-mark { display: inline-flex; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-red);
}
.brand-name strong { font-weight: 900; }
.brand-tagline {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--c-gray);
  margin-top: var(--s-1);
  font-weight: 500;
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--c-gray-lighter);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  position: relative;
  border: 1px solid transparent;
  transition: border-color .15s ease, background .15s ease;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.header-search:focus-within { background: #fff; border-color: var(--c-red); }
.header-search__icon { color: var(--c-gray); display: inline-flex; margin-right: var(--s-2); }
.header-search input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  padding: 10px 0;
  color: var(--c-black);
  min-width: 0;
  font-family: inherit;
}
.header-search input[type="search"]::placeholder { color: var(--c-gray); }
.header-search__submit {
  border: none;
  background: var(--c-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-head);
  transition: background .15s ease;
  letter-spacing: .02em;
}
.header-search__submit:hover { background: var(--c-red-dark); }

.header-actions { display: flex; align-items: center; gap: var(--s-5); }
.header-action {
  display: inline-flex; align-items: center; gap: var(--s-2);
  color: var(--c-black); text-decoration: none;
  font-size: 13px; font-weight: 500; position: relative;
  padding: var(--s-1) 0;
}
.header-action:hover { color: var(--c-red); }
.header-action__badge {
  position: absolute;
  top: -2px; left: 14px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--c-red);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.primary-nav {
  background: #fff;
  border-top: 1px solid var(--c-gray-lighter);
  border-bottom: 1px solid var(--c-gray-light);
}
.primary-nav__inner { display: flex; align-items: center; }
.primary-menu {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
}
.primary-menu li { position: relative; }
.primary-menu a {
  display: inline-block;
  padding: 16px 20px;
  color: var(--c-black);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .15s ease;
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { color: var(--c-red); }
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a { position: relative; }
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
  content: ""; position: absolute; left: 20px; right: 20px; bottom: 8px;
  height: 2px; background: var(--c-red); border-radius: 2px;
}

.primary-nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-gray-light);
  width: 42px; height: 42px;
  border-radius: 8px;
  position: relative;
  margin: var(--s-2) 0;
  align-items: center;
  justify-content: center;
}
.primary-nav__hamburger,
.primary-nav__hamburger::before,
.primary-nav__hamburger::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--c-black);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .2s ease, top .2s ease;
}
.primary-nav__hamburger { top: 50%; transform: translate(-50%, -50%); }
.primary-nav__hamburger::before { top: -6px; }
.primary-nav__hamburger::after { top: 6px; }
.primary-nav.is-open .primary-nav__hamburger,
.primary-nav__toggle[aria-expanded="true"] .primary-nav__hamburger { background: transparent; }
.primary-nav.is-open .primary-nav__hamburger::before,
.primary-nav__toggle[aria-expanded="true"] .primary-nav__hamburger::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.primary-nav.is-open .primary-nav__hamburger::after,
.primary-nav__toggle[aria-expanded="true"] .primary-nav__hamburger::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #B5161B 0%, var(--c-red) 55%, #F03B47 100%);
  color: #fff;
  overflow: hidden;
  padding: 0 0 var(--s-9);
}

/* ===== Hero Slider — contained, with side promo banners ===== */
.hero-slider { padding: 0 0 var(--s-11); }   /* bottom space before next section */
.hero-slider__container {
  padding-top: var(--s-7);
  padding-bottom: 0;                          /* gap to trustbar comes from .trustbar margin-top */
}

/* Grid: main slider (2fr) + side stack (1fr) */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-4);
  align-items: stretch;
}
.hero-grid__main { position: relative; min-width: 0; }   /* plain block so the 16:9 viewport keeps its ratio (no flex-stretch crop) */
.hero-grid__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-4);
}

/* Promo card */
.hero-promo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(0,0,0,.15);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.3);
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -10px rgba(0,0,0,.4);
}
.hero-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fill — promos are designed banners */
  display: block;
  transition: transform .5s ease;
}
.hero-promo:hover img { transform: scale(1.03); }

/* Promo overlay — left-aligned, vertically centered, left→right gradient (matches reference) */
.hero-promo__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(16px, 6%, 28px);
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 45%, rgba(0,0,0,.05) 80%, transparent 100%);
  color: #fff;
  pointer-events: none;
}
.hero-promo__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 6px;
}
.hero-promo__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(15px, 1.7vw, 23px);
  line-height: 1.12;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  max-width: 80%;
  color: #fff;                       /* force white (override global h3 color) */
}
.hero-promo__sub {
  font-size: clamp(11px, 1vw, 13px);
  line-height: 1.45;
  margin: 0 0 var(--s-2);
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
  max-width: 80%;
}
.hero-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  color: #fff;
  transition: transform .2s ease, gap .2s ease;
}
.hero-promo--has-overlay:hover .hero-promo__cta {
  gap: 10px;
}

/* ── Hero side: latest-news ticker (replaces the 2 promo banners) ───────── */
.hero-grid__side--news { display: block; position: relative; }
.hero-news {
  position: absolute;
  inset: 0;                          /* pin to the side column → exactly the main slider's height */
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.3);
  overflow: hidden;
}
.hero-news__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-4) var(--s-3);
  border-bottom: 1px solid #eef0f3;
}
.hero-news__head-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--c-black);
}
.hero-news__head-title svg { color: var(--c-red); flex: 0 0 auto; }
.hero-news__head-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--c-red);
  text-decoration: none;
  white-space: nowrap;
  transition: gap .2s ease;
}
.hero-news__head-link:hover { gap: 8px; }

.hero-news__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;                  /* clean clip at the edges — no white fade */
  padding: 0 var(--s-3);
}
.hero-news__track { will-change: transform; animation: mm-news-scroll 20s linear infinite; }
@keyframes mm-news-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }   /* content duplicated → seamless loop */
}

.hero-news__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: 10px;               /* uniform spacing → keeps -50% loop seamless */
  padding: 8px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background .18s ease;
}
.hero-news__item:hover { background: #f4f6f9; }
.hero-news__thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef1f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-news__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-news__thumb-ph { color: #b6bdc7; }
.hero-news__body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.hero-news__cat {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-red);
}
.hero-news__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.28;
  color: var(--c-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-news__item:hover .hero-news__title { color: var(--c-red); }
.hero-news__date { font-size: 11px; color: #8a93a3; }
@media (prefers-reduced-motion: reduce) {
  .hero-news__track { animation: none; }
}

/* Main slider viewport — fixed 16:9; dark bg so any letterbox blends in */
.hero-slider__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #14161c 0%, #0c0d11 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.35);
}
.hero-slider__track {
  position: absolute;
  inset: 0;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s cubic-bezier(.4, 0, .2, 1);
}
.hero-slider__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slider__slide img,
.hero-slider__link {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slider__slide img {
  object-fit: contain;       /* never crop — always show the full banner */
  object-position: center;
}

/* Slide text overlay — left-aligned, vertically centered, left→right gradient (matches reference) */
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(24px, 5%, 56px);
  /* gradasi: pekat di sisi teks (kiri) → memudar penuh ke area gambar (kanan) */
  background: linear-gradient(95deg,
      rgba(8,11,18,.88) 0%,
      rgba(8,11,18,.7)  24%,
      rgba(8,11,18,.4)  44%,
      rgba(8,11,18,.12) 62%,
      rgba(8,11,18,0)   78%);
  color: #fff;
  pointer-events: none;
}
.hero-slider__overlay-inner {
  max-width: 56%;
  pointer-events: auto;
}
.hero-slider__overlay-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s-3);
  padding: 5px 12px;
  background: rgba(227,30,36,.92);
  border-radius: var(--radius-pill);
}
.hero-slider__overlay-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 var(--s-4);
  letter-spacing: -.02em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  color: #fff;                       /* force white (override global h2 color) */
}
/* Red accent word(s): wrap text in *asterisks* in the field → renders red */
.hero-slider__overlay-title .mm-accent,
.hero-promo__title .mm-accent { color: var(--c-red); }
.hero-slider__overlay-sub {
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.6;
  margin: 0 0 var(--s-6);
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.hero-slider__overlay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.hero-slider__overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 2px solid transparent;
}
.hero-slider__overlay-cta--primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(227,30,36,.55);
}
.hero-slider__overlay-cta--primary:hover {
  background: var(--c-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -6px rgba(227,30,36,.65);
}
.hero-slider__overlay-cta--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-slider__overlay-cta--ghost:hover {
  background: #fff;
  color: var(--c-black);
  transform: translateY(-2px);
}

/* Nav arrows */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-black);
  box-shadow: 0 6px 20px -4px rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .2s ease, background .15s ease, transform .2s ease;
}
.hero-slider__viewport:hover .hero-slider__nav { opacity: 1; }
.hero-slider__nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.hero-slider__nav--prev { left: var(--s-5); }
.hero-slider__nav--next { right: var(--s-5); }

/* Dots indicator */
.hero-slider__dots {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}
.hero-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .2s ease;
}
.hero-slider__dot:hover { background: rgba(255,255,255,.7); }
.hero-slider__dot.is-active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* Empty state */
.hero-slider__viewport--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gray-lightest);
  color: var(--c-gray);
}
.hero-slider__placeholder {
  text-align: center;
  padding: var(--s-7);
  max-width: 480px;
}
.hero-slider__placeholder p {
  font-size: 14px;
  margin: var(--s-3) 0 0;
  line-height: 1.6;
}

/* Touch swipe — disable selection while dragging */
.hero-slider__viewport.is-dragging .hero-slider__slide { transition: none; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(110deg, transparent 60%, rgba(255,255,255,.08) 60% 62%, transparent 62%),
    linear-gradient(110deg, transparent 70%, rgba(255,255,255,.06) 70% 73%, transparent 73%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-12);
  align-items: center;
  padding-top: var(--s-13);
  padding-bottom: var(--s-12);
  position: relative;
  z-index: 1;
}
.hero__content { min-width: 0; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: rgba(255,255,255,.12);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin: 0 0 var(--s-7);
  border: 1px solid rgba(255,255,255,.18);
}
.hero__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #fff;
}
.hero__title {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-5);
  text-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.hero__lead {
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 var(--s-8);
}
.hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.hero__cta .btn--secondary { color: #fff; border-color: rgba(255,255,255,.65); }
.hero__cta .btn--secondary:hover { background: #fff; color: var(--c-red); border-color: #fff; }

.hero__visual {
  position: relative;
  min-height: 380px;
}
.hero__visual img {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  object-fit: contain;
  max-height: 440px;
}
.hero__stripe { position: absolute; height: 100%; width: 60px; background: rgba(255,255,255,.06); transform: skewX(-18deg); z-index: 0; }
.hero__stripe--1 { right: 30%; }
.hero__stripe--2 { right: 10%; opacity: .5; width: 30px; }
.hero__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  position: relative;
  z-index: 1;
  align-items: end;
  min-height: 400px;
}
.hero__product {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: var(--s-3);
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  border: 1px solid rgba(255,255,255,.1);
}

/* ===== Trust bar (sits below hero with a clean gap) ===== */
.trustbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-7);
  margin-top: var(--s-6);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.trustbar li {
  display: flex; align-items: center; gap: var(--s-3);
  color: var(--c-gray);
  font-size: 13px;
  padding: var(--s-2) 0;
}
.trustbar li + li { border-left: 1px solid var(--c-gray-light); padding-left: var(--s-5); }
.trustbar__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-red-soft);
  color: var(--c-red);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trustbar__text { display: flex; flex-direction: column; line-height: 1.35; gap: 2px; }
.trustbar__text strong { font-family: var(--font-head); font-size: 13px; color: var(--c-black); font-weight: 700; }

/* ===== Vouchers (auto from WooCommerce coupons) ===== */
.vouchers {
  padding: var(--s-9) 0;
  background: var(--c-gray-lightest);
}
.vouchers__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.vouchers__heading { display: flex; flex-direction: column; gap: var(--s-2); }
.vouchers__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-red);
  background: var(--c-red-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.vouchers__eyebrow strong { font-weight: 900; }
.vouchers__title {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
  color: var(--c-black);
  line-height: 1.2;
}
.vouchers__hint {
  color: var(--c-gray);
  font-size: 13px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.vouchers__hint::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--c-red);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.vouchers__track {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-red) rgba(0,0,0,.05);
  padding-bottom: var(--s-3);
  /* Bleed off the RIGHT edge only → first card's left edge stays aligned with the header */
  margin-right: calc(-1 * var(--container-pad));
  padding-right: var(--container-pad);
}
.vouchers__track::-webkit-scrollbar { height: 6px; }
.vouchers__track::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 4px; }
.vouchers__track::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 4px; }
.vouchers__track::-webkit-scrollbar-thumb:hover { background: var(--c-red-dark); }

.voucher-card {
  flex: 0 0 auto;
  width: 360px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 124px 1fr;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.voucher-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.voucher-card__left {
  background: var(--c-red);
  color: #fff;
  padding: var(--s-4) var(--s-3);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
/* Subtle dot pattern overlay for tactile feel */
.voucher-card__left::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 22%, rgba(255,255,255,.12) 1px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
/* Half-circle notches */
.voucher-card__left::before {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 18px; height: 18px;
  background: var(--c-gray-lightest);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 -38px 0 var(--c-gray-lightest),
    0 38px 0 var(--c-gray-lightest);
  z-index: 2;
}
.voucher-card__label {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: .22em;
  font-weight: 700;
  opacity: .85;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.voucher-card__prefix {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.voucher-card__main {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
.voucher-card__main--small {
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.voucher-card__shipping-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.voucher-card__right {
  position: relative;
  padding: var(--s-4) var(--s-4) var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-width: 0;
}
/* Dashed perforation between halves — clearer than before */
.voucher-card__right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px; bottom: 16px;
  border-left: 2px dashed rgba(0,0,0,.12);
}

.voucher-card__body { display: flex; flex-direction: column; gap: var(--s-2); min-width: 0; flex: 1; }
.voucher-card__headline {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-black);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.voucher-card__meta {
  display: flex; flex-direction: column; gap: 3px;
  font-size: 11px;
  color: var(--c-gray);
  line-height: 1.45;
}
.voucher-card__meta li { display: flex; align-items: flex-start; gap: 6px; }
.voucher-card__meta li::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--c-red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.voucher-card__action {
  display: flex;
  align-items: stretch;
  gap: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px dashed rgba(0,0,0,.1);
}
.voucher-card__code {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-red-soft);
  color: var(--c-red);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  padding: 9px 6px;
  border: 1.5px dashed var(--c-red);
  border-radius: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voucher-card__copy {
  padding: 9px 14px;
  font-size: 11px;
  white-space: nowrap;
  border-width: 1.5px;
  letter-spacing: .04em;
  flex-shrink: 0;
}

/* Free-shipping variant — blue instead of red */
.voucher-card--shipping .voucher-card__left { background: var(--c-blue); }
.voucher-card--shipping .voucher-card__code {
  background: var(--c-blue-soft);
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.voucher-card--shipping .voucher-card__copy {
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.voucher-card--shipping .voucher-card__copy:hover,
.voucher-card--shipping .voucher-card__copy.is-copied {
  background: var(--c-blue);
  color: #fff;
}
.voucher-card--shipping .voucher-card__meta li::before { background: var(--c-blue); }

/* ===== Sections ===== */
.section { padding: var(--section-y) 0; }
.section + .section { padding-top: 0; }
.section--brands { padding: var(--section-y) 0 var(--s-9); }
.section--stats { padding: var(--s-9) 0; }
.section--cb { padding: var(--s-9) 0 var(--section-y); }
.section--featured { padding-top: var(--s-9); }

.section__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: var(--s-8);
  gap: var(--s-3);
  flex-wrap: wrap;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 0;
  text-transform: uppercase;
  color: var(--c-black);
  line-height: 1.2;
}
.section__sub {
  margin: var(--s-2) 0 0;
  color: var(--c-gray);
  font-size: 13px;
}
.section__dot { color: var(--c-red); margin: 0 var(--s-1); }
.section__more {
  color: var(--c-black);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  font-family: var(--font-head);
  letter-spacing: .02em;
  white-space: nowrap;
}
.section__more:hover { color: var(--c-red); }

/* ===== Brand cards ===== */
/* Horizontal scroll carousel — 4 cards visible, custom red scrollbar below */
.brand-scroll {
  position: relative;
  margin: 0 calc(-1 * var(--container-pad));
  padding: var(--s-2) var(--container-pad);
  overflow: hidden;
}
.brand-grid {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--container-pad);
  padding: var(--s-2) 0 var(--s-4);  /* extra padding-bottom for scrollbar room */
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--c-red) var(--c-gray-lightest);
}
/* WebKit scrollbar — slim red bar on light track */
.brand-grid::-webkit-scrollbar { height: 6px; }
.brand-grid::-webkit-scrollbar-track {
  background: var(--c-gray-lightest);
  border-radius: 3px;
  margin: 0 var(--container-pad);
}
.brand-grid::-webkit-scrollbar-thumb {
  background: var(--c-red);
  border-radius: 3px;
  transition: background .15s ease;
}
.brand-grid::-webkit-scrollbar-thumb:hover { background: var(--c-red-dark); }

.brand-grid > .brand-card {
  /* Fixed 4 cards visible per viewport */
  flex: 0 0 calc((100% - 3 * var(--s-4)) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

/* Drag-to-scroll cursor (only when content actually overflows) */
.brand-grid.is-draggable { cursor: grab; user-select: none; }
.brand-grid.is-dragging  { cursor: grabbing; scroll-snap-type: none; }
.brand-grid.is-draggable a { cursor: grab; }
.brand-grid.is-dragging a { pointer-events: none; }
/* Visual cue: subtle fade at right edge so users know there's more to scroll */
.brand-scroll::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 32px; height: 100%;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .3s ease;
}
.brand-scroll.is-overflowing::after { opacity: 1; }
.brand-card {
  display: grid;
  grid-template-rows: 80px 1fr 50px;
  background: #fff;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 2px 8px -2px rgba(17,17,17,.08), 0 4px 16px -8px rgba(17,17,17,.06);
  overflow: hidden;
  aspect-ratio: 1834 / 2406;
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -8px rgba(17,17,17,.18), 0 6px 14px -6px rgba(17,17,17,.1);
}

/* Header — compact, all cards align. Colors come from inline custom properties set per card. */
.brand-card__head {
  background: var(--brand-head-bg, #1A1A1A);
  color: var(--brand-head-text, #fff);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--s-2) var(--s-3);
  text-align: center;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}
.brand-card__head .brand-card__name { color: var(--brand-head-text, #fff); }
.brand-card__head .brand-card__sub  { color: var(--brand-head-text, #fff); opacity: .8; }
.brand-card__logo-img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-card__name {
  font-family: var(--font-head);
  font-weight: 900;
  margin: 0;
  font-size: 18px;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.brand-card__sub {
  display: block;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gray);
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.3;
}

/* Body — product photo dominates. Background tunable per card. */
.brand-card__body {
  padding: var(--s-4) var(--s-3) var(--s-3);
  background: var(--brand-body-bg, #fff);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 4px;
  min-height: 0;
  overflow: hidden;
}
.brand-card__tag {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 800; color: var(--c-black);
  margin: 0; letter-spacing: .06em; text-transform: uppercase;
  line-height: 1.3;
}
.brand-card__desc {
  font-family: var(--font-head);
  font-size: 10px; color: var(--c-gray); letter-spacing: .08em; margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}
.brand-card__image {
  width: 100%; flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
  padding: var(--s-2) 0 0;
  overflow: hidden;
}
.brand-card__image img { object-fit: contain; max-height: 100%; width: auto; max-width: 100%; }
.brand-card__image svg { max-height: 100%; width: auto; }

/* CTA — full-width bottom button with circular arrow. Background tunable per card. */
.brand-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--brand-cta-bg, #111);
  color: #fff;
  padding: 0 var(--s-4);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter .15s ease;
  height: 100%;
}
.brand-card__cta:hover { filter: brightness(1.15); color: #fff; }
.brand-card__cta span[aria-hidden] {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  font-size: 14px;
  transition: background .15s ease, transform .2s ease;
}
.brand-card__cta:hover span[aria-hidden] {
  background: rgba(255,255,255,.3);
  transform: translateX(2px);
}

.brand-card__head--has-logo .brand-card__logo-img { max-height: 56px; }

/* ----- FULL-IMAGE VARIANT — modern hover-reveal CTA -----
   Aspect ratio locked to 1834:2406 → image fills card with no crop.
   CTA at rest = small brand-colored arrow circle bottom-right.
   On hover = pill morphs left to reveal "LIHAT PRODUK" label.
*/
.brand-card--image {
  display: block;
  grid-template-rows: none;
  padding: 0;
  background: var(--brand-head-bg, #1A1A1A);
  position: relative;
  isolation: isolate;
  /* aspect-ratio inherited from .brand-card base (1834/2406) */
}
.brand-card--image .brand-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.brand-card--image .brand-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--brand-head-bg, #1A1A1A);
}
.brand-card--image .brand-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(.2,.7,.3,1), filter .35s ease;
}
.brand-card--image:hover .brand-card__media img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

/* Subtle gradient shade behind chip — only visible on hover for chip legibility */
.brand-card__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .35s ease;
}
.brand-card--image:hover .brand-card__shade { opacity: 1; }

/* Floating chip — circle at rest, morphs to pill on hover */
.brand-card__chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: var(--brand-cta-bg, var(--c-red));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px -6px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.18) inset;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: padding .4s cubic-bezier(.2,.7,.3,1),
              gap .4s cubic-bezier(.2,.7,.3,1),
              box-shadow .25s ease,
              transform .25s ease;
}
.brand-card__chip-label {
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  transition: max-width .4s cubic-bezier(.2,.7,.3,1), opacity .25s ease, padding-left .4s ease;
}
.brand-card__chip-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
/* Hover state — pill expands left to reveal label */
@media (hover: hover) {
  .brand-card--image:hover .brand-card__chip {
    padding-left: 18px;
    gap: 0;
    transform: translateX(0);
    box-shadow: 0 14px 30px -6px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.22) inset;
  }
  .brand-card--image:hover .brand-card__chip-label {
    max-width: 200px;
    opacity: 1;
    padding-left: 4px;
  }
  .brand-card--image:hover .brand-card__chip-arrow {
    transform: translateX(2px) rotate(-4deg);
  }
}
/* Touch devices — always show full pill (no hover to reveal) */
@media (hover: none) {
  .brand-card__chip { padding-left: 18px; }
  .brand-card__chip-label { max-width: 200px; opacity: 1; padding-left: 4px; }
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stats li {
  display: flex; align-items: center; justify-content: center; gap: var(--s-4);
  padding: var(--s-6) var(--s-5);
  min-width: 0;
  position: relative;
}
.stats li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--c-gray-light);
}
.stats__icon {
  width: 56px; height: 56px;
  background: var(--c-red-soft);
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-red);
  flex-shrink: 0;
}
.stats__icon svg {
  display: block;
  width: 28px; height: 28px;
  stroke: var(--c-red);
  stroke-width: 1.8;
  fill: none;
}
.stats > li > div { min-width: 0; flex: 0 1 auto; display: flex; flex-direction: column; gap: 2px; }
.stats strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--c-black);
  display: block;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Scope to the label span only — NOT .stats__icon (also a span), which must stay flex-centered */
.stats > li > div > span {
  color: var(--c-black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--font-head);
  display: block;
}
.stats small {
  color: var(--c-gray);
  font-weight: 400;
  font-size: 12px;
  font-family: var(--font-body);
  display: block;
  line-height: 1.4;
}

/* ===== Marketplace ===== */
/* ===== Cara Berbelanja (replaces old marketplace block) ===== */
.cb {
  background: var(--c-gray-lightest);
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 4vw, 48px);
}
.cb__top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.cb__intro { min-width: 0; }
.cb__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: var(--s-2) 0 var(--s-4);
  color: var(--c-black);
}
.cb__title .mm-accent { color: var(--c-red); }
.cb__lead {
  color: var(--c-gray);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 0 var(--s-6);
}
.cb__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); }
.cb__btn { display: inline-flex; align-items: center; gap: 8px; }
.cb__btn svg { flex: 0 0 auto; }
.cb__btn--outline {
  background: #fff;
  color: var(--c-red);
  border: 2px solid var(--c-red);
}
.cb__btn--outline:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); transform: translateY(-1px); box-shadow: var(--shadow-md); }
/* 5 langkah — full-width row below the intro/mockup */
.cb__process { margin-top: clamp(28px, 4vw, 48px); }
.cb__steps-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--c-black);
  margin: 0 0 var(--s-5);
}
.cb__steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-4);
}
.cb__step {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cb__step:hover {
  transform: translateY(-4px);
  border-color: rgba(227,30,36,.35);
  box-shadow: 0 16px 30px -16px rgba(227,30,36,.4);
}
.cb__step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-2);
}
.cb__step-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--c-red-soft);
  color: var(--c-red);
  display: inline-flex; align-items: center; justify-content: center;
}
.cb__step-icon svg { width: 24px; height: 24px; }
.cb__step-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: rgba(227,30,36,.18);   /* big on-brand faded numeral */
}
.cb__step-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  color: var(--c-black);
}
.cb__step-text {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-gray);
}
.cb__media { display: flex; align-items: center; justify-content: center; min-width: 0; }
.cb__media img { width: 100%; height: auto; max-height: 470px; object-fit: contain; display: block; }
.cb__media-ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--c-gray-light);
  border-radius: var(--radius-lg);
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s-3);
  color: #aeb4be;
  text-align: center;
  padding: var(--s-5);
}
.cb__media-ph span { font-size: 13px; font-weight: 600; max-width: 240px; line-height: 1.4; }
.cb__features {
  list-style: none;
  margin: clamp(24px, 3vw, 40px) 0 0;
  padding: clamp(20px, 2.5vw, 30px) 0 0;
  border-top: 1px solid var(--c-gray-light);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-5) var(--s-6);
}
.cb__feature { display: flex; align-items: flex-start; gap: var(--s-3); }
.cb__feature-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--c-gray-light);
  color: var(--c-red);
  display: flex; align-items: center; justify-content: center;
}
.cb__feature-body { min-width: 0; }
.cb__feature-body strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-black);
  margin-bottom: 2px;
}
.cb__feature-body span { display: block; font-size: 12.5px; line-height: 1.45; color: var(--c-gray); }
@media (max-width: 1024px) {
  .cb__top { grid-template-columns: 1fr; gap: var(--s-7); }
  .cb__media { order: -1; }
  .cb__media img { max-height: 380px; }
  .cb__steps { grid-template-columns: repeat(3, 1fr); }
  .cb__features { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .cb__steps { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .cb__features { grid-template-columns: 1fr 1fr; }
  .cb__actions .cb__btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 480px) {
  .cb__steps { grid-template-columns: 1fr; }
  .cb__features { grid-template-columns: 1fr; }
  .cb__title { font-size: 1.7rem; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--c-black);
  color: rgba(255,255,255,.85);
  padding-top: var(--s-9);
}

/* TOP row — brand on left, social/marketplace strip on right */
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: var(--s-8);
  align-items: start;
}
.site-footer__brand { max-width: 460px; }
.site-footer__logo {
  display: inline-flex; align-items: center; gap: var(--s-3); text-decoration: none;
  color: #fff;
  margin-bottom: var(--s-4);
}
.site-footer__logo-pill {
  display: inline-flex; align-items: center;
  background: #fff;
  padding: 10px var(--s-4);
  border-radius: var(--radius-md);
  max-width: 100%;
}
.site-footer__logo-pill img {
  display: block; width: auto; height: auto;
  max-height: 44px; max-width: 200px;
  object-fit: contain;
}
.brand-text--footer .brand-name { color: #fff; }
.brand-text--footer .brand-tagline { color: rgba(255,255,255,.6); }
.site-footer__about { color: rgba(255,255,255,.7); font-size: 13.5px; line-height: 1.7; margin: 0; max-width: 420px; }

/* Connect strip (social + marketplace) — right side of top row */
.site-footer__connect {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-8);
  align-items: start;
  justify-content: end;
  justify-self: end;
}
.site-footer__connect-block { display: flex; flex-direction: column; gap: var(--s-3); }
.site-footer__connect-label {
  font-family: var(--font-head);
  font-size: 11px; color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}

.site-footer__social { display: flex; gap: var(--s-2); }
.site-footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all .15s ease;
}
.site-footer__social a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  transform: translateY(-2px);
}

.site-footer__marketplaces-list { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.mp {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 12px; font-weight: 700; text-decoration: none;
  letter-spacing: .03em;
  transition: transform .15s ease, box-shadow .15s ease;
}
.mp:hover { transform: translateY(-2px); box-shadow: 0 6px 14px -4px rgba(0,0,0,.4); }
.mp svg { flex-shrink: 0; }
.mp--shopee { background: #EE4D2D; color: #fff; }
.mp--shopee:hover { background: #D2421F; color: #fff; }
.mp--tokopedia { background: #03AC0E; color: #fff; }
.mp--tokopedia:hover { background: #028A0C; color: #fff; }
.mp--lazada { background: #0F1A6C; color: #fff; }
.mp--lazada:hover { background: #091248; color: #fff; }
.mp--blibli { background: #0095DA; color: #fff; }
.mp--blibli:hover { background: #007CB0; color: #fff; }
.mp--bukalapak { background: #E31E52; color: #fff; }
.mp--bukalapak:hover { background: #B11942; color: #fff; }
.mp--tiktokshop { background: #000; color: #fff; border: 1px solid rgba(255,255,255,.15); }
.mp--tiktokshop:hover { background: #1A1A1A; color: #fff; }

/* App store badges */
.site-footer__apps { margin-top: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.site-footer__apps-list { display: flex; gap: var(--s-2); flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background .15s ease, transform .15s ease;
}
.app-badge:hover { background: rgba(255,255,255,.12); color: #fff; transform: translateY(-1px); }

/* WhatsApp contact icon — green tint */
.site-footer__contact-icon--wa { background: #25D366; }

/* MIDDLE — link columns + contact */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
}
.site-footer__heading {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  color: #fff;
  margin: 0 0 var(--s-4);
  text-transform: uppercase;
  position: relative;
  padding-bottom: var(--s-3);
}
.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}
.site-footer__links { display: flex; flex-direction: column; gap: var(--s-3); }
.site-footer__links a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
  display: inline-block;
}
.site-footer__links a:hover { color: #fff; transform: translateX(2px); }

.site-footer__links--icon li {
  display: flex; gap: var(--s-3); align-items: flex-start;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.55;
}
.site-footer__contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-red);
  border-radius: 6px;
  flex-shrink: 0;
  color: #fff;
}
.site-footer__links--icon a { color: rgba(255,255,255,.85); }
.site-footer__links--icon a:hover { color: #fff; transform: none; }

/* BOTTOM bar — copyright + quick links */
/* Payment + shipping logos — each logo on its OWN white chip, on the dark
   footer (own class to avoid the checkout .mm-pay collision) */
.site-footer__trust {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--s-7) 0;
}
.mm-fpay { display: flex; flex-direction: column; gap: var(--s-6); }
.mm-fpay__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);        /* white label on the dark footer */
  margin: 0 0 var(--s-4);
  padding-bottom: 8px;
  position: relative;
}
.mm-fpay__label::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}
.mm-fpay__grid { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.mm-fpay__tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 44px;
  padding: 5px 10px;
  background: #fff;                    /* per-logo white chip */
  border-radius: 7px;
  box-shadow: 0 3px 10px -4px rgba(0,0,0,.45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.mm-fpay__tile:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -6px rgba(0,0,0,.55); }
.mm-fpay__tile img {
  max-height: 20px;
  max-width: 68px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-footer__trust { padding: var(--s-6) 0; }
  .mm-fpay { gap: var(--s-5); }
  .mm-fpay__tile { height: 30px; min-width: 38px; padding: 4px 8px; }
  .mm-fpay__tile img { max-height: 18px; max-width: 58px; }
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--s-4) 0;
  background: rgba(0,0,0,.6);
}
.site-footer__bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  gap: var(--s-5);
  flex-wrap: wrap;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom p strong { color: rgba(255,255,255,.85); font-weight: 600; }
.site-footer__bottom-links { display: flex; gap: var(--s-5); flex-wrap: wrap; }
.site-footer__bottom-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 12px;
  transition: color .15s ease;
}
.site-footer__bottom-links a:hover { color: #fff; }

/* ===== Generic content pages ===== */
.content-wrap { padding: var(--s-9) 0 var(--s-12); }
.page-header { margin-bottom: var(--s-7); }
.page-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 0; }
.page-thumb { margin-bottom: var(--s-7); border-radius: var(--radius-lg); overflow: hidden; }
.entry-content { line-height: 1.75; color: var(--c-black); font-size: 16px; }
.entry-content h2 { font-size: 1.4rem; margin-top: 1.7em; }
.entry-content h3 { font-size: 1.2rem; margin-top: 1.4em; }
.entry-content p { margin-bottom: 1.1em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.1em 1.4em; }
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content img { border-radius: var(--radius-md); }
.entry-content a { color: var(--c-red); }
.entry-content a:hover { text-decoration: underline; }

/* ============================================================
   SINGLE POST (mm-post) — magazine-style article layout
   ============================================================ */
.mm-post__hero {
  padding: var(--s-11) 0 var(--s-6);
  background: linear-gradient(180deg, var(--c-gray-lightest) 0%, #fff 100%);
  text-align: center;
}
.mm-post__hero-inner { max-width: 820px; margin: 0 auto; }
.mm-post__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .03em; color: var(--c-gray);
  margin-bottom: var(--s-6); transition: color .15s ease, gap .2s ease;
}
.mm-post__back:hover { color: var(--c-red); gap: 12px; }
.mm-post__cat {
  display: inline-block; background: var(--c-red); color: #fff;
  padding: 5px 12px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s-4);
}
.mm-post__title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.12;
  letter-spacing: -.02em; margin: 0 0 var(--s-5); color: var(--c-black);
}
.mm-post__meta {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: var(--s-3); font-family: var(--font-head); font-weight: 600;
  font-size: 13px; color: var(--c-gray);
}
.mm-post__author { display: inline-flex; align-items: center; gap: 8px; }
.mm-post__avatar { border-radius: 50%; display: block; }
.mm-post__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-gray); opacity: .55; }

.mm-post__thumb {
  margin: var(--s-8) auto 0; max-width: 1000px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.mm-post__thumb img { width: 100%; height: auto; display: block; }

.mm-post__body { max-width: 760px; margin: 0 auto; padding: var(--s-9) 0 var(--s-6); }

/* Rich typography for the article body */
.mm-post .entry-content { font-size: 17px; line-height: 1.8; color: #2b2b2b; }
.mm-post .entry-content > p:first-of-type { font-size: 19px; line-height: 1.7; color: var(--c-black); }
.mm-post .entry-content p { margin: 0 0 1.3em; }
.mm-post .entry-content h2 {
  font-family: var(--font-head); font-weight: 800; color: var(--c-black);
  font-size: 1.55rem; line-height: 1.25; letter-spacing: -.01em; margin: 1.8em 0 .55em;
}
.mm-post .entry-content h3 {
  font-family: var(--font-head); font-weight: 800; color: var(--c-black);
  font-size: 1.25rem; margin: 1.5em 0 .5em;
}
.mm-post .entry-content ul, .mm-post .entry-content ol { margin: 0 0 1.3em 1.4em; }
.mm-post .entry-content li { margin-bottom: .5em; }
.mm-post .entry-content img,
.mm-post .entry-content figure { margin: var(--s-6) 0; }
.mm-post .entry-content figure { text-align: center; }
.mm-post .entry-content figcaption { font-size: 13px; color: var(--c-gray); margin-top: var(--s-2); }
.mm-post .entry-content blockquote {
  margin: var(--s-6) 0; padding: var(--s-4) var(--s-6);
  border-left: 4px solid var(--c-red); background: var(--c-gray-lightest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px; font-style: italic; color: var(--c-black);
}
.mm-post .entry-content blockquote p:last-child { margin-bottom: 0; }
.mm-post .entry-content a { color: var(--c-red); text-decoration: underline; text-underline-offset: 3px; }
.mm-post .entry-content hr { border: 0; border-top: 1px solid var(--c-gray-light); margin: var(--s-7) 0; }

/* Tags + share row */
.mm-post__tagrow, .mm-post__share {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-3);
  margin-top: var(--s-6); padding-top: var(--s-6);
  border-top: 1px solid var(--c-gray-light);
}
.mm-post__share { border-top: 0; padding-top: 0; margin-top: var(--s-4); }
.mm-post__row-label {
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-black);
}
.mm-post__tags { display: inline-flex; flex-wrap: wrap; gap: var(--s-2); }
.mm-post__tags li { list-style: none; }
.mm-post__tags a {
  display: inline-block; padding: 5px 13px; border-radius: 100px;
  background: var(--c-gray-lightest); border: 1px solid var(--c-gray-light);
  font-size: 12px; font-weight: 600; color: var(--c-gray); transition: all .15s ease;
}
.mm-post__tags a:hover { background: var(--c-red); border-color: var(--c-red); color: #fff; }
.mm-post__share-links { display: inline-flex; gap: var(--s-2); }
.mm-post__share-links a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-gray-lightest); border: 1px solid var(--c-gray-light);
  color: var(--c-black); transition: all .15s ease;
}
.mm-post__share-links a:hover { background: var(--c-red); border-color: var(--c-red); color: #fff; transform: translateY(-2px); }

/* Related posts */
.mm-post__related { background: var(--c-gray-lightest); }

/* ============================================================
   COMMENTS
   ============================================================ */
.mm-post__comments { max-width: 760px; margin: 0 auto; padding-bottom: var(--s-6); }
.comments-area { margin-top: var(--s-4); }
.comments-title, .comment-reply-title {
  font-family: var(--font-head); font-weight: 800; color: var(--c-black);
  font-size: 22px; letter-spacing: -.01em; margin: 0 0 var(--s-6);
}
.comment-list { margin: 0 0 var(--s-8); display: flex; flex-direction: column; gap: var(--s-5); }
.comment-list .children { margin: var(--s-5) 0 0 var(--s-6); display: flex; flex-direction: column; gap: var(--s-5); border-left: 2px solid var(--c-gray-light); padding-left: var(--s-5); }
.comment-body {
  background: #fff; border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-md); padding: var(--s-5) var(--s-6);
}
.comment-meta { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-3); }
.comment-author { display: inline-flex; align-items: center; gap: 10px; }
.comment-author .avatar { border-radius: 50%; }
.comment-author .fn { font-family: var(--font-head); font-weight: 700; font-style: normal; color: var(--c-black); font-size: 14px; }
.comment-author .says { display: none; }
.comment-metadata { font-size: 12px; color: var(--c-gray); }
.comment-metadata a { color: var(--c-gray); }
.comment-content { font-size: 15px; line-height: 1.7; color: #2b2b2b; }
.comment-content p { margin: 0 0 .8em; }
.comment-content p:last-child { margin-bottom: 0; }
.reply { margin-top: var(--s-3); }
.comment-reply-link {
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--c-red);
}
.comment-reply-link:hover { color: var(--c-red-dark); }
.no-comments { color: var(--c-gray); font-size: 14px; }

/* Comment form */
.comment-respond {
  background: var(--c-gray-lightest); border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg); padding: var(--s-7);
}
.comment-respond .comment-reply-title small { margin-left: var(--s-2); font-weight: 600; font-size: 13px; }
.comment-notes, .comment-form-cookies-consent label { font-size: 13px; color: var(--c-gray); }
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); margin-top: var(--s-5); }
.comment-form p { margin: 0; }
.comment-form-comment, .comment-form-url, .comment-notes,
.comment-form-cookies-consent, .form-submit { grid-column: 1 / -1; }
.comment-form label {
  display: block; margin-bottom: 6px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--c-black);
}
.comment-form input[type="text"], .comment-form input[type="email"],
.comment-form input[type="url"], .comment-form textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px;
  background: #fff; border: 1px solid var(--c-gray-light); border-radius: var(--radius-md);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.comment-form input:focus, .comment-form textarea:focus {
  outline: none; border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(227,30,36,.12);
}
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; }
.comment-form-cookies-consent input { margin: 0; }
.form-submit { margin: 0; }
.form-submit .submit {
  background: var(--c-red); color: #fff; border: 0; cursor: pointer;
  padding: 13px 30px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .03em; transition: background .15s ease, transform .15s ease;
}
.form-submit .submit:hover { background: var(--c-red-dark); transform: translateY(-1px); }

/* Honeypot field — hidden from humans, bots tend to fill it */
.mm-hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.post-card {
  background: #fff; border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .15s ease, transform .15s ease;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card__thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: var(--s-5) var(--s-5) var(--s-6); }
.post-card__title { font-family: var(--font-head); font-size: 17px; margin: 0 0 var(--s-2); font-weight: 700; line-height: 1.3; }
.post-card__title a { color: var(--c-black); text-decoration: none; }
.post-card__title a:hover { color: var(--c-red); }
.post-card__meta { color: var(--c-gray); font-size: 12px; margin: 0 0 var(--s-3); }
.post-card__excerpt { color: var(--c-black); font-size: 14px; line-height: 1.6; }
.post-card__more { display: inline-block; margin-top: var(--s-3); font-weight: 700; font-size: 13px; color: var(--c-red); font-family: var(--font-head); }

.pagination, .woocommerce-pagination {
  display: flex; gap: var(--s-2); justify-content: center; margin-top: var(--s-8); flex-wrap: wrap;
}
.pagination .page-numbers,
.woocommerce-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 var(--s-3);
  background: #fff; border: 1px solid var(--c-gray-light);
  border-radius: 8px; font-family: var(--font-head); font-weight: 700; font-size: 13px;
  color: var(--c-black); text-decoration: none;
}
.pagination .page-numbers.current,
.woocommerce-pagination .page-numbers.current {
  background: var(--c-red); color: #fff; border-color: var(--c-red);
}

.not-found { text-align: center; padding: var(--s-12) 0; }
.not-found__code { font-family: var(--font-head); font-size: 6rem; color: var(--c-red); margin: 0; line-height: 1; font-weight: 900; }
.not-found__title { margin: var(--s-2) 0 var(--s-4); }
.not-found__search { max-width: 480px; margin: var(--s-6) auto 0; }

/* ===== WooCommerce ===== */
.shop-wrap { padding: var(--s-8) 0 var(--s-12); }
.woocommerce-products-header__title { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: var(--s-6); font-weight: 800; }
.woocommerce ul.products,
.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: var(--s-6);
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product,
.products li.product {
  width: auto !important;
  margin: 0 !important;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: var(--s-4) !important;
  transition: box-shadow .15s ease, transform .15s ease;
  list-style: none;
}
.woocommerce ul.products li.product:hover,
.products li.product:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.woocommerce ul.products li.product a img,
.products li.product a img {
  border-radius: var(--radius-md);
  margin-bottom: var(--s-3);
  aspect-ratio: 1/1; object-fit: contain;
  background: var(--c-gray-lightest);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-head);
  font-size: 14px !important; padding: 0 !important; margin: 0 0 var(--s-2) !important;
  color: var(--c-black);
  font-weight: 700;
  line-height: 1.4;
}
.woocommerce ul.products li.product .price,
.products li.product .price {
  color: var(--c-red) !important;
  font-family: var(--font-head);
  font-size: 15px !important;
  font-weight: 800;
  display: block;
  margin-bottom: var(--s-3);
}
.woocommerce ul.products li.product .price del { color: var(--c-gray) !important; font-size: 12px; font-weight: 500; opacity: .7; }
.woocommerce ul.products li.product .button,
.products li.product .button {
  background: var(--c-red) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px var(--s-3) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  margin-top: var(--s-1) !important;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.woocommerce ul.products li.product .button:hover { background: var(--c-red-dark) !important; }

.woocommerce span.onsale {
  background: var(--c-red) !important;
  color: #fff !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  min-height: auto !important;
  min-width: auto !important;
  top: var(--s-4) !important;
  left: var(--s-4) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.woocommerce div.product .product_title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--c-red); font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--c-red);
  color: #fff;
  border-radius: 8px;
  padding: 12px var(--s-6);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover { background: var(--c-red-dark); }

/* WooCommerce notices — fix icon overlap with flex layout */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 3px solid var(--c-red);
  background: var(--c-red-soft);
  border-radius: var(--radius-md);
  padding: var(--s-3) var(--s-4);
  list-style: none;
  margin: 0 0 var(--s-4);
  color: var(--c-black);
  font-size: 14px;
  line-height: 1.5;
}
.woocommerce-info { border-top-color: var(--c-blue); background: var(--c-blue-soft); }
.woocommerce-error { border-top-color: #b32d2e; background: #fef2f2; }

/* Override WC's absolutely-positioned ::before icon — make it inline in the flex */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  position: static !important;
  top: auto !important;
  left: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--c-red);
}
.woocommerce-info::before  { color: var(--c-blue); }
.woocommerce-error::before { color: #b32d2e; }

/* "Undo?" / button-like links inside notices */
.woocommerce-message .button,
.woocommerce-message a.button,
.woocommerce-message .restore-item,
.woocommerce-info .button,
.woocommerce-error .button {
  margin-left: auto;
  padding: 6px 12px;
  font-size: 12px;
  background: #fff;
  color: var(--c-red);
  border: 1px solid var(--c-red);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
}
.woocommerce-message .button:hover,
.woocommerce-message a.button:hover,
.woocommerce-message .restore-item:hover { background: var(--c-red); color: #fff; }

/* Plain inline restore link (e.g. "Undo?") */
.woocommerce-message a:not(.button) {
  color: var(--c-red);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 4px;
}
.woocommerce-message a:not(.button):hover { color: var(--c-red-dark); }

.woocommerce table.shop_table {
  border-radius: var(--radius-md); overflow: hidden; border-collapse: separate;
}
.woocommerce table.shop_table th { background: var(--c-gray-lightest); font-family: var(--font-head); }

.search-form { display: flex; gap: var(--s-2); }
.search-form input.search-field {
  flex: 1; padding: 12px var(--s-4); border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-md); font-family: inherit; font-size: 14px;
}
.search-form input.search-field:focus { outline: none; border-color: var(--c-red); }

/* Image helpers */
.hero__visual--has-image { background: rgba(255,255,255,.04); border-radius: var(--radius-xl); padding: var(--s-4); }
.brand-card__image--has-image img { width: 100%; }

/* ============================================================
   Responsive breakpoints
   - 1200px : large tablet / small laptop
   - 1024px : tablet landscape
   - 768px  : tablet portrait & mobile
   - 480px  : small phone
   ============================================================ */

@media (max-width: 1200px) {
  :root { --container-pad: 28px; --section-y: 72px; }
  .header-inner { gap: var(--s-6); }
  .hero__inner { gap: var(--s-9); padding-top: var(--s-12); padding-bottom: var(--s-10); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats li { padding: var(--s-5) var(--s-5); }
  .stats li + li::before { display: none; }
  .stats li:nth-child(2)::before,
  .stats li:nth-child(4)::before {
    content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 1px; background: var(--c-gray-light); display: block;
  }
  .stats li:nth-child(3)::after,
  .stats li:nth-child(4)::after {
    content: ""; position: absolute; left: 5%; right: 5%; top: 0;
    height: 1px; background: var(--c-gray-light);
  }
  .stats strong { font-size: 1.375rem; }
}

@media (max-width: 1024px) {
  :root { --container-pad: 24px; --section-y: 64px; }
  .brand-grid > .brand-card { flex: 0 0 calc((100% - 2 * var(--s-4)) / 3); }   /* tablet: 3 visible */
  .header-inner {
    grid-template-columns: auto 1fr;
    row-gap: var(--s-3);
    padding-top: var(--s-3); padding-bottom: var(--s-3);
    gap: var(--s-5);
  }
  .header-search {
    grid-column: 1 / -1;
    order: 3;
    max-width: none;
    margin: 0;
  }
  .header-action__label { display: none; }
  .header-actions { gap: var(--s-5); }
  .header-action__badge { left: 16px; top: -4px; }

  .hero { padding-bottom: var(--s-9); }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: var(--s-10); padding-bottom: var(--s-9);
    gap: var(--s-6);
  }
  .hero__visual { min-height: auto; }
  .hero__products { display: none; }
  .hero__visual--has-image { padding: var(--s-2); margin-top: var(--s-3); }
  .hero__lead { font-size: 15px; }

  .trustbar { grid-template-columns: repeat(2, 1fr); padding: var(--s-5); gap: var(--s-4); }
  .trustbar li + li { border-left: 0; padding-left: 0; }
  .trustbar li { font-size: 12px; padding: var(--s-1) 0; }

  .voucher-card { width: 320px; grid-template-columns: 110px 1fr; }
  .voucher-card__main { font-size: 22px; }
  .voucher-card__main--small { font-size: 12px; }
  .vouchers { padding: var(--s-8) 0; }

  .section__header { margin-bottom: var(--s-6); }
  .post-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .site-footer__top { grid-template-columns: 1fr; gap: var(--s-6); }
  .site-footer__connect { justify-self: start; gap: var(--s-7); }
  .site-footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: var(--s-5); }
  .site-footer__contact { grid-column: 1 / -1; }
  .site-footer__contact .site-footer__links--icon { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-3); }

  .woocommerce ul.products,
  .products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  :root { --container-pad: 16px; --section-y: 48px; }

  /* Hero slider — mobile: stack slider + 2 promo banner side-by-side */
  .hero-slider { padding-bottom: var(--s-6); }                  /* trim big red void below trustbar */
  .hero-slider__container { padding-top: var(--s-5); padding-bottom: 0; }
  .hero-slider__viewport { border-radius: var(--radius-md); max-height: none; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .hero-grid__side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .hero-promo { border-radius: var(--radius-md); aspect-ratio: 16 / 9; }
  /* News ticker — mobile: full width below slider with a fixed scroll height */
  .hero-grid__side--news { height: 340px; }
  .hero-news { border-radius: var(--radius-md); }
  /* Overlay — mobile: compact, bottom-anchored, strong bottom gradient for readability */
  .hero-slider__overlay {
    padding: var(--s-5) var(--s-4) var(--s-8);
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.85) 100%);
  }
  .hero-slider__overlay-inner { max-width: 100%; }
  .hero-slider__overlay-eyebrow { font-size: 9px; padding: 3px 9px; margin-bottom: 8px; letter-spacing: .16em; }
  .hero-slider__overlay-title {
    font-size: 19px; line-height: 1.12; margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .hero-slider__overlay-sub { display: none; }              /* too cramped on a 16:9 mobile slide */
  .hero-slider__overlay-actions { gap: 8px; }
  .hero-slider__overlay-cta { padding: 9px 15px; font-size: 12px; }
  .hero-slider__overlay-cta svg { width: 13px; height: 13px; }

  /* Promo overlays — mobile: bottom-anchored, compact */
  .hero-promo__overlay {
    padding: var(--s-3);
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.82) 100%);
  }
  .hero-promo__eyebrow { font-size: 8px; margin-bottom: 2px; }
  .hero-promo__title { font-size: 12px; line-height: 1.1; max-width: 100%; }
  .hero-promo__sub { display: none; }
  .hero-promo__cta { font-size: 10px; }

  /* Hide nav arrows on mobile — rely on swipe + dots */
  .hero-slider__nav { display: none; }
  .hero-slider__dots { bottom: var(--s-2); padding: 5px 9px; }
  .hero-slider__dot { width: 6px; height: 6px; }
  .hero-slider__dot.is-active { width: 18px; }

  /* Announcement bar — emoji + text inline, no awkward wrap, CTA hidden on mobile */
  .announcement-bar__inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px var(--container-pad);
  }
  .announcement-bar__icon { font-size: 13px; flex-shrink: 0; line-height: 1; }
  .announcement-bar__text {
    font-size: 11px;
    line-height: 1.35;
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .announcement-bar__cta {
    display: none;
  }

  /* Header layout on mobile — only TOP BAR is sticky (via .site-header).
     Search row sits OUTSIDE .site-header (sibling), so it scrolls normally. */
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--s-3);
    align-items: center;
    padding-top: var(--s-3);
    padding-bottom: var(--s-3);
  }
  .header-inner > .primary-nav__toggle { order: 1; }
  .header-inner > .site-branding      { order: 2; justify-self: start; }
  .header-inner > .header-actions     { order: 3; gap: var(--s-2); }
  /* Hide desktop search inside header-inner on mobile */
  .header-inner > .header-search--desktop { display: none; }

  /* Mobile search row — sibling of .site-header, NOT sticky */
  .site-header__search-row {
    display: block;
    background: #fff;
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--c-gray-light);
  }
  .header-search--mobile { width: 100%; max-width: none; }

  .site-branding, .site-branding .custom-logo-link { max-width: 100%; }
  .brand-tagline { display: none; }
  .brand-name { font-size: 14px; }
  .header-action { gap: 0; padding: 6px; }
  .header-action__label { display: none; }
  .header-action__badge { left: 22px; top: -2px; }
  .custom-logo-link img, img.custom-logo { height: 32px !important; max-height: 32px !important; max-width: 140px !important; width: auto !important; }
  .site-footer__logo-pill { padding: var(--s-2) var(--s-3); }
  .site-footer__logo-pill img { max-height: 38px; max-width: 160px; }

  /* Hamburger button — compact, minimal */
  .primary-nav__toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0;
    transition: background .15s ease;
  }
  .primary-nav__toggle:hover,
  .primary-nav.is-open .primary-nav__toggle,
  .primary-nav__toggle[aria-expanded="true"] { background: var(--c-gray-lightest); }
  .primary-nav__toggle .primary-nav__hamburger,
  .primary-nav__toggle .primary-nav__hamburger::before,
  .primary-nav__toggle .primary-nav__hamburger::after { width: 18px; }

  /* The standalone primary-nav row collapses on mobile — menu pops out absolute */
  .primary-nav {
    border-bottom: none;
    box-shadow: none;
    background: transparent;
    position: relative;
  }
  .primary-nav__inner {
    position: static;
    padding: 0 !important;
    min-height: 0;
  }

  .primary-menu {
    display: none;
    position: fixed;
    top: var(--mm-header-h, 60px);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: var(--s-2) 0;
    border-bottom: 1px solid var(--c-gray-light);
    box-shadow: var(--shadow-md);
    z-index: 49;
    max-height: calc(100vh - var(--mm-header-h, 60px));
    overflow-y: auto;
  }
  .primary-menu li { width: 100%; }
  .primary-menu li a { display: block; padding: 14px var(--s-5); border-bottom: 1px solid var(--c-gray-lighter); }
  .primary-menu .current-menu-item > a::after,
  .primary-menu .current_page_item > a::after { display: none; }
  .primary-nav.is-open .primary-menu { display: flex; }

  .hero { padding-bottom: var(--s-7); }
  .hero__inner { padding-top: var(--s-8); padding-bottom: var(--s-8); gap: var(--s-5); }
  .hero__eyebrow { font-size: 10px; padding: var(--s-2) var(--s-4); letter-spacing: .16em; gap: var(--s-2); margin-bottom: var(--s-5); }
  .hero__title { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: var(--s-4); }
  .hero__lead { font-size: 14px; margin-bottom: var(--s-5); }
  .hero__cta .btn { padding: 12px 20px; font-size: 12px; flex: 1; justify-content: center; min-width: 140px; }

  /* Trustbar — clean 2×2 grid on mobile (4 items) */
  .trustbar {
    grid-template-columns: 1fr 1fr;
    padding: var(--s-4) var(--s-3);
    gap: var(--s-3) var(--s-2);
    margin-top: var(--s-4);
    overflow: visible;
    border-radius: var(--radius-md);
  }
  .trustbar li {
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 4px 2px;
    border-left: none !important;
    border-bottom: none !important;
  }
  .trustbar__icon {
    width: 34px; height: 34px;
    background: var(--c-red-soft);
    flex-shrink: 0;
  }
  .trustbar__icon svg { width: 16px; height: 16px; }
  .trustbar__text { gap: 1px; line-height: 1.25; min-width: 0; }
  .trustbar__text strong { font-size: 12px; letter-spacing: -.01em; white-space: nowrap; }
  .trustbar__text { font-size: 10.5px; color: var(--c-gray); }

  .vouchers { padding: var(--s-7) 0; }
  .vouchers__header { flex-direction: column; align-items: flex-start; gap: var(--s-2); margin-bottom: var(--s-5); }
  .vouchers__title { font-size: 1.125rem; }
  .vouchers__hint { font-size: 12.5px; line-height: 1.45; }
  .vouchers__hint::after { display: none; }   /* hide floating red arrow on mobile — text already says "geser ke samping" */

  .voucher-card { width: 300px; grid-template-columns: 100px 1fr; }
  .voucher-card__left { padding: var(--s-3) var(--s-2); }
  .voucher-card__left::before { box-shadow: 0 -30px 0 var(--c-gray-lightest), 0 30px 0 var(--c-gray-lightest); }
  .voucher-card__main { font-size: 20px; }
  .voucher-card__main--small { font-size: 11px; }
  .voucher-card__label { font-size: 8px; }
  .voucher-card__prefix { font-size: 9px; }
  .voucher-card__shipping-icon { width: 34px; height: 34px; }
  .voucher-card__right { padding: var(--s-3) var(--s-3) var(--s-3) var(--s-4); gap: var(--s-2); }
  .voucher-card__headline { font-size: 12px; -webkit-line-clamp: 2; }
  .voucher-card__meta { font-size: 10px; }
  .voucher-card__code { font-size: 11px; padding: 7px 5px; letter-spacing: .02em; }
  .voucher-card__copy { padding: 7px 11px; font-size: 10px; }

  .section { padding: var(--section-y) 0; }
  .section--brands, .section--cb { padding: var(--section-y) 0; }
  .section__title { font-size: 1.25rem; }
  .section__header { margin-bottom: var(--s-5); gap: var(--s-2); }
  .section__more { font-size: 12px; }

  .brand-grid > .brand-card { flex: 0 0 75vw; min-width: 0; max-width: 280px; }   /* mobile: fixed wide for swipe */
  .brand-grid { gap: var(--s-3); }
  .brand-card { grid-template-rows: 76px 1fr 46px; }
  .brand-card__head { padding: var(--s-2) var(--s-3); }
  .brand-card__logo-img { max-height: 46px; }
  .brand-card__name { font-size: 15px; }
  .brand-card__sub { font-size: 9px; }
  .brand-card__body { padding: var(--s-3); min-height: 200px; }
  .brand-card__tag { font-size: 11px; }
  .brand-card__desc { font-size: 9px; }
  .brand-card__image { min-height: 120px; }
  .brand-card__cta { padding: 0 var(--s-3); font-size: 11px; }
  .brand-card__cta span[aria-hidden] { width: 22px; height: 22px; }
  .brand-card--dark .brand-card__head--has-logo .brand-card__logo-img,
  .brand-card--blue .brand-card__head--has-logo .brand-card__logo-img,
  .brand-card--red .brand-card__head--has-logo .brand-card__logo-img,
  .brand-card--ivory .brand-card__head--has-logo .brand-card__logo-img,
  .brand-card--navy .brand-card__head--has-logo .brand-card__logo-img { max-height: 44px; }

  .stats { grid-template-columns: 1fr; }
  .stats li { padding: var(--s-5); gap: var(--s-4); justify-content: flex-start; }
  /* kill ALL vertical dividers (incl. the 2-col ones that leak in via higher specificity) */
  .stats li + li::before,
  .stats li:nth-child(2)::before,
  .stats li:nth-child(4)::before { display: none; }
  /* clean full-width separators between stacked rows */
  .stats li:nth-child(2)::after,
  .stats li:nth-child(3)::after,
  .stats li:nth-child(4)::after {
    content: ""; position: absolute; left: 0; right: 0; top: 0;
    height: 1px; background: var(--c-gray-light);
  }
  .stats > li > div { flex: 1 1 auto; }
  .stats__icon { width: 50px; height: 50px; }
  .stats__icon svg { width: 24px; height: 24px; }
  .stats strong { font-size: 1.3rem; white-space: normal; }
  .stats span { font-size: 12.5px; }
  .stats small { font-size: 11.5px; }

  .cb { padding: var(--s-7) var(--s-5); border-radius: var(--radius-lg); }

  .site-footer { padding-top: var(--s-8); }
  .site-footer__top { grid-template-columns: 1fr; gap: var(--s-5); padding-bottom: var(--s-6); margin-bottom: var(--s-6); }
  .site-footer__brand { max-width: none; }
  .site-footer__connect { grid-template-columns: 1fr; gap: var(--s-5); justify-self: start; width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); padding-bottom: var(--s-6); }
  .site-footer__contact { grid-column: 1 / -1; }
  .site-footer__contact .site-footer__links--icon { display: flex; grid-template-columns: none; }
  .site-footer__heading { margin-bottom: var(--s-3); padding-bottom: var(--s-2); }
  .site-footer__bottom { padding: var(--s-3) 0; }
  .site-footer__bottom-inner { flex-direction: column; gap: var(--s-2); text-align: center; }
  .site-footer__bottom-links { gap: var(--s-3); justify-content: center; }

  .post-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products,
  .products { grid-template-columns: repeat(2, 1fr) !important; gap: var(--s-3); }

  .header-search input[type="search"] { font-size: 13px; }
  .header-search { padding: 4px 4px 4px var(--s-4); }
  .header-search__submit { padding: 9px var(--s-4); font-size: 12px; }

  .content-wrap { padding: var(--s-7) 0 var(--s-9); }
}

@media (max-width: 480px) {
  :root { --container-pad: 16px; }
  .hero__title { font-size: 1.7rem; }
  .hero__eyebrow {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 9px;
  }
  .hero__cta { gap: var(--s-2); }
  .hero__cta .btn { flex: 1 1 100%; }

  .trustbar { grid-template-columns: 1fr 1fr; padding: var(--s-3); gap: var(--s-2); }

  .brand-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .brand-card { grid-template-rows: 88px 1fr 50px; }

  .woocommerce ul.products,
  .products { grid-template-columns: 1fr !important; }

  .promo-strip__voucher-code { font-size: 20px; }
  .stats strong { font-size: 1.15rem; }
  .stats li { padding: var(--s-3) var(--s-4); }

  .header-actions { gap: var(--s-2); }
  .header-action svg { width: 20px; height: 20px; }
}

/* ============================================================
   SHARED — pages (tentang-kami, brand, solusi-bisnis, service-center, news)
   ============================================================ */
.mm-page { background: #fff; }
.mm-page > section { padding: var(--s-12) 0; }
.mm-page > section:first-of-type { padding-top: var(--s-13); }

/* Eyebrow — small uppercase tag above section titles */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--s-4);
  line-height: 1;
}
.eyebrow--red   { background: var(--c-red-soft);  color: var(--c-red); }
.eyebrow--blue  { background: var(--c-blue-soft); color: var(--c-blue); }
.eyebrow--white { background: rgba(255,255,255,.14); color: #fff; }
.eyebrow--black { background: #111; color: #fff; }

/* Section header variants */
.section__header--center { text-align: center; align-items: center; flex-direction: column; gap: var(--s-2); }
.section__header--center > div { text-align: center; }
.section__header--invert .section__sub { color: rgba(255,255,255,.7); }
.section__title--white { color: #fff; }

/* Button extensions */
.btn--red    { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn--red:hover { background: var(--c-red-dark); color: #fff; border-color: var(--c-red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--white  { background: #fff; color: var(--c-black); border-color: #fff; }
.btn--white:hover { background: var(--c-red-soft); color: var(--c-red); border-color: var(--c-red-soft); transform: translateY(-1px); }
.btn--lg     { padding: 14px 28px; font-size: 14px; gap: 10px; }

/* ============================================================
   PAGE — Tentang Kami
   ============================================================ */
.tk-hero {
  position: relative;
  background: linear-gradient(180deg, var(--c-gray-lightest) 0%, #fff 100%);
  overflow: hidden;
}
.tk-hero::before {
  content: "";
  position: absolute;
  top: -40px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--c-red-soft) 0%, transparent 70%);
  pointer-events: none;
}
.tk-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-11);
  align-items: center;
  position: relative;
}
.tk-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-5);
}
.tk-hero__lead {
  font-size: 17px;
  color: var(--c-gray);
  line-height: 1.6;
  margin: 0 0 var(--s-7);
  max-width: 540px;
}
.tk-hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-7);
}
.tk-hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-black);
}
.tk-hero__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tk-hero__dot--red   { background: var(--c-red); }
.tk-hero__dot--blue  { background: var(--c-blue); }
.tk-hero__dot--black { background: var(--c-black); }
.tk-hero__visual {
  position: relative;
}
.tk-hero__visual-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: #fff;
}
.tk-hero__visual-inner img,
.tk-hero__visual-inner .tk-hero__placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.tk-hero__badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--c-red);
  color: #fff;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.tk-story {
  position: relative;
  background: #fff;
}
.tk-story__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-10);
  max-width: 1100px;
  margin: 0 auto;
}
.tk-story__head { position: sticky; top: 120px; align-self: start; }
.tk-story__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
}
.tk-story__body { display: flex; flex-direction: column; gap: var(--s-5); }
.tk-story__p {
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  margin: 0;
}
.tk-story__p--first::first-letter {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  float: left;
  line-height: .9;
  padding: 6px 12px 0 0;
  color: var(--c-red);
}

.tk-vm { background: var(--c-gray-lightest); }
.tk-vm__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
}
.tk-vm__card {
  background: #fff;
  padding: var(--s-9) var(--s-8);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-gray-light);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tk-vm__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tk-vm__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
}
.tk-vm__card--red::before  { background: var(--c-red); }
.tk-vm__card--blue::before { background: var(--c-blue); }
.tk-vm__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: var(--s-5);
}
.tk-vm__card--red .tk-vm__icon  { background: var(--c-red-soft);  color: var(--c-red); }
.tk-vm__card--blue .tk-vm__icon { background: var(--c-blue-soft); color: var(--c-blue); }
.tk-vm__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .04em;
  margin: 0 0 var(--s-4);
}
.tk-vm__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-gray);
  margin: 0;
}

.tk-values { background: #fff; }
.tk-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-9);
}
.tk-value {
  padding: var(--s-7) var(--s-5);
  background: var(--c-gray-lightest);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-gray-light);
  position: relative;
  transition: all .25s ease;
}
.tk-value:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--c-red); }
.tk-value__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 48px;
  color: var(--c-red);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: var(--s-4);
}
.tk-value__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 var(--s-3);
  color: var(--c-black);
}
.tk-value__desc {
  font-size: 14px;
  color: var(--c-gray);
  line-height: 1.6;
  margin: 0;
}

.tk-cta {
  background: linear-gradient(135deg, var(--c-black) 0%, #2a2a2a 100%);
  color: #fff;
}
.tk-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.tk-cta__title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.15;
  margin: 0 0 var(--s-2);
  letter-spacing: -.01em;
}
.tk-cta__text {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 540px;
}

/* ============================================================
   PAGE — Brand
   ============================================================ */
.br-hero {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--c-red-soft) 0%, transparent 60%),
    var(--c-gray-lightest);
}
.br-hero__inner { max-width: 760px; margin: 0 auto; }
.br-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -.02em;
  line-height: 1.02;
  margin: 0 0 var(--s-5);
}
.br-hero__lead {
  font-size: 18px;
  color: var(--c-gray);
  line-height: 1.6;
  margin: 0 0 var(--s-7);
}
.br-hero__rule {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s-3);
}
.br-hero__rule span {
  width: 22px; height: 4px; border-radius: 2px;
}
.br-hero__rule span:nth-child(1) { background: var(--c-red); }
.br-hero__rule span:nth-child(2) { background: var(--c-blue); width: 60px; }
.br-hero__rule span:nth-child(3) { background: var(--c-black); }

.br-grid-section { padding-top: 0 !important; padding-bottom: var(--s-13); background: #fff; }
.br-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.br-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  transition: transform .25s ease, box-shadow .25s ease;
}
.br-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--br-color); }
.br-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.br-item__badge {
  position: relative;
  background: var(--br-color, #1A1A1A);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;        /* fixed header shape — upload 800 × 450 px */
  padding: var(--s-4);
  overflow: hidden;
}
.br-item__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .04em;
  text-align: center;
  color: #fff;
}
.br-item__logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;           /* image covers the whole colored header block */
  display: block;
}
.br-item__body { padding: var(--s-6) var(--s-6) var(--s-7); }
.br-item__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--br-color, var(--c-red));
  margin-bottom: var(--s-3);
}
.br-item__heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 var(--s-3);
  letter-spacing: -.01em;
  color: var(--c-black);
}
.br-item__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
  margin: 0 0 var(--s-5);
}
.br-item__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--br-color, var(--c-red));
  transition: gap .2s ease;
}
.br-item:hover .br-item__more { gap: 12px; }

.br-cta {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
}
.br-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.br-cta__title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.15;
  margin: 0 0 var(--s-2);
  letter-spacing: -.01em;
}
.br-cta__text { font-size: 16px; opacity: .9; margin: 0; max-width: 540px; }

/* ============================================================
   PAGE — Solusi Bisnis
   ============================================================ */
.sb-hero {
  background: linear-gradient(135deg, var(--c-black) 0%, #0a1f3e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sb-hero::after {
  content: "";
  position: absolute;
  bottom: -180px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--c-red) 0%, transparent 65%);
  opacity: .25;
  pointer-events: none;
}
.sb-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
  position: relative;
  z-index: 1;
}
.sb-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-5);
  color: #fff;
}
.sb-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0 0 var(--s-7);
  max-width: 540px;
}
.sb-hero__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.sb-hero__visual img,
.sb-hero__visual .sb-hero__placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-hero__rail {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-red) 0%, var(--c-red) 33%, var(--c-blue) 33%, var(--c-blue) 66%, #fff 66%);
}

.sb-services { background: #fff; }
.sb-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-9);
}
.sb-service {
  padding: var(--s-8) var(--s-5);
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--c-gray-lightest);
  border: 1px solid var(--c-gray-light);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sb-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-red); background: #fff; }
.sb-service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--c-red-soft);
  color: var(--c-red);
  border-radius: 18px;
  font-size: 32px;
  margin-bottom: var(--s-5);
}
.sb-service__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 var(--s-3);
  line-height: 1.25;
}
.sb-service__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-gray);
  margin: 0;
}

.sb-industries { background: var(--c-gray-lightest); }
.sb-ind__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
  margin-top: var(--s-8);
}
.sb-ind {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-gray-light);
  padding: var(--s-6) var(--s-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  transition: all .2s ease;
}
.sb-ind:hover { border-color: var(--c-red); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sb-ind__icon { font-size: 28px; line-height: 1; }
.sb-ind__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--c-black);
}

.sb-why {
  background: var(--c-black);
  color: #fff;
}
.sb-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-9);
}
.sb-why__card {
  padding: var(--s-7) var(--s-5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: all .25s ease;
}
.sb-why__card:hover { background: rgba(227,30,36,.1); border-color: var(--c-red); transform: translateY(-4px); }
.sb-why__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--c-red);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: var(--s-4);
}
.sb-why__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 var(--s-2);
  color: #fff;
  letter-spacing: .02em;
}
.sb-why__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
}

.sb-cta {
  background: var(--c-red);
  color: #fff;
}
.sb-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.sb-cta__title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 34px);
  margin: 0 0 var(--s-2);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.sb-cta__text { margin: 0; opacity: .92; max-width: 540px; font-size: 16px; }
.sb-cta .btn--red { background: #fff; color: var(--c-red); border-color: #fff; }
.sb-cta .btn--red:hover { background: var(--c-black); color: #fff; border-color: var(--c-black); }

/* ============================================================
   PAGE — Service Center
   ============================================================ */
.sc-hero {
  background: linear-gradient(180deg, var(--c-gray-lightest) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.sc-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.sc-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 var(--s-5);
}
.sc-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-gray);
  margin: 0;
  max-width: 500px;
}
/* Hero map = grey Indonesia silhouette (GeoJSON) on a transparent canvas —
   no basemap tiles, so it sits directly on the hero background with nothing
   boxy around it. Markers stay interactive (click → Google Maps). */
.sc-hero__map-canvas {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;                    /* mobile safety net — never collapses to 0 height */
  background: transparent !important;   /* hide Leaflet's default grey plate */
}
.sc-hero__map-canvas .leaflet-marker-icon { cursor: pointer; }
.sc-hero__map-canvas .leaflet-marker-icon:focus { outline: none; }   /* no red square after click */
.sc-hero__map-canvas .leaflet-overlay-pane svg {
  filter: drop-shadow(0 14px 22px rgba(13, 30, 60, .12));            /* subtle depth under the islands */
}

.sc-cc {
  background: var(--c-black);
  color: #fff;
  padding: var(--s-8) 0 !important;
}
.sc-cc__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.sc-cc__main { display: flex; flex-direction: column; gap: var(--s-3); }
.sc-cc__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .22em;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
}
.sc-cc__number {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
  line-height: 1;
}
.sc-cc__number:hover { color: var(--c-red); }
.sc-cc__hours {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.sc-cc__wa { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.sc-cc__wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  color: #fff;
  text-decoration: none;
  transition: all .2s ease;
  min-width: 200px;
}
.sc-cc__wa-btn:hover { background: #25D366; border-color: #25D366; }
.sc-cc__wa-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}
.sc-cc__wa-meta { display: flex; flex-direction: column; gap: 2px; }
.sc-cc__wa-name { font-size: 11px; opacity: .7; letter-spacing: .08em; text-transform: uppercase; }
.sc-cc__wa-meta strong { font-family: var(--font-head); font-weight: 700; font-size: 15px; }

.sc-locations { background: #fff; }
.sc-loc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-9);
}
.sc-loc {
  padding: var(--s-6);
  background: var(--c-gray-lightest);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-gray-light);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.sc-loc:hover { background: #fff; box-shadow: var(--shadow-lg); border-color: var(--c-red); transform: translateY(-4px); }
.sc-loc__head {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-gray-light);
}
.sc-loc__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--c-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.sc-loc__city {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  margin: 0;
  letter-spacing: .03em;
  line-height: 1.1;
}
.sc-loc__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-top: 2px;
  display: inline-block;
}
.sc-loc__addr {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-gray);
  margin: 0;
}
.sc-loc__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.sc-loc__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.sc-loc__contact svg { color: var(--c-red); flex-shrink: 0; }
.sc-loc__contact a {
  color: var(--c-black);
  text-decoration: none;
  transition: color .15s ease;
  word-break: break-word;
}
.sc-loc__contact a:hover { color: var(--c-red); }

/* ============================================================
   PAGE — News
   ============================================================ */
.nw-hero {
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, var(--c-blue-soft) 0%, transparent 60%),
    var(--c-gray-lightest);
}
.nw-hero__inner { max-width: 720px; margin: 0 auto; }
.nw-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 var(--s-5);
}
.nw-hero__lead { font-size: 17px; color: var(--c-gray); line-height: 1.6; margin: 0; }

.nw-featured { padding: var(--s-11) 0 var(--s-7) !important; background: #fff; }
.nw-feat {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: center;
  background: var(--c-gray-lightest);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--c-gray-light);
}
.nw-feat__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--c-gray-light);
}
.nw-feat__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.nw-feat:hover .nw-feat__media img { transform: scale(1.04); }
.nw-feat__copy { padding: var(--s-8) var(--s-9) var(--s-8) 0; }
.nw-feat__cat {
  display: inline-block;
  background: var(--c-red);
  color: #fff;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.nw-feat__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 var(--s-4);
}
.nw-feat__title a { color: var(--c-black); text-decoration: none; }
.nw-feat__title a:hover { color: var(--c-red); }
.nw-feat__excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-gray);
  margin: 0 0 var(--s-5);
}
.nw-feat__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 13px;
  color: var(--c-gray);
  margin-bottom: var(--s-5);
  font-family: var(--font-head);
  font-weight: 600;
}
.nw-feat__dot { width: 4px; height: 4px; background: var(--c-gray); border-radius: 50%; }
.nw-feat__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-red);
  text-decoration: none;
  letter-spacing: .04em;
  transition: gap .2s ease;
}
.nw-feat__more:hover { gap: 14px; }

.nw-grid-section { background: #fff; padding-top: 0 !important; }
.nw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
  margin-top: var(--s-6);
}
.nw-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-gray-light);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.nw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.nw-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-gray-light);
}
.nw-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.nw-card:hover .nw-card__media img { transform: scale(1.05); }
.nw-card__body { padding: var(--s-5) var(--s-5) var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.nw-card__cat {
  align-self: flex-start;
  background: var(--c-gray-lightest);
  color: var(--c-blue);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nw-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.01em;
}
.nw-card__title a { color: var(--c-black); text-decoration: none; }
.nw-card__title a:hover { color: var(--c-red); }
.nw-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-gray);
  margin: 0;
  flex: 1;
}
.nw-card__meta {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gray);
  letter-spacing: .04em;
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-gray-light);
}

.nw-pagination {
  margin-top: var(--s-10);
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-head);
}
.nw-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: var(--c-gray-lightest);
  color: var(--c-black);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--c-gray-light);
  transition: all .15s ease;
}
.nw-pagination .page-numbers:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.nw-pagination .page-numbers.current { background: var(--c-black); color: #fff; border-color: var(--c-black); }

.nw-empty { padding: var(--s-14) 0 !important; text-align: center; }
.nw-empty__inner { max-width: 480px; margin: 0 auto; }
.nw-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--c-gray-lightest);
  border-radius: 50%;
  color: var(--c-gray);
  margin-bottom: var(--s-6);
}
.nw-empty__title { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin: 0 0 var(--s-3); }
.nw-empty__text { font-size: 15px; color: var(--c-gray); line-height: 1.6; margin: 0; }

/* ============================================================
   PRODUCT CARD — used on home spill, shop archive, related
   ============================================================ */
.mm-prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);   /* shop: 6 across (dense, marketplace-style) */
  gap: var(--s-4);
  justify-content: start;   /* products rata kiri — partial last row packs left */
}
/* Home "Produk Terbaru" keeps a roomier 4-up (higher specificity → always wins) */
.mm-prod-grid.mm-prod-grid--home { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
/* Column ladder — shop 6 → 5 → 4 → 3 → 2 ; home 4 → 4 → 3 → 2 → 2 */
@media (max-width: 1200px) { .mm-prod-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1024px) {
  .mm-prod-grid { grid-template-columns: repeat(4, 1fr); }
  .mm-prod-grid.mm-prod-grid--home { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .mm-prod-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .mm-prod-grid.mm-prod-grid--home { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .mm-prod-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
}
/* Compact card tuning for the dense desktop shop grid (6/5-col) — home untouched */
@media (min-width: 1025px) {
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__body { padding: var(--s-3); gap: 6px; }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__title { font-size: 13px; min-height: 2.6em; }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__price-now { font-size: 15px; }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__price-old { font-size: 11px; }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__brand { font-size: 9px; padding: 3px 7px; }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__discount { font-size: 11px; padding: 3px 6px; }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__meta { font-size: 11px; gap: var(--s-2); }
  .mm-prod-grid:not(.mm-prod-grid--home) .mm-prod__stock { font-size: 10.5px; }
}

.mm-prod {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-gray-light);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mm-prod:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--p-color, var(--c-red));
}
.mm-prod__link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.mm-prod__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  overflow: hidden;
}
.mm-prod__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.mm-prod:hover .mm-prod__media img { transform: scale(1.04); }
.mm-prod__placeholder {
  color: var(--c-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Brand label — pill berwarna di atas judul produk (pembeda visual) */
.mm-prod__brand {
  display: inline-block;
  align-self: flex-start;          /* lebar mengikuti teks, bukan full-width */
  background: var(--p-color, var(--c-red));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  padding: 4px 9px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mm-prod__discount {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  line-height: 1;
}
.mm-prod__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.mm-prod__title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--c-black);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
  letter-spacing: -.005em;
}
.mm-prod__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 12px;
  color: var(--c-gray);
  font-family: var(--font-head);
  font-weight: 600;
}
.mm-prod__rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--c-black);
}
.mm-prod__rating svg { display: block; }
.mm-prod__sold { color: var(--c-gray); }
.mm-prod__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2px;
}
/* harga tayang (harga jual) — hitam, tebal, dominan */
.mm-prod__price-now {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--c-black);
  letter-spacing: -.01em;
}
.mm-prod__price-now .woocommerce-Price-amount,
.mm-prod__price-old .woocommerce-Price-amount { font: inherit; color: inherit; }
/* harga coret (harga asli) — merah, dicoret, di atas */
.mm-prod__price-old {
  font-size: 12px;
  color: var(--c-red);
  text-decoration: line-through;
  text-decoration-color: var(--c-red);
  font-family: var(--font-head);
  font-weight: 600;
}
.mm-prod__stock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #16a34a;
  margin-top: var(--s-1);
  font-family: var(--font-head);
}
.mm-prod__stock svg { color: #16a34a; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.mm-shop > section { padding: var(--s-9) 0; }
.mm-shop > section:first-of-type { padding-top: var(--s-11); padding-bottom: var(--s-7); }

/* ----- Category icon nav (blue boxes with SVG icons) ----- */
.mm-catnav-section { background: #fff; padding: var(--s-9) 0 0 !important; }
.mm-catnav-wrap { position: relative; }
.mm-catnav {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: var(--s-3) 0;             /* top+bottom room so the hover lift/border isn't clipped by overflow */
  scrollbar-width: none;             /* hide native bar — chevron hint instead */
  cursor: grab;                      /* desktop: drag to pan */
}
.mm-catnav::-webkit-scrollbar { height: 0; width: 0; display: none; }
.mm-catnav.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.mm-catnav.is-dragging a { cursor: grabbing; }
.mm-catnav.is-dragging img,
.mm-catnav.is-dragging svg { pointer-events: none; }
.mm-catnav__item {
  flex: 0 0 150px;                   /* ~7 visible + 8th peeking, rest scroll */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  text-align: center;
}
.mm-catnav__box {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;                  /* default: black-and-white, no recolor */
  border: 1px solid #e6e8ec;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px -12px rgba(17,24,39,.28);
  transition: transform .22s ease, box-shadow .22s ease, background .2s ease, border-color .2s ease;
}
.mm-catnav__box img,
.mm-catnav__box svg {
  width: 80%;                        /* icon dominates the box — less empty space */
  height: 80%;
  object-fit: contain;               /* icon shown as-is (black line-art) */
}
.mm-catnav__item:hover .mm-catnav__box {
  transform: translateY(-5px);
  border-color: rgba(227,30,36,.4);
  box-shadow: 0 16px 28px -14px rgba(227,30,36,.35);
}
.mm-catnav__item.is-active .mm-catnav__box {
  background: linear-gradient(160deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  border-color: transparent;
  box-shadow: 0 14px 28px -12px rgba(227,30,36,.65);
}
.mm-catnav__item.is-active .mm-catnav__box img,
.mm-catnav__item.is-active .mm-catnav__box svg {
  filter: brightness(0) invert(1);   /* active only: black art → white on red */
}
.mm-catnav__item.is-active .mm-catnav__label { color: var(--c-red); }
.mm-catnav__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.25;
  color: var(--c-black);
  letter-spacing: .005em;
  max-width: 150px;
}
.mm-catnav__item:hover .mm-catnav__label { color: var(--c-red); }

/* Chevron control — clickable + gently bouncing, invites the horizontal scroll */
.mm-catnav-hint {
  position: absolute;
  top: var(--s-3);                   /* match .mm-catnav padding-top so chevron stays centered on the boxes */
  height: 150px;                     /* = box height → vertically centers chevron */
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mm-catnav-hint--next { right: calc(var(--container-pad) - 4px); }
.mm-catnav-hint--prev { left: calc(var(--container-pad) - 4px); }
/* hide the forward arrow once scrolled to the right edge … */
.mm-catnav-wrap.is-end .mm-catnav-hint--next { opacity: 0; pointer-events: none; }
.mm-catnav-wrap.is-end .mm-catnav-hint--next .mm-catnav-hint__btn { pointer-events: none; }
/* … and hide the back arrow while at the very start */
.mm-catnav-hint--prev { opacity: 0; pointer-events: none; }
.mm-catnav-wrap:not(.is-start) .mm-catnav-hint--prev { opacity: 1; }
.mm-catnav-wrap.is-start .mm-catnav-hint--prev .mm-catnav-hint__btn { pointer-events: none; }
.mm-catnav-hint__btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -5px rgba(227,30,36,.6);
  animation: mm-catnav-nudge 1.4s ease-in-out infinite;
  transition: transform .15s ease, box-shadow .2s ease;
}
.mm-catnav-hint__btn:hover {
  box-shadow: 0 10px 24px -5px rgba(227,30,36,.7);
}
.mm-catnav-hint__btn--prev { animation-name: mm-catnav-nudge-prev; }
@keyframes mm-catnav-nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}
@keyframes mm-catnav-nudge-prev {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-6px); }
}

@media (max-width: 1024px) {
  .mm-catnav__item { flex-basis: 140px; }
  .mm-catnav-hint { height: 140px; }
}
@media (max-width: 768px) {
  .mm-catnav__item { flex-basis: 132px; }
  .mm-catnav__label { font-size: 12px; }
  .mm-catnav-hint { height: 132px; }
}
@media (max-width: 480px) {
  .mm-catnav__item { flex-basis: 116px; }
  .mm-catnav__label { font-size: 11.5px; }
  .mm-catnav-hint { height: 116px; }
}
@media (prefers-reduced-motion: reduce) {
  .mm-catnav { scroll-behavior: auto; }
  .mm-catnav-hint__btn { animation: none; }
}

.mm-shop-hero {
  background: linear-gradient(180deg, var(--c-gray-lightest) 0%, #fff 100%);
}
.mm-shop-hero__inner {
  /* full-width container → heading flush-left, aligned with the category row & products */
}
.mm-shop-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 var(--s-4);
}
.mm-shop-hero__lead {
  font-size: 16px;
  color: var(--c-gray);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;   /* keep subtitle readable but heading stays flush-left */
}

.mm-shop-filter { padding: 0 0 var(--s-7) !important; background: #fff; }
.mm-shop-filter__inner {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-gray-light);
}
.mm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--c-gray-lightest);
  border: 1px solid var(--c-gray-light);
  color: var(--c-black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all .15s ease;
  white-space: nowrap;
}
.mm-chip:hover { background: #fff; border-color: var(--c-red); color: var(--c-red); }
.mm-chip.is-active { background: var(--c-black); border-color: var(--c-black); color: #fff; }
.mm-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  background: rgba(0,0,0,.06);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
}
.mm-chip.is-active .mm-chip__count { background: rgba(255,255,255,.18); }

.mm-shop-grid-section { background: #fff; padding-top: 0 !important; }

.mm-shop-empty {
  text-align: center;
  padding: var(--s-12) 0;
}
.mm-shop-empty h2 { font-family: var(--font-head); font-weight: 800; margin: 0 0 var(--s-3); }
.mm-shop-empty p { color: var(--c-gray); }

/* ============================================================
   BRANCHES MAP — interactive map on homepage
   ============================================================ */
.section--branches {
  background: linear-gradient(180deg, var(--c-gray-lightest) 0%, #fff 100%);
}
.mm-branches {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-8);
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--c-gray-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* MAP */
.mm-branches__map-wrap {
  position: relative;
  min-height: 540px;
  background: #e8eef4;
}
.mm-branches__map {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mm-branches__legend {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--c-black);
  box-shadow: var(--shadow-md);
}
.mm-branches__legend-dot {
  width: 10px; height: 10px;
  background: var(--c-red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(227,30,36,.18);
}

/* Leaflet attribution restyle */
.leaflet-container { font-family: var(--font-body) !important; background: #e8eef4; }
.leaflet-control-attribution {
  background: rgba(255,255,255,.85) !important;
  font-size: 10px !important;
  padding: 2px 6px !important;
}
.leaflet-control-zoom a {
  background: #fff !important;
  border: 1px solid var(--c-gray-light) !important;
  color: var(--c-black) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 30px !important;
  font-weight: 700 !important;
}
.leaflet-control-zoom a:hover {
  background: var(--c-red) !important;
  color: #fff !important;
  border-color: var(--c-red) !important;
}
.leaflet-control-zoom { box-shadow: var(--shadow-md) !important; border-radius: var(--radius-sm) !important; overflow: hidden; }

/* Custom marker */
.mm-marker-wrap {
  position: relative;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-marker {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  background: var(--c-red);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(227,30,36,.4), 0 0 0 1px rgba(0,0,0,.05);
  z-index: 2;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mm-marker__pulse {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-red);
  opacity: .35;
  animation: mm-pulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes mm-pulse {
  0%   { transform: scale(1); opacity: .35; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.mm-marker-wrap:hover .mm-marker,
.mm-marker-wrap.is-active .mm-marker {
  transform: scale(1.25);
  box-shadow: 0 8px 20px rgba(227,30,36,.6);
}

/* Popup */
.leaflet-popup-content-wrapper.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  padding: 0 !important;
  box-shadow: var(--shadow-xl) !important;
  border: 1px solid var(--c-gray-light) !important;
}
.leaflet-popup-content {
  margin: 0 !important;
  padding: 0 !important;
  width: 260px !important;
  line-height: 1.5;
}
.leaflet-popup-tip { box-shadow: var(--shadow-lg) !important; }
.mm-popup-wrap .leaflet-popup-close-button {
  top: 8px !important;
  right: 8px !important;
  width: 22px !important;
  height: 22px !important;
  font-size: 20px !important;
  background: var(--c-gray-lightest) !important;
  border-radius: 50% !important;
  text-align: center !important;
  line-height: 22px !important;
  color: var(--c-gray) !important;
  font-weight: 700 !important;
}
.mm-popup-wrap .leaflet-popup-close-button:hover {
  background: var(--c-red) !important;
  color: #fff !important;
}

.mm-popup {
  padding: var(--s-5) var(--s-5) var(--s-4);
  font-family: var(--font-body);
  position: relative;
}
.mm-popup__num {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .04em;
}
.mm-popup__city {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 16px;
  margin: 0 0 4px;
  padding-left: 38px;
  letter-spacing: .02em;
  color: var(--c-black);
  line-height: 1.2;
}
.mm-popup__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 8px 38px;
}
.mm-popup__addr {
  font-size: 12px;
  line-height: 1.55;
  color: var(--c-gray);
  margin: 8px 0 var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--c-gray-light);
}
.mm-popup__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: var(--s-3);
}
.mm-popup__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-black);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-head);
}
.mm-popup__contact a:hover { color: var(--c-red); }
.mm-popup__contact svg { color: var(--c-red); flex-shrink: 0; }
.mm-popup__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--c-red-soft);
  color: var(--c-red);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .15s ease;
}
.mm-popup__more:hover { background: var(--c-red); color: #fff; transform: translateX(2px); }

/* LIST */
.mm-branches__list-wrap {
  background: #fff;
  display: flex;
  flex-direction: column;
  max-height: 540px;
}
.mm-branches__list-head {
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--c-gray-light);
  background: var(--c-gray-lightest);
}
.mm-branches__search {
  width: 100%;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.mm-branches__search:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px var(--c-red-soft);
}
.mm-branches__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
}
.mm-branches__list::-webkit-scrollbar { width: 6px; }
.mm-branches__list::-webkit-scrollbar-thumb { background: var(--c-gray-light); border-radius: 3px; }

.mm-branch { border-bottom: 1px solid var(--c-gray-light); }
.mm-branch:last-child { border-bottom: 0; }
.mm-branch__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s ease;
}
.mm-branch__btn:hover { background: var(--c-gray-lightest); }
.mm-branch.is-active .mm-branch__btn {
  background: var(--c-red-soft);
  border-left: 4px solid var(--c-red);
  padding-left: calc(var(--s-5) - 4px);
}
.mm-branch__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--c-gray-lightest);
  color: var(--c-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  transition: all .15s ease;
}
.mm-branch__btn:hover .mm-branch__num {
  background: var(--c-red);
  color: #fff;
}
.mm-branch.is-active .mm-branch__num {
  background: var(--c-red);
  color: #fff;
}
.mm-branch__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.mm-branch__city {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--c-black);
}
.mm-branch__island {
  font-size: 11px;
  color: var(--c-gray);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
}
.mm-branch__arrow {
  color: var(--c-gray-light);
  flex-shrink: 0;
  transition: all .15s ease;
}
.mm-branch__btn:hover .mm-branch__arrow,
.mm-branch.is-active .mm-branch__arrow {
  color: var(--c-red);
  transform: translateX(2px);
}

.mm-branches__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--s-4) var(--s-5);
  background: var(--c-black);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid var(--c-gray-light);
  transition: all .15s ease;
}
.mm-branches__cta:hover { background: var(--c-red); color: #fff; gap: 12px; }

/* ============================================================
   SINGLE PRODUCT — modern detail layout
   ============================================================ */
.mm-single { background: #fff; }
.mm-single__crumb {
  font-size: 13px;
  color: var(--c-gray);
  padding: var(--s-5) 0 var(--s-2);
  background: var(--c-gray-lightest);
}
.mm-single__crumb a { color: var(--c-gray); text-decoration: none; }
.mm-single__crumb a:hover { color: var(--c-red); }
.mm-single__crumb .sep { margin: 0 8px; opacity: .5; }
.mm-single__crumb .current { color: var(--c-black); font-weight: 600; }

.mm-single-hero {
  padding: var(--s-7) 0 var(--s-12);
  background: var(--c-gray-lightest);
}
.mm-single-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--s-9);
  align-items: start;
}

.mm-gallery {
  position: sticky;
  top: 120px;
  align-self: start;
}
.mm-gallery__stage {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-gray-light);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-7);
  position: relative;
  overflow: hidden;
  touch-action: pan-y;          /* let vertical scroll pass; we handle horizontal swipe */
  user-select: none;
  -webkit-user-select: none;
}
.mm-gallery__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;         /* so the swipe gesture isn't eaten by the <img> */
}

/* Prev/next arrows over the main image */
.mm-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-gray-light);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--c-black);
  cursor: pointer;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, .25);
  opacity: 0;
  transition: opacity .2s ease, background .15s ease, transform .15s ease;
}
.mm-gallery:hover .mm-gallery__nav { opacity: 1; }
.mm-gallery__nav:hover { background: var(--p-color, var(--c-red)); color: #fff; border-color: transparent; }
.mm-gallery__nav--prev { left: 10px; }
.mm-gallery__nav--next { right: 10px; }
/* Touch devices have no hover → keep the arrows visible */
@media (hover: none) {
  .mm-gallery__nav { opacity: 1; background: rgba(255, 255, 255, .82); }
}
.mm-gallery__discount {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: .02em;
}
.mm-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.mm-gallery__thumb {
  background: #fff;
  border: 2px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  padding: 4px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: all .15s ease;
}
.mm-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.mm-gallery__thumb:hover { border-color: var(--c-gray); }
.mm-gallery__thumb.is-active { border-color: var(--p-color, var(--c-red)); }

/* Video overlay inside the stage */
.mm-gallery__video {
  position: absolute;
  inset: 0;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity .25s ease;
}
.mm-gallery__video.is-active { display: flex; }
.mm-gallery__video iframe,
.mm-gallery__video video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

/* Video thumb button */
.mm-gallery__thumb--video {
  background: #111;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-gallery__thumb--video img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.mm-gallery__play-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e31e24;
  flex-shrink: 0;
}
.mm-gallery__play-icon svg { margin-left: 2px; }

.mm-info {
  background: #fff;
  padding: var(--s-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-gray-light);
}
.mm-info__brand {
  display: inline-block;
  background: var(--p-color, var(--c-black));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .16em;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.mm-info__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0 0 var(--s-4);
  color: var(--c-black);
}
.mm-info__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 13px;
  color: var(--c-gray);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.mm-info__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #16a34a;
  font-weight: 700;
}
.mm-info__dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}
.mm-info__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-black);
}
.mm-info__sep { color: var(--c-gray-light); }

.mm-info__price {
  padding: var(--s-5) 0;
  border-top: 1px dashed var(--c-gray-light);
  border-bottom: 1px dashed var(--c-gray-light);
  margin-bottom: var(--s-5);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.mm-info__price-now {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--c-red);
  letter-spacing: -.02em;
  line-height: 1;
}
.mm-info__price-now .woocommerce-Price-amount,
.mm-info__price-old .woocommerce-Price-amount,
.mm-info__price-tag .woocommerce-Price-amount { font: inherit; color: inherit; }
.mm-info__price-old {
  font-size: 16px;
  color: var(--c-gray);
  text-decoration: line-through;
  font-family: var(--font-head);
  font-weight: 600;
}
.mm-info__price-tag {
  font-size: 12px;
  background: var(--c-red-soft);
  color: var(--c-red);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  letter-spacing: .04em;
  font-family: var(--font-head);
}

.mm-info__features {
  list-style: none;
  padding: var(--s-5);
  margin: 0 0 var(--s-6);
  background: var(--c-gray-lightest);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.mm-info__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.mm-info__feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: var(--radius-sm);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--c-gray-light);
}
.mm-info__features li strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--c-black);
  margin-bottom: 1px;
}
.mm-info__features li span {
  font-size: 11px;
  color: var(--c-gray);
}

.mm-info__buy { margin-bottom: var(--s-4); }

/* ── Variable product: attribute swatches (Shopee-style buttons) ──────────── */
.mm-variations { margin-bottom: var(--s-5); }
.mm-variations__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.mm-variations__label {
  flex: 0 0 92px;
  padding-top: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-black);
}
.mm-variations__control { flex: 1; min-width: 0; }
.mm-swatch-native { display: none; }   /* native select hidden; buttons drive it */

.mm-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.mm-swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 58px;
  min-height: 42px;
  padding: 6px 14px;
  background: #fff;
  border: 1.5px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-black);
  cursor: pointer;
  position: relative;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.mm-swatch:hover { border-color: var(--p-color, var(--c-red)); color: var(--p-color, var(--c-red)); }
.mm-swatch.is-active {
  border-color: var(--p-color, var(--c-red));
  color: var(--p-color, var(--c-red));
  background: #fbeaea;                                              /* fallback */
  background: color-mix(in srgb, var(--p-color, #e31e24) 8%, #fff);
}
/* corner check tick on the selected swatch, like Shopee */
.mm-swatch.is-active::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 16px 16px;
  border-color: transparent transparent var(--p-color, var(--c-red)) transparent;
  border-bottom-right-radius: var(--radius-sm);
}
.mm-swatch.is-active::before {
  content: "";
  position: absolute;
  right: 2px; bottom: 3px;
  width: 4px; height: 7px;
  border: solid #fff;
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
  z-index: 1;
}
.mm-swatch.is-disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: var(--c-gray-light);
  color: var(--c-gray);
  background: #f6f6f6;
}
.mm-swatch.is-disabled:hover { border-color: var(--c-gray-light); }
.mm-swatch--img { padding: 4px 12px 4px 4px; }
.mm-swatch__img {
  width: 34px; height: 34px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.mm-variations__reset {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-gray);
  text-decoration: none;
  margin-top: 2px;
}
.mm-variations__reset:hover { color: var(--c-red); text-decoration: underline; }

/* Native variation price/stock area (filled by wc-add-to-cart-variation.js) */
.single_variation_wrap .single_variation { margin-bottom: var(--s-4); }
.mm-info__varprice .woocommerce-variation-price .price,
.mm-info__varprice .price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--c-red);
}
.mm-info__varprice del { color: var(--c-gray); font-weight: 600; font-size: 16px; opacity: .8; }
.mm-info__varprice ins { text-decoration: none; }
.mm-info__varprice .woocommerce-variation-availability { margin-top: 6px; font-size: 13px; }
.mm-info__varprice .stock.out-of-stock { color: var(--c-red); font-weight: 700; }
.mm-info__price-range { font-size: 24px; }

/* Disabled add-to-cart while no valid variation is selected */
.woocommerce-variation-add-to-cart-disabled .btn-cart,
.woocommerce-variation-add-to-cart-disabled .btn-buy,
.btn-cart.disabled, .btn-cart:disabled,
.btn-buy.disabled, .btn-buy:disabled {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}
.wc-no-matching-variations { font-size: 13px; color: var(--c-red); margin-bottom: var(--s-3); }

/* Chosen variation summary in cart / checkout */
.mm-cart-item__variation, .mm-summary__variation {
  display: block;
  font-size: 12px;
  color: var(--c-gray);
  margin-top: 2px;
  line-height: 1.5;
}
.mm-cart-item__variation p, .mm-summary__variation p { margin: 0; }

.mm-info__qty {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
.mm-info__qty label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-black);
}

.mm-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}
.mm-qty__btn {
  width: 36px;
  height: 40px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-black);
  cursor: pointer;
  transition: background .15s ease;
}
.mm-qty__btn:hover { background: var(--c-gray-lightest); }
.mm-qty input {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--c-gray-light);
  border-right: 1px solid var(--c-gray-light);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  -moz-appearance: textfield;
}
.mm-qty input::-webkit-outer-spin-button,
.mm-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.mm-info__cta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-3);
}
.btn-cart, .btn-buy, .btn-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}
.btn-cart .btn-icon,
.btn-buy .btn-icon,
.btn-wa .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-cart .btn-label,
.btn-buy .btn-label,
.btn-wa .btn-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-cart {
  background: #fff;
  color: var(--c-red);
  border-color: var(--c-red);
  box-shadow: 0 1px 0 rgba(227,30,36,.04);
}
.btn-cart:hover {
  background: var(--c-red-soft);
  color: var(--c-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(227,30,36,.35);
}

.btn-buy {
  background: linear-gradient(180deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px -2px rgba(227,30,36,.42);
}
.btn-buy:hover {
  background: linear-gradient(180deg, var(--c-red-dark) 0%, #8c1115 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(227,30,36,.55);
}
.btn-buy::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transition: left .5s ease;
}
.btn-buy:hover::after { left: 100%; }

.btn-wa {
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px -2px rgba(37,211,102,.38);
}
.btn-wa:hover {
  background: linear-gradient(180deg, #128C7E 0%, #075E54 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(37,211,102,.5);
}

.mm-info__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-5);
  padding: var(--s-3) var(--s-4);
  background: var(--c-blue-soft);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--c-blue-dark);
  font-weight: 500;
}
.mm-info__trust svg { color: var(--c-blue); flex-shrink: 0; }

/* TABS */
.mm-single-detail {
  padding: var(--s-12) 0;
  background: #fff;
  border-top: 1px solid var(--c-gray-light);
}
.mm-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--c-gray-light);
  margin-bottom: var(--s-7);
  flex-wrap: wrap;
}
.mm-tabs__tab {
  background: transparent;
  border: none;
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  letter-spacing: .02em;
  transition: all .15s ease;
}
.mm-tabs__tab:hover { color: var(--c-black); }
.mm-tabs__tab.is-active {
  color: var(--c-red);
  border-bottom-color: var(--c-red);
}
.mm-tabs__panel { display: none; max-width: 900px; }
.mm-tabs__panel.is-active { display: block; }
.mm-tabs__panel p { line-height: 1.7; color: #333; }
.mm-tabs__panel img { max-width: 100%; height: auto; }

.mm-spec {
  width: 100%;
  border-collapse: collapse;
}
.mm-spec th,
.mm-spec td {
  padding: var(--s-3) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--c-gray-light);
  font-size: 14px;
}
.mm-spec th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-gray);
  width: 200px;
  background: var(--c-gray-lightest);
}
.mm-spec td { color: var(--c-black); }
.mm-spec tr:last-child th,
.mm-spec tr:last-child td { border-bottom: 0; }

.mm-single-related {
  background: var(--c-gray-lightest);
  padding: var(--s-12) 0;
}

/* ============================================================
   CART
   ============================================================ */
.mm-cart-page { background: #fff; }
.mm-cart-hero {
  padding: var(--s-9) 0 var(--s-7);
  background: var(--c-gray-lightest);
}
.mm-cart-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 var(--s-3);
}
.mm-cart-hero__lead {
  font-size: 15px;
  color: var(--c-gray);
  margin: 0;
}

.mm-cart-empty { padding: var(--s-13) 0; }
.mm-cart-empty__inner {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}
.mm-cart-empty__icon {
  color: var(--c-gray-light);
  display: inline-flex;
  margin-bottom: var(--s-5);
}
.mm-cart-empty p { color: var(--c-gray); margin-bottom: var(--s-6); font-size: 15px; }

.mm-cart-section { padding: var(--s-9) 0; }
.mm-cart-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s-7);
  align-items: start;
}

.mm-cart {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mm-cart__head {
  display: grid;
  grid-template-columns: 1fr 140px 140px 130px 40px;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-gray-lightest);
  border-bottom: 1px solid var(--c-gray-light);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gray);
}
.mm-cart__head-price, .mm-cart__head-qty, .mm-cart__head-sub { text-align: center; }

.mm-cart__list { list-style: none; padding: 0; margin: 0; }
.mm-cart-item {
  display: grid;
  grid-template-columns: 96px 1fr 140px 140px 130px 40px;
  gap: var(--s-4);
  padding: var(--s-5);
  border-bottom: 1px solid var(--c-gray-light);
  align-items: center;
}
.mm-cart-item:last-child { border-bottom: 0; }
.mm-cart-item__media {
  width: 96px; height: 96px;
  background: var(--c-gray-lightest);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--c-gray-light);
}
.mm-cart-item__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mm-cart-item__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mm-cart-item__brand {
  display: inline-block;
  align-self: flex-start;
  background: var(--p-color, var(--c-black));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.mm-cart-item__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-black);
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mm-cart-item__name:hover { color: var(--c-red); }
.mm-cart-item__sku {
  font-size: 11px;
  color: var(--c-gray);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
}
.mm-cart-item__price,
.mm-cart-item__sub {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
}
.mm-cart-item__sub { color: var(--c-red); font-weight: 800; font-size: 15px; }
.mm-cart-item__qty { display: flex; justify-content: center; }
.mm-cart-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-gray-lightest);
  color: var(--c-gray);
  transition: all .15s ease;
}
.mm-cart-item__remove:hover { background: var(--c-red-soft); color: var(--c-red); }

.mm-cart__actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-5);
  background: var(--c-gray-lightest);
  border-top: 1px solid var(--c-gray-light);
  flex-wrap: wrap;
}
.mm-cart__coupon { flex: 1; min-width: 280px; }
.mm-cart__coupon label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--c-gray);
  letter-spacing: .04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.mm-cart__coupon-row {
  display: flex;
  gap: 8px;
}
.mm-cart__coupon-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  background: #fff;
}
.mm-cart__update {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-gray);
  cursor: pointer;
  transition: all .15s ease;
}
.mm-cart__update:hover { color: var(--c-red); border-color: var(--c-red); }

/* CART SUMMARY */
.mm-cart-summary {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  position: sticky;
  top: 120px;
}
.mm-cart-summary__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--c-gray-light);
}
.mm-cart-summary__list { margin: 0 0 var(--s-5); }
.mm-cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--s-2) 0;
  font-size: 14px;
}
.mm-cart-summary__row dt { color: var(--c-gray); font-weight: 500; }
.mm-cart-summary__row dd { font-family: var(--font-head); font-weight: 700; color: var(--c-black); margin: 0; }
.mm-cart-summary__row--discount dd { color: #16a34a; }
.mm-cart-summary__row--total {
  padding-top: var(--s-4);
  margin-top: var(--s-2);
  border-top: 1px dashed var(--c-gray-light);
}
.mm-cart-summary__row--total dt { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--c-black); }
.mm-cart-summary__total {
  font-family: var(--font-head) !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  color: var(--c-red) !important;
  letter-spacing: -.01em;
}
.mm-cart-summary__remove-coupon {
  font-size: 11px;
  color: var(--c-red);
  margin-left: 6px;
  text-decoration: underline;
}

.mm-cart-summary__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  background: var(--c-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  transition: all .15s ease;
  margin-bottom: var(--s-3);
}
.mm-cart-summary__checkout:hover { background: var(--c-red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }

.mm-cart-summary__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all .15s ease;
  margin-bottom: var(--s-4);
}
.mm-cart-summary__wa:hover { background: #1da851; color: #fff; }

.mm-cart-summary__continue {
  display: block;
  text-align: center;
  color: var(--c-gray);
  font-size: 13px;
  text-decoration: none;
  padding: var(--s-3);
}
.mm-cart-summary__continue:hover { color: var(--c-red); }

.mm-cart-summary__trust {
  list-style: none;
  margin: var(--s-4) 0 0;
  padding: var(--s-4) 0 0;
  border-top: 1px solid var(--c-gray-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mm-cart-summary__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--c-gray);
}
.mm-cart-summary__trust svg { color: #16a34a; flex-shrink: 0; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.mm-checkout-page { background: var(--c-gray-lightest); }
.mm-checkout-hero {
  padding: var(--s-7) 0 var(--s-3);
  background: var(--c-gray-lightest);
}
.mm-stepper {
  list-style: none;
  display: flex;
  gap: var(--s-3);
  padding: 0;
  margin: 0 0 var(--s-6);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  align-items: center;
}
.mm-stepper li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-gray);
}
.mm-stepper li::after {
  content: "";
  margin-left: var(--s-3);
  width: 30px;
  height: 1px;
  background: var(--c-gray-light);
}
.mm-stepper li:last-child::after { display: none; }
.mm-stepper li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: #fff;
  color: var(--c-gray);
  border: 1px solid var(--c-gray-light);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.mm-stepper li.is-done span { background: #16a34a; color: #fff; border-color: #16a34a; }
.mm-stepper li.is-active { color: var(--c-black); }
.mm-stepper li.is-active span { background: var(--c-red); color: #fff; border-color: var(--c-red); }

.mm-checkout-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
  margin: 0 0 var(--s-3);
}
.mm-checkout-hero__lead { color: var(--c-gray); font-size: 15px; margin: 0; }

.mm-checkout-section { padding: var(--s-5) 0 var(--s-12); }
.mm-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s-7);
  align-items: start;
}

/* Card */
.mm-card {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--s-5);
  overflow: hidden;
}
.mm-card__head {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5);
  border-bottom: 1px solid var(--c-gray-light);
}
.mm-card__head--simple { justify-content: space-between; gap: var(--s-3); }
.mm-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--c-red);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.mm-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  margin: 0;
  letter-spacing: -.01em;
}
.mm-card__sub {
  font-size: 13px;
  color: var(--c-gray);
  margin: 2px 0 0;
}
.mm-card__opt { font-weight: 500; color: var(--c-gray); }
.mm-card__body { padding: var(--s-5); }

/* Form fields */
.mm-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.mm-fields--single { grid-template-columns: 1fr; }
.mm-fields--single .form-row,
.mm-fields--single p { grid-column: 1 / -1 !important; }
.mm-fields .form-row { margin-bottom: 0; }
.mm-fields .form-row-wide,
.mm-fields .form-row-first.address-field,
.mm-fields .notes,
.mm-fields p#order_comments_field { grid-column: 1 / -1; }
.mm-fields label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--c-gray);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.mm-fields label .required { color: var(--c-red); }
.mm-fields input[type="text"],
.mm-fields input[type="email"],
.mm-fields input[type="tel"],
.mm-fields input[type="number"],
.mm-fields input[type="password"],
.mm-fields textarea,
.mm-fields select,
.mm-fields .select2-selection {
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-black);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.mm-fields textarea { min-height: 84px; resize: vertical; font-family: var(--font-body); }
.mm-fields input:focus,
.mm-fields textarea:focus,
.mm-fields select:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px var(--c-red-soft);
}
.mm-fields .select2-container--default .select2-selection--single {
  height: 46px !important;
  border: 1px solid var(--c-gray-light) !important;
  border-radius: var(--radius-sm) !important;
}
.mm-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px !important;
  padding-left: 14px !important;
  color: var(--c-black);
}
.mm-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}

.mm-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--s-3) var(--s-4);
  background: var(--c-gray-lightest);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: var(--s-4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
}

/* Summary aside */
.mm-checkout__aside { position: sticky; top: 120px; align-self: start; }
.mm-summary {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
}
.mm-summary__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--c-gray-light);
}
/* Coupon collapsible inside summary */
.mm-coupon {
  margin: 0 0 var(--s-5);
  background: var(--c-gray-lightest);
  border-radius: var(--radius-sm);
  border: 1px dashed var(--c-gray-light);
  overflow: hidden;
}
.mm-coupon > summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--s-3) var(--s-4);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-black);
  user-select: none;
}
.mm-coupon > summary::-webkit-details-marker { display: none; }
.mm-coupon > summary svg { color: var(--c-red); flex-shrink: 0; }
.mm-coupon > summary span:first-of-type { flex: 1; }
.mm-coupon__chev {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--c-gray);
  transition: transform .2s ease;
}
.mm-coupon[open] .mm-coupon__chev { transform: rotate(45deg); }
.mm-coupon__body {
  padding: 0 var(--s-4) var(--s-4);
}
.mm-coupon__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}
.mm-coupon__row input {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mm-coupon__row input:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px var(--c-red-soft);
}
.mm-coupon__apply {
  padding: 10px 16px;
  background: var(--c-black);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s ease;
}
.mm-coupon__apply:hover { background: var(--c-red); }
.mm-coupon__apply:disabled { opacity: .6; cursor: not-allowed; }

.mm-summary__items {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-height: 320px;
  overflow-y: auto;
}
.mm-summary__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--s-3);
  align-items: center;
}
.mm-summary__media {
  position: relative;
  width: 56px; height: 56px;
  background: var(--c-gray-lightest);
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.mm-summary__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mm-summary__qty {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-summary__name {
  font-size: 13px;
  line-height: 1.4;
  color: var(--c-black);
}
.mm-summary__price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-black);
}

.mm-summary__totals {
  margin: 0 0 var(--s-5);
  padding: var(--s-4) 0;
  border-top: 1px solid var(--c-gray-light);
  border-bottom: 1px solid var(--c-gray-light);
}
.mm-summary__totals > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
}
.mm-summary__totals dt { color: var(--c-gray); font-size: 14px; }
.mm-summary__totals dd { font-family: var(--font-head); font-weight: 700; margin: 0; font-size: 14px; }
.mm-summary__totals .is-discount dd { color: #16a34a; }
.mm-summary__totals .is-total dt,
.mm-summary__totals .is-total dd {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--c-black);
}
.mm-summary__totals .is-total dd {
  font-size: 22px;
  color: var(--c-red);
}
.mm-summary__totals .is-total {
  padding-top: var(--s-3);
  margin-top: 4px;
  border-top: 1px dashed var(--c-gray-light);
}
.muted { color: var(--c-gray); font-size: 13px; font-style: italic; font-weight: 500; }

.mm-summary__shipping, .mm-summary__payment {
  margin-bottom: var(--s-5);
}
.mm-summary__shipping h4, .mm-summary__payment h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin: 0 0 var(--s-3);
}

.mm-pay {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-bottom: 8px;
  transition: all .15s ease;
  background: #fff;
}
.mm-pay:hover { border-color: var(--c-red); }
.mm-pay:has(input:checked) { border-color: var(--c-red); background: var(--c-red-soft); }
.mm-pay input { accent-color: var(--c-red); margin: 0; }
.mm-pay__name { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mm-pay__name strong { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--c-black); }
.mm-pay__name em { font-style: normal; font-size: 12px; color: var(--c-gray); line-height: 1.5; }
.mm-pay__name em p { margin: 0; }
.mm-pay__icon img { max-height: 24px; }

.mm-summary__place {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  background: var(--c-red) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--font-head) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: .02em !important;
  cursor: pointer;
  text-transform: none !important;
  transition: all .15s ease;
}
.mm-summary__place:hover {
  background: var(--c-red-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.mm-summary__notice {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  padding: var(--s-3) var(--s-4);
  margin: 0 0 var(--s-3);
  font-size: 13px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #92400e;
}
.mm-summary__terms {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-gray);
  margin: var(--s-3) 0 0;
}
.mm-summary__terms svg { color: #16a34a; }

/* ============================================================
   THANK YOU
   ============================================================ */
.mm-thankyou-page { background: #fff; }
.mm-thankyou-hero {
  padding: var(--s-12) 0 var(--s-9);
  background: linear-gradient(180deg, var(--c-gray-lightest) 0%, #fff 100%);
  text-align: center;
}
.mm-thankyou__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  margin-bottom: var(--s-5);
  box-shadow: 0 12px 32px rgba(22,163,74,.32);
  animation: mm-pop .6s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mm-pop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.mm-thankyou__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 var(--s-3);
}
.mm-thankyou__lead {
  font-size: 16px;
  color: var(--c-gray);
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.6;
}

.mm-thankyou-section { padding: 0 0 var(--s-12); }
.mm-thankyou-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.mm-thankyou__order-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-red);
  background: var(--c-red-soft);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.mm-thankyou__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  margin-bottom: var(--s-5);
  border-bottom: 1px dashed var(--c-gray-light);
}
.mm-thankyou__meta dt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  color: var(--c-gray);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mm-thankyou__meta dd { margin: 0; font-size: 14px; color: var(--c-black); }

.mm-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mm-status--processing,
.mm-status--on-hold { background: #fff3cd; color: #92400e; }
.mm-status--pending { background: var(--c-red-soft); color: var(--c-red); }
.mm-status--completed { background: #d1fae5; color: #065f46; }
.mm-status--cancelled,
.mm-status--failed { background: var(--c-gray-lightest); color: var(--c-gray); }

.mm-thankyou__items {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mm-thankyou__items li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: var(--s-4);
  align-items: center;
}
.mm-thankyou__media {
  width: 64px; height: 64px;
  background: var(--c-gray-lightest);
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mm-thankyou__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mm-thankyou__info strong { font-family: var(--font-head); font-weight: 700; font-size: 14px; display: block; }
.mm-thankyou__info span { font-size: 12px; color: var(--c-gray); }
.mm-thankyou__line {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-black);
}

.mm-thankyou__totals {
  margin: 0;
  padding: var(--s-4) 0 0;
  border-top: 1px dashed var(--c-gray-light);
}
.mm-thankyou__totals > div {
  display: flex; justify-content: space-between; padding: 4px 0;
}
.mm-thankyou__totals dt { color: var(--c-gray); font-size: 14px; }
.mm-thankyou__totals dd { font-family: var(--font-head); font-weight: 700; margin: 0; }
.mm-thankyou__totals .is-total dt,
.mm-thankyou__totals .is-total dd { font-size: 18px; color: var(--c-black); }
.mm-thankyou__totals .is-total dd { color: var(--c-red); font-size: 22px; }
.mm-thankyou__totals .is-total {
  padding-top: var(--s-3);
  margin-top: 4px;
  border-top: 1px dashed var(--c-gray-light);
}

.mm-payment-inst .mm-banks {
  list-style: none;
  margin: var(--s-4) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-3);
}
.mm-banks li {
  padding: var(--s-4);
  background: var(--c-gray-lightest);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--c-red);
}
.mm-banks__bank {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--c-gray);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mm-banks__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--c-black);
  margin-bottom: 2px;
  letter-spacing: -.01em;
}
.mm-banks__name { font-size: 13px; color: var(--c-gray); }

.mm-payment-inst__amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) var(--s-5);
  background: var(--c-red-soft);
  border-radius: var(--radius-sm);
  margin-top: var(--s-4);
}
.mm-payment-inst__amount span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-red);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.mm-payment-inst__amount strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--c-red);
}

.mm-thankyou__addr { font-style: normal; line-height: 1.7; font-size: 14px; color: var(--c-black); }

.mm-card--cta {
  background: linear-gradient(135deg, var(--c-black) 0%, #2a2a2a 100%);
  color: #fff;
  padding: var(--s-6);
  border-color: transparent;
}
.mm-card--cta h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; margin: 0 0 var(--s-2); color: #fff; }
.mm-card--cta p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0 0 var(--s-4); line-height: 1.6; }

.mm-thankyou__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: var(--s-3);
  transition: all .15s ease;
}
.mm-thankyou__wa:hover { background: #1da851; color: #fff; }

.mm-thankyou__continue {
  display: block;
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  text-decoration: none;
  padding: var(--s-2);
}
.mm-thankyou__continue:hover { color: #fff; }

.mm-link {
  color: var(--c-red);
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 13px;
}
.mm-link:hover { text-decoration: underline; }

/* ============================================================
   E-CATALOGUE — premium book-cover grid + PDF flipbook
   ============================================================ */
.mm-ecat { background: #fff; }
.ec-hero {
  text-align: center;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, var(--c-red-soft) 0%, transparent 62%), var(--c-gray-lightest);
}
.ec-hero__inner { max-width: 760px; margin: 0 auto; }
.ec-hero__title { font-family: var(--font-head); font-weight: 900; font-size: clamp(32px, 4.4vw, 50px); letter-spacing: -.02em; line-height: 1.05; margin: 0 0 var(--s-4); }
.ec-hero__lead { font-size: 16px; color: var(--c-gray); line-height: 1.6; margin: 0; }

.ec-grid-section { background: #fff; padding-top: 0 !important; padding-bottom: var(--s-13); }
.ec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-9) var(--s-7); }

.ec-card { cursor: pointer; border: 0; background: none; text-align: left; display: flex; flex-direction: column; }
.ec-card--soon { cursor: default; }

/* 3D book cover */
.ec-book { position: relative; aspect-ratio: 3 / 4; perspective: 1500px; }
.ec-book__cover {
  position: absolute; inset: 0;
  border-radius: 4px 8px 8px 4px;
  overflow: hidden;
  transform-origin: left center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  box-shadow: 0 12px 26px -12px rgba(17,17,17,.5), 0 3px 8px -4px rgba(17,17,17,.3);
  background: #0D47A1; z-index: 2;
}
.ec-book__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ec-book__pages {
  position: absolute; top: 2.5%; bottom: 2.5%; right: -1px; width: 13px;
  border-radius: 0 6px 6px 0;
  background: repeating-linear-gradient(90deg, #fff 0 1px, #dfe2e8 1px 3px);
  box-shadow: 0 12px 22px -10px rgba(17,17,17,.45); z-index: 1;
}
.ec-book__spine { position: absolute; top: 0; bottom: 0; left: 0; width: 11px; background: linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.05)); z-index: 3; }
.ec-book__gloss { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(255,255,255,.2) 0%, rgba(255,255,255,0) 34%); z-index: 3; pointer-events: none; }

.ec-book--blue .ec-book__cover { background: linear-gradient(160deg, #1559b8 0%, #0a2f6b 100%); }
.ec-book--red  .ec-book__cover { background: linear-gradient(160deg, #e7242b 0%, #8c1115 100%); }
.ec-book--dark .ec-book__cover { background: linear-gradient(160deg, #2a2f3a 0%, #111418 100%); }

.ec-book__art { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: var(--s-6) var(--s-4); text-align: center; color: #fff; }
.ec-book__art::before { content:""; position:absolute; inset:11px; border:1px solid rgba(255,255,255,.2); border-radius:4px; pointer-events:none; }
.ec-book__brand { font-family: var(--font-head); font-weight: 900; font-size: 16px; letter-spacing: -.02em; }
.ec-book__brand b { opacity: .82; }
.ec-book--red .ec-book__brand b { color: #ffd5d6; opacity: 1; }
.ec-book__kicker { font-family: var(--font-head); font-weight: 700; font-size: 8.5px; letter-spacing: .3em; opacity: .72; }
.ec-book__name { font-family: var(--font-head); font-weight: 900; font-size: clamp(15px, 1.5vw, 21px); line-height: 1.12; margin-top: 4px; text-transform: uppercase; }
.ec-book__rule { width: 32px; height: 3px; background: rgba(255,255,255,.7); border-radius: 2px; margin: 3px 0; }
.ec-book__foot { position: absolute; bottom: 15px; left: 0; right: 0; font-family: var(--font-head); font-weight: 700; font-size: 8px; letter-spacing: .2em; opacity: .55; }

.ec-book__open {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(10,12,16,.5); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transition: opacity .3s ease;
}
.ec-book__open-icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; background: var(--c-red); border-radius: 50%; box-shadow: 0 8px 18px -6px rgba(227,30,36,.7); }

.ec-card:not(.ec-card--soon):hover .ec-book__cover,
.ec-card:not(.ec-card--soon):focus-visible .ec-book__cover { transform: rotateY(-28deg); box-shadow: 20px 24px 44px -16px rgba(17,17,17,.55); }
.ec-card:not(.ec-card--soon):hover .ec-book__open,
.ec-card:not(.ec-card--soon):focus-visible .ec-book__open { opacity: 1; }

.ec-card__bar { margin-top: var(--s-4); background: var(--c-red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .03em; text-align: center; padding: 12px var(--s-3); border-radius: var(--radius-sm); text-transform: uppercase; line-height: 1.25; transition: background .15s ease; }
.ec-card:not(.ec-card--soon):hover .ec-card__bar { background: var(--c-red-dark); }
.ec-card--soon .ec-card__bar { background: var(--c-gray); }
.ec-card--soon .ec-book__open { opacity: 0; }
.ec-card--soon:hover .ec-book__open { opacity: 1; background: rgba(10,12,16,.4); }

.ec-empty { text-align: center; padding: var(--s-12) 0; }
.ec-empty h2 { font-family: var(--font-head); font-weight: 800; margin: 0 0 var(--s-3); }
.ec-empty p { color: var(--c-gray); }

/* ----- Flipbook modal ----- */
.ec-modal { position: fixed; inset: 0; z-index: 9999; display: none; flex-direction: column; }
.ec-modal.is-open { display: flex; }
.ec-modal__backdrop { position: absolute; inset: 0; background: rgba(8,9,12,.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: ec-fade .25s ease; }
@keyframes ec-fade { from { opacity: 0; } to { opacity: 1; } }
.ec-modal__dialog { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; background: radial-gradient(ellipse 80% 60% at 50% 38%, #2a2f3a 0%, #14161c 68%, #0c0d11 100%); animation: ec-pop .35s cubic-bezier(.2,.8,.3,1); }
@keyframes ec-pop { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
.ec-modal__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); padding: 12px var(--s-5); background: rgba(0,0,0,.42); color: #fff; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ec-modal__title { font-family: var(--font-head); font-weight: 800; font-size: 15px; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ec-modal__actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ec-modal__pages { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: rgba(255,255,255,.7); margin-right: 6px; min-width: 54px; text-align: center; }
.ec-modal__btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,255,255,.1); color: #fff; border: none; cursor: pointer; text-decoration: none; transition: background .15s ease; }
.ec-modal__btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.ec-modal__close:hover { background: var(--c-red); }
.ec-modal__stage { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; gap: var(--s-3); padding: var(--s-5) var(--s-4); }
.ec-book-viewport { flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; min-width: 0; min-height: 0; }
/* StPageFlip runs with autoSize:false; its book element is given an explicit
   pixel size from the measured stage in JS (sizeBook()), so it fits within the
   available width AND height on every device. The wrapper must fill that box
   (autoSize off → no padding-bottom), else its block collapses to minHeight. */
.ec-flipbook { margin: 0; }
.ec-flipbook .stf__wrapper { height: 100% !important; padding-bottom: 0 !important; }
.ec-flipbook img { width: 100%; height: 100%; display: block; }
#ec-iframe-fallback { width: min(1000px,100%); height: 100%; border: 0; border-radius: 6px; background: #fff; }
.ec-nav { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease; }
.ec-nav:hover { background: var(--c-red); border-color: var(--c-red); transform: scale(1.06); }
.ec-loader { position: absolute; inset: 0; z-index: 5; display: none; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-4); background: rgba(12,13,17,.62); color: #fff; }
.ec-loader__spin { width: 46px; height: 46px; border: 3px solid rgba(255,255,255,.18); border-top-color: var(--c-red); border-radius: 50%; animation: ec-spin .8s linear infinite; }
@keyframes ec-spin { to { transform: rotate(360deg); } }
.ec-loader__text { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.ec-loader__track { width: 220px; max-width: 60vw; height: 4px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.ec-loader__bar { display: block; height: 100%; width: 0; background: var(--c-red); border-radius: 3px; transition: width .25s ease; }

/* Admin file field (PDF picker) */
.mm-file-field { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mm-file-field .mm-file-icon { font-size: 18px; }
.mm-file-field .mm-file-name { font-size: 13px; color: #50575e; flex: 1; min-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* ============================================================
   RESPONSIVE — pages + products
   ============================================================ */
@media (max-width: 1024px) {
  .tk-hero__inner,
  .sb-hero__inner,
  .sc-hero__inner { grid-template-columns: 1fr; }
  .tk-hero__visual,
  .sb-hero__visual,
  .sc-hero__map { max-width: 560px; margin: 0 auto; }
  .tk-story__inner { grid-template-columns: 1fr; }
  .tk-story__head { position: static; }
  .tk-values__grid,
  .sb-services__grid,
  .sb-why__grid { grid-template-columns: repeat(2, 1fr); }
  .sb-ind__grid { grid-template-columns: repeat(3, 1fr); }
  .br-grid,
  .sc-loc__grid,
  .nw-grid { grid-template-columns: repeat(2, 1fr); }
  .ec-grid { grid-template-columns: repeat(3, 1fr); }
  .nw-feat { grid-template-columns: 1fr; }
  .nw-feat__copy { padding: var(--s-6) var(--s-7) var(--s-8); }
  .sc-cc__inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .mm-branches { grid-template-columns: 1fr; }
  .mm-branches__map-wrap { min-height: 380px; }
  .mm-branches__list-wrap { max-height: 380px; }
  .mm-single-hero__inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .mm-gallery { position: static; }
  .mm-cart-grid { grid-template-columns: 1fr; }
  .mm-cart-summary { position: static; }
  .mm-checkout__grid { grid-template-columns: 1fr; }
  .mm-checkout__aside { position: static; }
  .mm-thankyou-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mm-page > section { padding: var(--s-10) 0; }
  .mm-page > section:first-of-type { padding-top: var(--s-11); }
  .tk-vm__inner { grid-template-columns: 1fr; }
  .tk-values__grid,
  .sb-services__grid,
  .sb-why__grid,
  .sb-ind__grid,
  .br-grid,
  .sc-loc__grid,
  .nw-grid { grid-template-columns: 1fr; }
  .comment-form { grid-template-columns: 1fr; }
  .mm-post__hero { padding: var(--s-9) 0 var(--s-5); }
  .mm-post__body { padding: var(--s-7) 0 var(--s-5); }
  .comment-respond { padding: var(--s-6) var(--s-5); }
  .comment-list .children { margin-left: var(--s-3); padding-left: var(--s-4); }
  .ec-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-4); }
  .ec-card__bar { font-size: 11px; padding: 9px var(--s-2); }
  .ec-modal { padding: 0; }
  .ec-modal__dialog { width: 100%; height: 100%; border-radius: 0; }
  /* Give the page the full stage width — overlay the nav arrows instead of
     letting them flank (and shrink) the book on narrow screens. */
  .ec-modal__stage { padding: var(--s-2); gap: 0; }
  .ec-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 40px; height: 40px; background: rgba(0,0,0,.5); }
  .ec-nav:hover { transform: translateY(-50%) scale(1.06); }
  .ec-nav--prev { left: 6px; }
  .ec-nav--next { right: 6px; }
  .tk-vm__card { padding: var(--s-7) var(--s-6); }
  .tk-cta__inner,
  .sb-cta__inner,
  .br-cta__inner { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
  .sc-cc__main { text-align: left; }
  .sc-cc__wa { flex-direction: column; }
  .sc-cc__wa-btn { width: 100%; }
  .sb-ind__grid { grid-template-columns: repeat(2, 1fr); }
  .tk-hero__badge { left: 0; bottom: -12px; }
  .br-hero__title { font-size: clamp(32px, 8vw, 44px); }
  .mm-prod__title { font-size: 13px; min-height: 2.6em; }
  .mm-prod__price-now { font-size: 14px; }
  .mm-prod__body { padding: var(--s-3); gap: 6px; }
  .mm-prod__brand { font-size: 9px; padding: 3px 7px; letter-spacing: .08em; }
  .mm-prod__discount { font-size: 11px; padding: 3px 6px; }
  .mm-shop-filter__inner { overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--s-3); scrollbar-width: thin; }
  .mm-shop-filter__inner::-webkit-scrollbar { height: 6px; }

  .mm-info { padding: var(--s-5); }
  .mm-info__cta .btn-cart,
  .mm-info__cta .btn-buy,
  .mm-info__cta .btn-wa { padding: 12px 8px; font-size: 13px; gap: 6px; }
  .mm-info__features { grid-template-columns: 1fr; }

  .mm-cart__head { display: none; }
  .mm-cart-item {
    grid-template-columns: 80px 1fr 36px;
    grid-template-areas:
      "media info delete"
      "media price delete"
      "qty   sub   delete";
    gap: var(--s-3);
    padding: var(--s-4);
  }
  .mm-cart-item__media { grid-area: media; width: 80px; height: 80px; }
  .mm-cart-item__info { grid-area: info; }
  .mm-cart-item__price { grid-area: price; text-align: left; font-size: 13px; color: var(--c-gray); }
  .mm-cart-item__qty { grid-area: qty; justify-content: flex-start; }
  .mm-cart-item__sub { grid-area: sub; text-align: right; }
  .mm-cart-item__remove { grid-area: delete; align-self: start; }

  .mm-fields { grid-template-columns: 1fr; }
  .mm-thankyou__meta { grid-template-columns: 1fr; }
  .mm-thankyou__items li { grid-template-columns: 56px 1fr; gap: var(--s-3); }
  .mm-thankyou__line { grid-column: 1 / -1; text-align: right; }
}

@media (max-width: 480px) {
  .mm-prod__body { padding: 10px; gap: 4px; }
  .mm-prod__meta { font-size: 11px; }
  .mm-prod__stock { font-size: 10px; }

  .mm-info__title { font-size: 18px; }
  .mm-info__price-now { font-size: 26px; }
  .mm-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
  /* Tightest layout — keep 3 cols but icon-only with truncated label */
  .mm-info__cta .btn-cart,
  .mm-info__cta .btn-buy,
  .mm-info__cta .btn-wa { padding: 11px 6px; font-size: 12px; }
  .mm-info__cta .btn-label { font-size: 11px; letter-spacing: 0; }
}

@media (max-width: 480px) {
  .tk-hero__highlights { gap: var(--s-3) var(--s-4); }
  .tk-story__p { font-size: 15px; }
  .tk-story__p--first::first-letter { font-size: 48px; }
  .sb-ind__grid { grid-template-columns: 1fr; }
  .sb-why__num { font-size: 40px; }
}

/* ============================================================
   MY ACCOUNT (WooCommerce) — scoped to .woocommerce-account
   ============================================================ */
/* Dashboard layout: float sidebar — deterministic vs WC core CSS (same
   specificity, load-order dependent) & the .entry-content prose. Only targets
   the account nav/content, so the logged-out login form is untouched.
   !important is used on the few layout-critical props to win reliably. */
.woocommerce-account .woocommerce::after { content: ""; display: block; clear: both; }

/* Sidebar nav */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left !important;
  width: 248px !important;
  margin: var(--s-5) 0 var(--s-6) !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none !important;
  margin: 0 !important;
  padding: var(--s-2);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
}
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0 !important; padding: 0 !important; list-style: none !important; }
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 11px 15px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-black);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--c-gray-lightest);
  color: var(--c-red);
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--c-red); color: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover { background: var(--c-red-dark); }

/* Content card */
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
  margin: var(--s-5) 0 var(--s-6) 280px !important;
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-7);
  font-size: 15px;
  line-height: 1.7;
  color: #3f4651;
}
.woocommerce-account .woocommerce-MyAccount-content p { margin: 0 0 var(--s-4); }
.woocommerce-account .woocommerce-MyAccount-content p:last-child { margin-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-content a { color: var(--c-red); font-weight: 600; text-decoration: none; }
.woocommerce-account .woocommerce-MyAccount-content a:hover { text-decoration: underline; }
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-black);
  margin: 0 0 var(--s-4);
}

/* Tables — orders / downloads / addresses */
.woocommerce-account .woocommerce table.shop_table,
.woocommerce-account table.woocommerce-orders-table,
.woocommerce-account table.woocommerce-MyAccount-downloads {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 14px;
  margin: 0;
}
.woocommerce-account .woocommerce table.shop_table th {
  background: var(--c-gray-lightest);
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-gray);
  border: none;
}
.woocommerce-account .woocommerce table.shop_table td {
  padding: 13px 14px;
  border-top: 1px solid var(--c-gray-light);
  color: #3f4651;
}

/* Forms — account details / addresses / login */
.woocommerce-account .woocommerce form .form-row { margin: 0 0 var(--s-4); padding: 0; }
.woocommerce-account .woocommerce form label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--c-black);
}
.woocommerce-account .woocommerce form .input-text,
.woocommerce-account .woocommerce form input[type="text"],
.woocommerce-account .woocommerce form input[type="email"],
.woocommerce-account .woocommerce form input[type="password"],
.woocommerce-account .woocommerce form input[type="tel"],
.woocommerce-account .woocommerce form select,
.woocommerce-account .woocommerce form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  box-sizing: border-box;
}
.woocommerce-account .woocommerce form .input-text:focus,
.woocommerce-account .woocommerce form select:focus,
.woocommerce-account .woocommerce form textarea:focus {
  outline: none;
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px var(--c-red-soft);
}
.woocommerce-account .woocommerce form span em { color: var(--c-gray); font-size: 12px; font-style: normal; }

/* Buttons */
.woocommerce-account .woocommerce .button,
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input.button,
.woocommerce-account .woocommerce-Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-red);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, transform .15s ease, box-shadow .18s ease;
}
.woocommerce-account .woocommerce .button:hover,
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce input.button:hover,
.woocommerce-account .woocommerce-Button:hover {
  background: var(--c-red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Login / register (logged out) */
.woocommerce-account .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
  margin-top: var(--s-5);
}
.woocommerce-account .u-columns .col-1,
.woocommerce-account .u-columns .col-2,
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 { width: auto; float: none; }
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: #fff;
  border: 1px solid var(--c-gray-light);
  border-radius: var(--radius-lg);
  padding: var(--s-6) var(--s-7);
}
.woocommerce-account .woocommerce > .woocommerce-form-login,
.woocommerce-account .woocommerce > .woocommerce-form-register { max-width: 480px; margin: var(--s-5) auto 0; }
.woocommerce-account .woocommerce-form-login .button,
.woocommerce-account .woocommerce-form-register .button { width: 100%; margin-top: var(--s-2); }
.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme { font-size: 13px; color: var(--c-gray); }

@media (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-navigation { float: none !important; width: auto !important; margin-bottom: var(--s-4) !important; }
  .woocommerce-account .woocommerce-MyAccount-content { margin-left: 0 !important; margin-top: 0 !important; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul { flex-direction: row; flex-wrap: wrap; }
  .woocommerce-account .woocommerce-MyAccount-navigation li a { font-size: 13px; padding: 9px 13px; }
  .woocommerce-account .woocommerce-MyAccount-content { padding: var(--s-5); }
  .woocommerce-account .u-columns { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce table.shop_table { font-size: 13px; }
  .woocommerce-account .woocommerce table.shop_table th,
  .woocommerce-account .woocommerce table.shop_table td { padding: 10px 11px; }
}

/* ============================================================
   WISHLIST — heart button on product cards + Favorit page
   ============================================================ */
.mm-prod { position: relative; }   /* anchor for the heart button */
.mm-prod__fav {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #9aa1ac;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px -2px rgba(0,0,0,.28);
  transition: transform .15s ease, color .15s ease, background .15s ease;
}
.mm-prod__fav svg { display: block; transition: fill .15s ease; }
.mm-prod__fav:hover { transform: scale(1.12); color: var(--c-red); background: #fff; }
.mm-prod__fav.is-on { color: var(--c-red); }
.mm-prod__fav.is-on svg { fill: var(--c-red); }

.mm-fav-loading {
  padding: var(--s-9) 0;
  text-align: center;
  color: var(--c-gray);
  font-family: var(--font-head);
  font-weight: 600;
}
