.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--space-4);
  padding-bottom: 96px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--color-bg) 92%, transparent),
    color-mix(in srgb, var(--color-bg) 72%, transparent)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-border);
}

.topbar a {
  text-decoration: none;
}

.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(14px, 1.8vw, 22px) 28px;

  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 16px;
  overflow: visible;
}

/* left / center / right slots */
.topbar-inner .nav-left {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}

.topbar-inner .brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
}

.topbar-inner .nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

/* RIGHT wrapper (text links + icon nav) */
.topbar-inner .nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.topbar-inner .nav-right-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.brandLogo {
  height: clamp(52px, 3.4vw, 62px);
  width: auto;
  max-width: min(320px, 52vw);
  object-fit: contain;
  display: block;
}

/* =========================
   ICON BUTTON
   - right icons (.iconBtn) => transparan (tanpa bulet putih)
   - burger button (.burgerBtn) => bulet
   - drawer close (.drawer__close-button) => bulet
   ========================= */

/* Burger + Close: tetap bulet */
:where(.nav-left .burgerBtn, .drawer__close-button) {
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: color-mix(in srgb, var(--color-surface) 86%, transparent);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);

  color: var(--color-primary);
  cursor: pointer;
  position: relative;

  transition:
    background-color 0.12s ease,
    transform 0.12s ease;
}

:where(.nav-left .burgerBtn, .drawer__close-button):hover {
  background: color-mix(
    in srgb,
    var(--color-primary-tint) 42%,
    var(--color-surface)
  );
}

:where(.nav-left .burgerBtn, .drawer__close-button):active {
  transform: translateY(1px);
}

:where(.nav-left .burgerBtn, .drawer__close-button):focus-visible {
  outline: 3px solid var(--focus-ring-primary);
  outline-offset: 2px;
}

/* Icon kanan: ukuran sama, tapi TANPA buletan putih */
.nav-icons .iconBtn {
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent; /* <-- hilangin bulat putih */
  box-shadow: none;

  color: var(--color-primary);
  cursor: pointer;
  position: relative;

  transition:
    opacity 0.12s ease,
    transform 0.12s ease;
}

.nav-icons .iconBtn:hover {
  opacity: 0.78;
}
.nav-icons .iconBtn:active {
  transform: translateY(1px);
}
.nav-icons .iconBtn:focus-visible {
  outline: 3px solid var(--focus-ring-primary);
  outline-offset: 2px;
}

/* SVG strokes always visible */
.nav-icons .iconBtn svg,
.nav-icons .iconBtn svg * {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  opacity: 1;
  visibility: visible;
}

.nav-left .burgerBtn svg,
.nav-left .burgerBtn svg * {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  opacity: 1;
  visibility: visible;
}

/* Screen-reader only helper */
.icon__fallback-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   HEADER LEFT LINKS + DROPDOWN (v1)
   ========================= */

/* Desktop link list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}

.navLink,
.ddBtn {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 8px 6px;
  border-radius: 12px;
  cursor: pointer;
}

.navLink:hover,
.ddBtn:hover {
  background: color-mix(in srgb, var(--color-primary-tint) 22%, transparent);
}

/* Dropdown wrapper */
.navDD {
  position: relative;
}

.ddBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ddChevron {
  width: 14px;
  height: 14px;
  display: block;
  transition: transform 0.14s ease;
}

.navDD.is-open .ddChevron {
  transform: rotate(180deg);
}

.ddMenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #f0f5fe;
  border: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.12);
  padding: 8px;
  z-index: 200;
}

.ddMenu a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
  text-decoration: none;
}

.ddMenu a:hover {
  background: color-mix(in srgb, var(--color-primary-tint) 26%, transparent);
}

/* Mobile rules: header tanpa teks (cukup ikon) */
@media (max-width: 820px) {
  .nav-links {
    display: none !important;
  }
  .topbar-inner .nav-right-links {
    display: none !important;
  }
  .topbar-inner .nav-right {
    gap: 0 !important;
  }
}

/* Burger: tampil di desktop & mobile */
@media (min-width: 821px) {
  .nav-left .burgerBtn {
    display: inline-flex;
  }
}
@media (max-width: 820px) {
  .nav-left .burgerBtn {
    display: inline-flex;
  }
}

/* =========================
   PILL + FLASH
   ========================= */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-surface) 70%, transparent);
  border-radius: var(--r-pill);
  padding: 8px 12px;

  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.pill:hover {
  text-decoration: none;
  background: color-mix(
    in srgb,
    var(--color-primary-tint) 55%,
    var(--color-surface)
  );
  border-color: color-mix(
    in srgb,
    var(--color-primary) 25%,
    var(--color-border)
  );
}

.pill:focus-visible {
  outline: 3px solid var(--focus-ring-primary);
  outline-offset: 2px;
}

.flash {
  margin: var(--space-3) var(--space-4) 0;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.flash .ok {
  background: color-mix(in srgb, var(--color-success) 14%, white);
  border: 1px solid
    color-mix(in srgb, var(--color-success) 35%, var(--color-border));
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--color-accent-teal-ink);
}

/* =========================
   HEADER — MOBILE (<=820)
   ========================= */
@media (max-width: 820px) {
  .topbar-inner {
    max-width: 100%;
    padding: 10px 12px; /* lebih rapih ke pinggir */
    display: flex; /* stop grid di mobile */
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative; /* untuk absolute brand */
    box-sizing: border-box;
  }

  /* kiri/kanan jangan maksa lebar */
  .topbar-inner .nav-left,
  .topbar-inner .nav-right,
  .topbar-inner .nav {
    min-width: 0;
  }

  /* logo selalu center */
  .topbar-inner .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-self: auto;
  }

  .brandLogo {
    height: 42px;
    max-width: min(210px, 52vw); /* cegah overlap ikon */
  }

  /* rapatkan ikon kanan */
  .topbar-inner .nav-right {
    gap: 8px;
  }
  .topbar-inner .nav {
    gap: 8px;
  }

  /* kecilkan tombol biar padding terasa pas */
  :where(.nav-left .burgerBtn, .drawer__close-button),
  .nav-icons .iconBtn {
    width: 38px;
    height: 38px;
  }

  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg * {
    width: 18px;
    height: 18px;
  }
}

/* =========================
   DRAWER (mobile menu)
   ========================= */

body.drawer-open {
  overflow: hidden;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.drawer.drawer--is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: none;
  background: rgba(15, 23, 42, 0.22);
}

.drawer__contents {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(360px, 88vw);
  background: #f0f5fe;
  border-right: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transform: translateX(-104%);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.drawer.drawer--is-open .drawer__contents {
  transform: translateX(0);
}

.drawer__fixed-header {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--color-border);
  background: #f0f5fe;
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.drawer__title {
  display: none;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: var(--color-text);
}

/* Close button svg sizing */
.drawer__close-button svg,
.drawer__close-button svg * {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
}

.drawer__scrollable {
  flex: 1;
  overflow: auto;
  padding: 12px 10px 18px;

  scrollbar-width: thin;
  scrollbar-color: rgba(17, 24, 39, 0.28) transparent;
}

.drawer__scrollable::-webkit-scrollbar {
  width: 8px;
}
.drawer__scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.drawer__scrollable::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.22);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.drawer__scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(17, 24, 39, 0.3);
  border: 2px solid transparent;
  background-clip: content-box;
}

.drawer__divider {
  background: color-mix(in srgb, var(--color-border) 70%, transparent);
  height: 1px;
  margin: 14px 10px;
}

/* =========================
   MOBILE NAV LISTS
   ========================= */

.mobile-nav,
.mobile-nav__sublist,
.mobile-nav__grandchildlist,
.mobile-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__item {
  margin: 0;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--color-text);
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav__link:hover {
  background: color-mix(
    in srgb,
    var(--color-primary-tint) 50%,
    var(--color-surface)
  );
}

.mobile-nav__link--top-level {
  border-bottom: 1px solid
    color-mix(in srgb, var(--color-border) 70%, transparent);
  border-radius: 0;
  padding: 14px 12px;
}

.mobile-nav__link--top-level:hover {
  background: color-mix(in srgb, var(--color-primary-tint) 28%, #f0f5fe);
}

.mobile-nav__sublist {
  padding-left: 10px;
}
.mobile-nav__grandchildlist {
  padding-left: 16px;
}

.mobile-nav__grandchildlist .mobile-nav__link {
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 10px;
}

.mobile-nav__menu {
  border-top: 1px solid color-mix(in srgb, var(--color-border) 70%, transparent);
  margin-top: 14px;
  padding-top: 12px;
}

.mobile-nav__menu-item a {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
}
.mobile-nav__menu-item a:hover {
  background: color-mix(
    in srgb,
    var(--color-primary-tint) 45%,
    var(--color-surface)
  );
}

/* Collapsible controls */
.mobile-nav__toggle .collapsible-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav__link--button.collapsible-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.mobile-nav__faux-link {
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: color-mix(in srgb, var(--color-text) 78%, transparent);
}

.collapsible-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.collapsible-trigger__icon svg {
  width: 13px;
  height: 13px;
  display: block;
}
.collapsible-trigger__icon svg path {
  stroke: currentColor;
  stroke-width: 2;
}

.mobile-nav__link--button.collapsible-trigger:hover,
.mobile-nav__toggle .collapsible-trigger:hover {
  background: color-mix(in srgb, var(--color-primary-tint) 26%, #f0f5fe);
}

.icon-chevron-down {
  transition: transform 0.16s ease;
}
.collapsible-trigger[aria-expanded="true"] .icon-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav__has-sublist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mobile-nav__has-sublist > .mobile-nav__link--top-level {
  flex: 1 1 auto;
  display: block;
  padding-right: 6px;
}
.mobile-nav__has-sublist > .mobile-nav__toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* =========================
   HOME (page-home) — HERO
   ========================= */

body.page-home {
  overflow-x: hidden;
}

/* Topbar fixed on home */
body.page-home .topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  z-index: 120;
}

body.page-home .topbar.is-scrolled {
  background: rgba(244, 250, 255, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  body.page-home .topbar.is-scrolled {
    background: rgba(244, 250, 255, 0.92);
  }
}

/* full-bleed wrap on home */
body.page-home .wrap {
  max-width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 0;
}

/* background canvas (under hero) */
body.page-home .ldv-bg {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;

  overflow-x: hidden;
  overflow-y: visible;

  background-color: var(--color-bg);
  background-image: url("/assets/home/billys-template-home2.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media (min-width: 961px) {
  body.page-home .ldv-bg {
    background-attachment: fixed;
  }
}

body.page-home .ldv-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-bg) 45%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 60%, transparent) 35%,
    color-mix(in srgb, var(--color-bg) 78%, transparent) 70%,
    color-mix(in srgb, var(--color-bg) 92%, transparent) 100%
  );
}

body.page-home .ldv-bg > * {
  position: relative;
  z-index: 1;
}

/* hero */
body.page-home .ldv-hero {
  position: relative;
  width: 100%;
  margin: 0;

  min-height: 100vh;
  min-height: 100svh;

  border: 0;
  border-radius: 0;
  box-shadow: none;

  background-image: url("/assets/home/billys-banner-home1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: calc(96px + env(safe-area-inset-top));
  padding-bottom: 64px;
  box-sizing: border-box;

  overflow: visible;
}

body.page-home .ldv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-bg) 92%, transparent) 0%,
    color-mix(in srgb, var(--color-bg) 82%, transparent) 40%,
    color-mix(in srgb, var(--color-bg) 55%, transparent) 65%,
    color-mix(in srgb, var(--color-bg) 10%, transparent) 100%
  );
}

body.page-home .ldv-hero > * {
  position: relative;
  z-index: 1;
}

/* inner — single column + center */
body.page-home .ldv-heroInner {
  position: relative;
  z-index: 1;

  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 clamp(14px, 4vw, 56px);

  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;

  overflow: visible;
}

body.page-home .ldv-heroCopy {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

body.page-home .ldv-kicker,
body.page-home .ldv-title,
body.page-home .ldv-sub,
body.page-home .ldv-proof {
  text-align: center;
}

body.page-home .ldv-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

body.page-home .ldv-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  line-height: 1;
}

/* proof */
body.page-home .ldv-proof {
  margin-top: 12px;
  color: color-mix(in srgb, var(--color-text) 86%, transparent);
}
body.page-home .ldv-proof > div + div {
  margin-top: 4px;
}
body.page-home .ldv-proof strong {
  color: var(--color-text);
  font-weight: 800;
}

/* home responsive */
@media (max-width: 960px) {
  body.page-home .ldv-hero {
    background-position: 70% 20%;
    padding-top: calc(124px + env(safe-area-inset-top));
    padding-bottom: 46px;
  }

  body.page-home .ldv-hero::before {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-bg) 90%, transparent) 0%,
      color-mix(in srgb, var(--color-bg) 70%, transparent) 55%,
      color-mix(in srgb, var(--color-bg) 20%, transparent) 100%
    );
  }

  body.page-home .ldv-title {
    white-space: normal !important;
    overflow-wrap: anywhere;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  body.page-home .ldv-heroInner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 390px) {
  body.page-home .ldv-heroInner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  body.page-home .ldv-title {
    max-width: 16ch;
  }
}

/* =========================
   CATEGORY (index + show)
   ========================= */

.cat-hero {
  padding: 110px 0 22px;
  background: #f0f5fe;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.cat-hero-inner {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.crumbs {
  font-size: 12px;
  color: rgba(17, 24, 39, 0.62);
}
.crumbs a {
  color: inherit;
  text-decoration: none;
}
.crumbs .sep {
  margin: 0 8px;
  opacity: 0.6;
}

.cat-title {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.cat-desc {
  margin: 10px 0 0;
  max-width: 62ch;
  color: rgba(17, 24, 39, 0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-hero-banner {
  width: min(520px, 42%);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

@media (max-width: 860px) {
  .cat-hero {
    padding-top: 96px;
  }
  .cat-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cat-hero-banner {
    width: 100%;
  }
}

.cat-index {
  padding-top: 18px;
  padding-bottom: 60px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1100px) {
  .cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cat-card {
  display: block;
  padding: 16px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: inherit;
}
.cat-card-title {
  font-weight: 700;
}
.cat-card-sub {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(17, 24, 39, 0.62);
}

.cat-products {
  padding-top: 18px;
  padding-bottom: 70px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1100px) {
  .prod-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 780px) {
  .prod-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.prod-card {
  display: block;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  color: inherit;
}

.prod-thumb {
  aspect-ratio: 1 / 1;
  background: rgba(17, 24, 39, 0.04);
}
.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-thumb-ph {
  width: 100%;
  height: 100%;
}

.prod-body {
  padding: 12px;
}
.prod-title {
  font-size: 13.5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-price {
  margin-top: 8px;
  font-weight: 800;
}

.prod-pager {
  margin-top: 18px;
}

.empty-state {
  padding: 18px;
  border: 1px dashed rgba(17, 24, 39, 0.2);
  border-radius: 14px;
  color: rgba(17, 24, 39, 0.7);
}

/* =========================
   SHOP (scoped via .page-shop) — MOBILE TIGHT (Shopee-like)
   ========================= */

/* Head */
.page-shop .shopHead {
  padding-top: 14px;
}
.page-shop .shopTitle {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.page-shop .shopSub {
  margin: 6px 0 0;
  opacity: 0.72;
}

/* Tools (search + sort) */
.page-shop .shopTools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}
.page-shop .shopSearch {
  width: min(520px, 100%);
  padding: 11px 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 12px;
  background: #fff;
}
.page-shop .shopSelect {
  min-width: 220px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 12px;
  background: #fff;
}

/* MOBILE: rapatkan spacing & bikin tools enak */
@media (max-width: 640px) {
  .page-shop .shopHead {
    padding-top: 10px;
  }
  .page-shop .shopTitle {
    font-size: 20px;
  }

  .page-shop .shopTools {
    gap: 8px;
    margin: 10px 0 12px;
  }

  .page-shop .shopSearch,
  .page-shop .shopSelect {
    padding: 10px 11px;
    border-radius: 11px;
  }

  /* sort dropdown jangan kepanjangan di HP */
  .page-shop .shopSelect {
    min-width: 0;
    width: 100%;
  }
}

/* Grid listing */
.page-shop .shopGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px; /* lebih rapat */
}

/* Desktop */
@media (min-width: 900px) {
  .page-shop .shopGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

/* Card */
.page-shop .shopCard {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
  display: block;
}

/* Thumb */
.page-shop .shopThumb {
  aspect-ratio: 1/1;
  background: #f4faff;
}
.page-shop .shopThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-shop .shopThumbPlaceholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4faff, #eef5ff);
}

/* Meta */
.page-shop .shopMeta {
  padding: 10px 10px 12px;
}
.page-shop .shopName {
  font-weight: 600;
  line-height: 1.25;
  font-size: 13px;

  /* clamp 2 baris biar rapih kayak marketplace */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-shop .shopPrice {
  margin-top: 6px;
  opacity: 0.85;
  font-size: 13px;
  font-weight: 700;
}

/* MOBILE: card lebih compact lagi */
@media (max-width: 640px) {
  .page-shop .shopGrid {
    gap: 8px;
  }
  .page-shop .shopCard {
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(17, 24, 39, 0.06);
  }
  .page-shop .shopMeta {
    padding: 9px 9px 11px;
  }
  .page-shop .shopName {
    font-size: 12.5px;
  }
  .page-shop .shopPrice {
    font-size: 12.5px;
  }
}

.page-shop .shopPager {
  margin: 14px 0 0;
}

/* =========================
   SHOP v2 (banner + best sellers + sidebar)
   ========================= */

.page-shop .shopHero {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 12px 0 16px;
}
@media (max-width: 900px) {
  .page-shop .shopHero {
    height: 210px;
    border-radius: 14px;
    margin: 10px 0 14px;
  }
}
@media (max-width: 640px) {
  .page-shop .shopHero {
    height: 190px;
    border-radius: 12px;
  }
}

/* Best sellers header */
.page-shop .bestHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0 10px;
}
.page-shop .bestTitle {
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.page-shop .bestAll {
  font-size: 13px;
  text-decoration: none;
}

/* Best scroller (lebih rapat ala marketplace) */
.page-shop .bestScroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .page-shop .bestScroller {
    grid-auto-columns: 190px;
    gap: 8px;
  }
}

.page-shop .bestCard {
  scroll-snap-align: start;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: block;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}
.page-shop .bestThumb {
  aspect-ratio: 1/1;
  background: #f4faff;
}
.page-shop .bestThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-shop .bestThumbPlaceholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f4faff, #eef5ff);
}
.page-shop .bestMeta {
  padding: 9px 9px 11px;
}
.page-shop .bestName {
  font-weight: 600;
  line-height: 1.25;
  font-size: 12.5px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-shop .bestPrice {
  margin-top: 6px;
  opacity: 0.85;
  font-size: 12.5px;
  font-weight: 700;
}

/* Layout */
.page-shop .shopLayout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .page-shop .shopLayout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar categories */
.page-shop .catWidget {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  position: sticky;
  top: 96px;
}
.page-shop .catTitle {
  font-weight: 700;
  margin-bottom: 10px;
}
.page-shop .catList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-shop .catLink {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
}
.page-shop .catLink.is-active {
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(17, 24, 39, 0.04);
}

/* Sidebar nested categories */
.page-shop .catGroup {
  margin-top: 4px;
}
.page-shop .catDetails {
  border-radius: 12px;
}

.page-shop .catSummary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 0;
}
.page-shop .catSummary::-webkit-details-marker {
  display: none;
}

.page-shop .catChevron {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  transition: transform 0.14s ease;
  opacity: 0.7;
}
.page-shop details[open] .catChevron {
  transform: rotate(90deg);
}

.page-shop .catLink--parent {
  padding: 8px 10px;
  flex: 1;
}

.page-shop .catSubList {
  list-style: none;
  margin: 4px 0 6px 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-shop .catLink--child {
  padding: 8px 10px;
}

/* MOBILE: sidebar category card jangan “ngambil ruang” kebesaran */
@media (max-width: 900px) {
  .page-shop .catWidget {
    position: static;
    top: auto;
    padding: 12px;
    border-radius: 12px;
  }
}

/* =========================
   PROFILE ICON + AUTH TEXT
   ========================= */

.nav-icons .profileAuth {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icons .profileAuthText {
  font-size: 12px;
  font-weight: 600; /* kecil dan tetap rapi */
  color: var(--color-text);
  text-decoration: none;
  opacity: 0.85;
  line-height: 1;
}

.nav-icons .profileAuthText:hover {
  opacity: 1;
}

.nav-icons .profileAvatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 820px) {
  .nav-icons .profileAuthText {
    font-size: 11px;
  }
  .nav-icons .profileAvatar {
    width: 24px;
    height: 24px;
  }
}

/* STICKY_TOPBAR_V1 — keep storefront header visible on scroll */
.topbar {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: rgba(244, 250, 255, 0.92);
  backdrop-filter: blur(10px);
}
.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
}

/* MB_PATCH_SHOP_CATEGORY_MOBILE_SCROLL_V1 */
@media (max-width: 820px) {
  .page-shop .shopSidebar {
    overflow: hidden;
    margin-bottom: 10px;
  }

  .page-shop .catWidget {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .page-shop .catTitle {
    margin: 0 0 10px;
    padding: 0 2px;
  }

  .page-shop .catList {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    padding: 2px 2px 8px;
    margin: 0 -2px;
  }

  .page-shop .catList::-webkit-scrollbar {
    display: none;
  }

  .page-shop .catList > li,
  .page-shop .catList > .catGroup {
    flex: 0 0 auto;
    margin: 0;
  }

  .page-shop .catLink,
  .page-shop .catLink.catLink--parent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .page-shop .catLink.is-active {
    font-weight: 800;
  }
}

/* MB_PATCH_SHOP_MOBILE_TIGHT_GUTTER_V1 */
@media (max-width: 820px) {
  .wrap.page-shop {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* MB_PATCH_SHOP_MOBILE_DENSE_UI_V1 */
@media (max-width: 820px) {
  .wrap.page-shop {
    padding-left: 8px;
    padding-right: 8px;
  }

  .page-shop .shopHero {
    margin: 8px 0 12px;
    border-radius: 12px;
  }

  .page-shop .bestHead {
    margin: 0 0 8px;
    padding: 0 2px;
  }

  .page-shop .bestScroller {
    gap: 8px;
    padding-bottom: 6px;
  }

  .page-shop .shopLayout {
    gap: 10px;
  }

  .page-shop .shopTools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 8px;
    margin: 8px 0 10px;
    align-items: stretch;
  }

  .page-shop .shopToolsLeft,
  .page-shop .shopToolsRight {
    min-width: 0;
  }

  .page-shop .shopSearch,
  .page-shop .shopSelect {
    width: 100%;
    min-width: 0;
    height: 42px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
  }

  .page-shop .shopGrid {
    gap: 8px;
  }

  .page-shop .shopCard {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.05);
  }

  .page-shop .shopMeta {
    padding: 8px 8px 10px;
  }

  .page-shop .shopName {
    font-size: 12.5px;
    line-height: 1.28;
  }

  .page-shop .shopPrice {
    margin-top: 6px;
    font-size: 12.5px;
  }
}

@media (max-width: 420px) {
  .page-shop .shopTools {
    grid-template-columns: minmax(0, 1fr) 118px;
  }
}

/* DECORATION_ENGINE_V1_CSS */

.page-home .storefront-home-decoration {
  background-image: none;
}

.page-home .storefront-home-decoration .ldv-hero {
  background-image: var(
    --home-bg-desktop,
    url("/assets/home/billys-banner-home1.webp")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .page-home .storefront-home-decoration .ldv-hero {
    background-image: var(
      --home-bg-mobile,
      var(--home-bg-desktop, url("/assets/home/billys-banner-home1.webp"))
    );
  }
}

.page-shop .shopHeroSlider {
  position: relative;
  overflow: hidden;
  background: #eef5ff;
}

.page-shop .shopHeroSlider .shopHeroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.page-shop .shopHeroSlider .shopHeroSlide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.page-shop .shopHeroSlider .shopHeroImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-shop .shopHeroSlider .shopHeroImg--mobile {
  display: none;
}

.page-shop .shopHeroSlider .shopHeroDots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.page-shop .shopHeroSlider .shopHeroDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.page-shop .shopHeroSlider .shopHeroDot.is-active {
  background: #ffffff;
}

@media (max-width: 820px) {
  .page-shop .shopHeroSlider .shopHeroImg--desktop {
    display: none;
  }

  .page-shop .shopHeroSlider .shopHeroImg--mobile {
    display: block;
  }

  .page-shop .shopHeroSlider .shopHeroDots {
    bottom: 10px;
  }
}

/* MB_PATCH_HEADER_PERFUME_DIRECT_V1 */
.topbar-inner .nav.nav-icons {
  gap: 6px;
}

.nav-icons .profileAuth {
  gap: 4px;
}

/* Mobile Perfume: top-level tetap direct link, submenu disembunyikan */
button[aria-controls="MobilePerfumeSub"],
#MobilePerfumeSub {
  display: none !important;
}

/* MB_PATCH_MOBILE_HEADER_SPACING_V1 */
@media (max-width: 768px) {
  /* rapatkan area kanan header */
  .topbar-inner .nav-right {
    gap: 2px !important;
  }

  .topbar-inner .nav.nav-icons {
    gap: 1px !important;
  }

  /* cart dan user icon */
  .nav-icons .iconBtn {
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
  }

  /* blok user + text */
  .nav-icons .profileAuth {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-left: -2px;
  }

  /* rapatkan icon user ke text */
  .nav-icons .profileAuth .profileIcon {
    margin-right: -3px;
  }

  .nav-icons .profileAuthText {
    margin-left: 0 !important;
    padding-left: 0 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap;
  }

  /* icon cart dan user sedikit lebih kecil agar kanan tidak melebar */
  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }
}

/* MB_PATCH_MOBILE_HEADER_OVERFLOW_FIX_V1 */
@media (max-width: 768px) {
  .topbar {
    overflow-x: clip;
  }

  .topbar-inner {
    grid-template-columns: 44px minmax(0, 1fr) auto !important;
    padding: 10px 12px !important;
    gap: 8px !important;
    max-width: 100% !important;
  }

  .topbar-inner .nav-left {
    min-width: 0 !important;
    gap: 0 !important;
  }

  .topbar-inner .brand {
    min-width: 0 !important;
    max-width: 100% !important;
    justify-self: center !important;
  }

  .topbar-inner .brandLogo {
    height: 46px !important;
    max-width: 150px !important;
  }

  .topbar-inner .nav-right,
  .topbar-inner .nav.nav-icons {
    min-width: 0 !important;
    gap: 2px !important;
    justify-self: end !important;
  }

  .nav-icons .iconBtn {
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .nav-icons .profileAuth {
    gap: 2px !important;
    margin-left: 0 !important;
    min-width: 0 !important;
  }

  .nav-icons .profileAuth .profileIcon {
    margin-right: 0 !important;
  }

  .nav-icons .profileAuthText {
    margin-left: 0 !important;
    padding-left: 0 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .nav-left .burgerBtn {
    width: 34px !important;
    height: 34px !important;
  }
}

/* CONTACT_PAGE_V1 */
.contactPage {
  background: #fffef9;
  color: #172033;
}
.contactPage-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: #fffef9 !important;
  background-image: none !important;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.contactPage-heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 254, 249, 0.78) 0%,
    rgba(255, 254, 249, 0.96) 100%
  );
}
.contactPage-heroInner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 74px 0 46px;
  color: #172033;
}
.contactPage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(23, 32, 51, 0.1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.contactPage-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  color: #0f172a;
}
.contactPage-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 10px;
}
.contactPage-desc {
  max-width: 680px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}
.contactPage-body {
  padding: 34px 0 56px;
  background: #fffef9;
}
.contactPage-mainCard,
.contactPage-infoCard,
.contactPage-mapCard,
.contactPage-cta {
  background: #fff;
  border: 1px solid rgba(12, 82, 210, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}
.contactPage-mainCard {
  padding: 28px;
  margin-bottom: 22px;
}
.contactPage-sectionTitle {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}
.contactPage-richtext {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
}
.contactPage-richtext > *:first-child {
  margin-top: 0;
}
.contactPage-richtext > *:last-child {
  margin-bottom: 0;
}
.contactPage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.contactPage-infoCard {
  padding: 22px;
}
.contactPage-infoLabel {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0c52d2;
  margin-bottom: 10px;
}
.contactPage-infoValue {
  font-size: 15px;
  line-height: 1.8;
  color: #1f2937;
}
.contactPage-infoValue a {
  color: #0c52d2;
  text-decoration: none;
  font-weight: 700;
}

/* CONTACT_PAGE_SUBBLOCK_V1 */
.contactPage-subBlock {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 82, 210, 0.1);
}
.contactPage-subLabel {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0c52d2;
  margin-bottom: 8px;
}
/* /CONTACT_PAGE_SUBBLOCK_V1 */
.contactPage-mapCard {
  overflow: hidden;
  margin-bottom: 22px;
}
.contactPage-mapCard iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.contactPage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
}
.contactPage-cta h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}
.contactPage-cta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
}
.contactPage-ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  background: #fffef9 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(12, 82, 210, 0.18);
}
@media (max-width: 900px) {
  .contactPage-grid {
    grid-template-columns: 1fr;
  }
  .contactPage-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .contactPage-hero {
    min-height: 320px;
  }
  .contactPage-heroInner {
    padding: 58px 0 34px;
  }
  .contactPage-mainCard {
    padding: 22px 18px;
  }
  .contactPage-infoCard {
    padding: 18px;
  }
  .contactPage-mapCard iframe {
    height: 300px;
  }
  .contactPage-cta {
    padding: 20px 18px;
  }
  .contactPage-ctaBtn {
    width: 100%;
  }
}
/* /CONTACT_PAGE_V1 */

/* ===== BILLYS_SHOP_TEXT_BLACK_V1 ===== */
:root {
  --shop-text: #2b3a4a;
  --shop-placeholder: rgba(26, 35, 44, 0.65);
}

/* Scope utama halaman shop Billys */
body.page-shop,
.page-shop,
.shop-page,
[data-page="shop"] {
  color: var(--shop-text);
}

/* Teks umum area shop */
body.page-shop
  :is(h1, h2, h3, h4, h5, h6, p, span, strong, small, label, li, a),
.page-shop :is(h1, h2, h3, h4, h5, h6, p, span, strong, small, label, li, a),
.shop-page :is(h1, h2, h3, h4, h5, h6, p, span, strong, small, label, li, a),
[data-page="shop"]
  :is(h1, h2, h3, h4, h5, h6, p, span, strong, small, label, li, a) {
  color: var(--shop-text) !important;
  -webkit-text-fill-color: var(--shop-text) !important;
}

/* Billys custom shop structure */
body.page-shop
  :is(
    .shopLayout,
    .shopSidebar,
    .catWidget,
    .catTitle,
    .catList,
    .catLink,
    .shopTools,
    .shopToolbar,
    .shopSearch,
    .shopSort,
    .shopResultCount,
    .shopEmpty,
    .shopEmptyTitle,
    .shopEmptyDesc,
    .productCard,
    .productInfo,
    .productTitle,
    .productName,
    .productPrice,
    .sliderTitle,
    .sectionTitle,
    .sectionHeading,
    .widgetTitle
  ),
.page-shop
  :is(
    .shopLayout,
    .shopSidebar,
    .catWidget,
    .catTitle,
    .catList,
    .catLink,
    .shopTools,
    .shopToolbar,
    .shopSearch,
    .shopSort,
    .shopResultCount,
    .shopEmpty,
    .shopEmptyTitle,
    .shopEmptyDesc,
    .productCard,
    .productInfo,
    .productTitle,
    .productName,
    .productPrice,
    .sliderTitle,
    .sectionTitle,
    .sectionHeading,
    .widgetTitle
  ) {
  color: var(--shop-text) !important;
  -webkit-text-fill-color: var(--shop-text) !important;
}

/* Link kategori, judul produk, harga, link lain di halaman shop */
body.page-shop
  :is(
    .catLink,
    .catLink *,
    .productCard a,
    .productTitle,
    .productTitle *,
    .productName,
    .productName *,
    .productPrice,
    .price,
    .amount,
    .sectionTitle,
    .sectionHeading,
    .sliderTitle,
    .shopEmpty,
    .shopEmpty *,
    .shopResultCount
  ),
.page-shop
  :is(
    .catLink,
    .catLink *,
    .productCard a,
    .productTitle,
    .productTitle *,
    .productName,
    .productName *,
    .productPrice,
    .price,
    .amount,
    .sectionTitle,
    .sectionHeading,
    .sliderTitle,
    .shopEmpty,
    .shopEmpty *,
    .shopResultCount
  ) {
  color: var(--shop-text) !important;
  -webkit-text-fill-color: var(--shop-text) !important;
}

/* Search / filter / sort */
body.page-shop
  :is(input, select, textarea, option, .shopSearch input, .shopSort select),
.page-shop
  :is(input, select, textarea, option, .shopSearch input, .shopSort select),
.shop-page :is(input, select, textarea, option),
[data-page="shop"] :is(input, select, textarea, option) {
  color: var(--shop-text) !important;
  -webkit-text-fill-color: var(--shop-text) !important;
}

/* Placeholder */
body.page-shop input::placeholder,
.page-shop input::placeholder,
.shop-page input::placeholder,
[data-page="shop"] input::placeholder {
  color: var(--shop-placeholder) !important;
  opacity: 1;
}

/* Active category / current state */
body.page-shop :is(.active, .is-active, .current, .selected) a,
body.page-shop :is(.active, .is-active, .current, .selected),
.page-shop :is(.active, .is-active, .current, .selected) a,
.page-shop :is(.active, .is-active, .current, .selected) {
  color: var(--shop-text) !important;
  -webkit-text-fill-color: var(--shop-text) !important;
}

/* Harga dan judul card yang kadang pakai class custom */
body.page-shop [class*="product"] [class*="title"],
body.page-shop [class*="product"] [class*="name"],
body.page-shop [class*="product"] [class*="price"],
body.page-shop [class*="category"] a,
body.page-shop [class*="filter"] label,
body.page-shop [class*="sort"] select,
body.page-shop [class*="empty"],
.page-shop [class*="product"] [class*="title"],
.page-shop [class*="product"] [class*="name"],
.page-shop [class*="product"] [class*="price"],
.page-shop [class*="category"] a,
.page-shop [class*="filter"] label,
.page-shop [class*="sort"] select,
.page-shop [class*="empty"] {
  color: var(--shop-text) !important;
  -webkit-text-fill-color: var(--shop-text) !important;
}
/* ===== /BILLYS_SHOP_TEXT_BLACK_V1 ===== */

/* HOME_HERO_PLAINPHOTO_V1 */
body.page-home .ldv-bg::before,
body.page-home .ldv-hero::before {
  content: none !important;
  display: none !important;
  background: transparent !important;
  opacity: 0 !important;
}

/* BILLY_HERO_DEVICE_MAPPING_V2_CLEAN */
.page-home .storefront-home-decoration {
  background-image: none !important;
}

.page-home .storefront-home-decoration .ldv-hero {
  background-image: url("/assets/home/desktop-homepage-background2.webp") !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

/* Tablet landscape only */
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  .page-home .storefront-home-decoration .ldv-hero {
    background-image: url("/assets/home/tablet-homepage-horz-background2.webp") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}

/* Tablet portrait + iPad Pro portrait */
@media (min-width: 768px) and (max-width: 1279px) and (orientation: portrait) {
  .page-home .storefront-home-decoration .ldv-hero {
    background-image: url("/assets/home/tablet-homepage-verti-background2.webp") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .page-home .storefront-home-decoration .ldv-hero {
    background-image: url("/assets/home/mobile-homepage-background2.webp") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}

/* ===== BILLYS_SURFACE_DUO_540X720_ENLARGE_ONLY_V1 ===== */
@media (min-width: 521px) and (max-width: 560px) and (min-height: 701px) and (max-height: 740px) and (orientation: portrait) {
  .page-home .storefront-home-decoration .ldv-hero {
    background-image: url("/assets/home/tablet-homepage-verti-background2.webp") !important;
    background-size: 560px auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 720px !important;
  }
}

/* ===== BILLYS_NEST_HUB_1024X600_DESKTOP_ONLY_V1 ===== */
@media (min-width: 1000px) and (max-width: 1040px) and (min-height: 580px) and (max-height: 620px) and (orientation: landscape) {
  .page-home .storefront-home-decoration .ldv-hero {
    background-image: url("/assets/home/desktop-homepage-background2.webp") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 600px !important;
    padding-top: calc(72px + env(safe-area-inset-top)) !important;
    padding-bottom: 20px !important;
  }

  .page-home .storefront-home-decoration .ldv-heroInner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body.page-home .storefront-home-decoration .ldv-title {
    font-size: 72px !important;
    line-height: 0.92 !important;
    margin-bottom: 8px !important;
    max-width: none !important;
  }

  body.page-home .storefront-home-decoration .homeSearchWrap {
    margin-top: 8px !important;
    margin-bottom: 10px !important;
  }

  body.page-home .storefront-home-decoration .homeHeroIcons {
    transform: translateY(-34px) scale(0.88) !important;
    transform-origin: center bottom !important;
  }
}

/* ===== BILLYS_IPAD_PRO_1024X1366_MOBILE_HEADER_V1 ===== */
@media (min-width: 1000px) and (max-width: 1040px) and (min-height: 1300px) and (max-height: 1400px) and (orientation: portrait) {
  .topbar-inner {
    max-width: 100% !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .topbar-inner .nav-left,
  .topbar-inner .nav-right,
  .topbar-inner .nav {
    min-width: 0 !important;
  }

  .topbar-inner .nav-links,
  .topbar-inner .nav-right-links {
    display: none !important;
  }

  .topbar-inner .brand {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    justify-self: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .topbar-inner .brandLogo {
    height: 42px !important;
    max-width: min(210px, 52vw) !important;
  }

  .topbar-inner .nav-right {
    gap: 0 !important;
  }

  .topbar-inner .nav.nav-icons {
    gap: 8px !important;
    min-width: 0 !important;
    justify-self: end !important;
  }

  .nav-left .burgerBtn {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
  }

  .nav-icons .iconBtn {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-icons .profileAuth {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  .nav-icons .profileAuthText {
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

/* ===== BILLYS_SURFACE_PRO_7_912X1368_MOBILE_HEADER_V1 ===== */
@media (min-width: 900px) and (max-width: 930px) and (min-height: 1340px) and (max-height: 1395px) and (orientation: portrait) {
  .topbar-inner {
    max-width: 100% !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .topbar-inner .nav-left,
  .topbar-inner .nav-right,
  .topbar-inner .nav {
    min-width: 0 !important;
  }

  .topbar-inner .nav-links,
  .topbar-inner .nav-right-links {
    display: none !important;
  }

  .topbar-inner .brand {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    justify-self: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .topbar-inner .brandLogo {
    height: 42px !important;
    max-width: min(210px, 52vw) !important;
  }

  .topbar-inner .nav-right {
    gap: 0 !important;
  }

  .topbar-inner .nav.nav-icons {
    gap: 8px !important;
    min-width: 0 !important;
    justify-self: end !important;
  }

  .nav-left .burgerBtn {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
  }

  .nav-icons .iconBtn {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-icons .profileAuth {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  .nav-icons .profileAuthText {
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

/* ===== BILLYS_ASUS_ZENBOOK_FOLD_853X1280_MOBILE_HEADER_V1 ===== */
@media (min-width: 840px) and (max-width: 870px) and (min-height: 1240px) and (max-height: 1310px) and (orientation: portrait) {
  .topbar-inner {
    max-width: 100% !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .topbar-inner .nav-left,
  .topbar-inner .nav-right,
  .topbar-inner .nav {
    min-width: 0 !important;
  }

  .topbar-inner .nav-links,
  .topbar-inner .nav-right-links {
    display: none !important;
  }

  .topbar-inner .brand {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    justify-self: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .topbar-inner .brandLogo {
    height: 42px !important;
    max-width: min(210px, 52vw) !important;
  }

  .topbar-inner .nav-right {
    gap: 0 !important;
  }

  .topbar-inner .nav.nav-icons {
    gap: 8px !important;
    min-width: 0 !important;
    justify-self: end !important;
  }

  .nav-left .burgerBtn {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
  }

  .nav-icons .iconBtn {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-icons .profileAuth {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  .nav-icons .profileAuthText {
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

/* ===== BILLYS_HOME_PORTRAIT_UPTO_1024_USE_MOBILE_HEADER_V1 ===== */
@media (max-width: 1024px) and (orientation: portrait) {
  body.page-home .topbar-inner {
    max-width: 100% !important;
    padding: 10px 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  body.page-home .topbar-inner .nav-left,
  body.page-home .topbar-inner .nav-right,
  body.page-home .topbar-inner .nav {
    min-width: 0 !important;
  }

  body.page-home .topbar-inner .nav-links,
  body.page-home .topbar-inner .nav-right-links {
    display: none !important;
  }

  body.page-home .topbar-inner .brand {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    justify-self: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.page-home .topbar-inner .brandLogo {
    height: 42px !important;
    max-width: min(210px, 52vw) !important;
  }

  body.page-home .topbar-inner .nav-right {
    gap: 0 !important;
  }

  body.page-home .topbar-inner .nav.nav-icons {
    gap: 8px !important;
    min-width: 0 !important;
    justify-self: end !important;
  }

  body.page-home .nav-left .burgerBtn {
    display: inline-flex !important;
    width: 38px !important;
    height: 38px !important;
  }

  body.page-home .nav-icons .iconBtn {
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  body.page-home .nav-icons .iconBtn svg,
  body.page-home .nav-icons .iconBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  body.page-home .nav-icons .profileAuth {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px !important;
    min-width: 0 !important;
  }

  body.page-home .nav-icons .profileAuthText {
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

/* ===== BILLYS_HEADER_NEST_HUB_1024X600_V1 ===== */
@media (min-width: 1000px) and (max-width: 1040px) and (min-height: 580px) and (max-height: 620px) and (orientation: landscape) {
  .topbar-inner {
    max-width: 100% !important;
    padding: 10px 18px !important;
    grid-template-columns: minmax(170px, 1fr) auto minmax(190px, 1fr) !important;
    gap: 10px !important;
  }

  .topbar-inner .nav-left {
    gap: 10px !important;
    min-width: 170px !important;
  }

  .topbar-inner .nav-right {
    gap: 10px !important;
  }

  .topbar-inner .nav-right-links {
    gap: 12px !important;
  }

  .nav-links {
    gap: 14px !important;
  }

  .navLink,
  .ddBtn {
    font-size: 12px !important;
    padding: 6px 4px !important;
  }

  .brandLogo {
    height: 44px !important;
    max-width: 180px !important;
  }

  .nav-icons .iconBtn,
  .nav-left .burgerBtn {
    width: 36px !important;
    height: 36px !important;
  }

  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg *,
  .nav-left .burgerBtn svg,
  .nav-left .burgerBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-icons .profileAuthText {
    font-size: 11px !important;
  }
}
/* ===== END BILLYS_HEADER_NEST_HUB_1024X600_V1 ===== */

/* ===== BILLYS_ANNOUNCEMENT_BAR_FINAL ===== */
.topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: #fffef9;
  border-bottom: 1px solid var(--color-border);
  transition:
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.topbar.is-scrolled {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.announcementBar {
  background: var(--announcement-bg, #0c52d2);
  color: var(--announcement-text, #ffffff);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  max-height: 52px;
  opacity: 1;
  transition:
    max-height 0.28s ease,
    opacity 0.22s ease,
    border-color 0.22s ease;
}

.announcementBar-track {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 52px;
  padding: 0 28px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.announcementBar-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    transform 0.32s ease;
}

.announcementBar-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.announcementBar-text,
.announcementBar-link {
  display: inline-block;
  color: var(--announcement-text, #ffffff) !important;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcementBar-link {
  text-decoration: none;
}

.announcementBar-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar.announcement-collapsed .announcementBar {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

@media (max-width: 820px) {
  .announcementBar {
    max-height: 44px;
  }

  .announcementBar-track {
    min-height: 44px;
    padding: 0 16px;
  }

  .announcementBar-text,
  .announcementBar-link {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}
/* ===== /BILLYS_ANNOUNCEMENT_BAR_FINAL ===== */

/* ===== BILLYS_FIXED_HEADER_BEHAVIOR_V1 ===== */
:root {
  --billys-announcement-height: 52px;
  --billys-header-row-height: 106px;
}

.topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1400 !important;
  background: #fffef9 !important;
  border-bottom: 1px solid var(--color-border);
}

.topbar.is-scrolled {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.topbar-inner {
  min-height: var(--billys-header-row-height);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: center;
}

.topbar-spacer {
  display: block;
  width: 100%;
  height: calc(
    var(--billys-announcement-height) + var(--billys-header-row-height)
  );
  flex: 0 0 auto;
}

.topbar .announcementBar {
  overflow: hidden;
  max-height: var(--billys-announcement-height);
  opacity: 1;
}

.topbar .announcementBar-track {
  min-height: var(--billys-announcement-height);
}

body.announcement-collapsed .topbar-spacer {
  height: var(--billys-header-row-height);
}

body.announcement-collapsed .topbar .announcementBar {
  max-height: 0 !important;
  opacity: 0;
  border-bottom-color: transparent !important;
}

body.announcement-collapsed .topbar .announcementBar-track {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.topbar-ready .topbar-spacer {
  transition: height 0.22s ease;
}

body.topbar-ready .topbar .announcementBar {
  transition:
    max-height 0.22s ease,
    opacity 0.16s ease,
    border-color 0.16s ease;
}

body.topbar-ready .topbar .announcementBar-track {
  transition:
    min-height 0.22s ease,
    padding 0.22s ease;
}

body:not(.topbar-ready) .topbar,
body:not(.topbar-ready) .topbar-spacer,
body:not(.topbar-ready) .topbar .announcementBar,
body:not(.topbar-ready) .topbar .announcementBar-track,
body:not(.topbar-ready) .topbar-inner {
  transition: none !important;
}

@media (max-width: 820px) {
  :root {
    --billys-announcement-height: 44px;
    --billys-header-row-height: 82px;
  }

  .topbar-inner {
    min-height: var(--billys-header-row-height);
  }
}
/* ===== /BILLYS_FIXED_HEADER_BEHAVIOR_V1 ===== */

/* ===== BILLYS_FIXED_HEADER_MOBILE_V1 ===== */
@media (max-width: 820px) {
  :root {
    --billys-announcement-height: 36px;
    --billys-header-row-height: 72px;
  }

  html,
  body {
    overflow-x: clip;
  }

  .topbar {
    left: 0;
    right: 0;
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: auto !important;
  }

  .topbar-inner {
    min-height: var(--billys-header-row-height) !important;
    padding: 0 14px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .topbar-spacer {
    height: calc(
      var(--billys-announcement-height) + var(--billys-header-row-height)
    );
  }

  body.announcement-collapsed .topbar-spacer {
    height: var(--billys-header-row-height);
  }

  .topbar .announcementBar {
    max-height: var(--billys-announcement-height);
    opacity: 1;
  }

  .topbar .announcementBar-track {
    min-height: var(--billys-announcement-height);
    padding: 0 12px !important;
  }

  .announcementBar-text,
  .announcementBar-link {
    font-size: 10px !important;
    letter-spacing: 0.03em !important;
    line-height: 1.2 !important;
  }

  .announcementBar-slide {
    transform: none !important;
  }

  body:not(.topbar-mobile-effects-ready) .announcementBar-slide {
    transition: none !important;
    animation: none !important;
  }

  body:not(.topbar-mobile-effects-ready)
    .announcementBar-slide:not(.is-active) {
    display: none !important;
  }

  body.topbar-mobile-effects-ready .announcementBar-slide {
    display: flex !important;
    transition: opacity 0.22s ease !important;
  }

  .topbar-inner .nav-left {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .topbar-inner .brand {
    min-width: 0 !important;
  }

  .topbar-inner .brandLogo {
    height: 42px !important;
    max-width: 160px !important;
  }

  .topbar-inner .nav-right {
    gap: 4px !important;
  }

  .topbar-inner .nav.nav-icons {
    gap: 4px !important;
  }

  .nav-icons .iconBtn {
    width: 34px !important;
    height: 34px !important;
  }

  .nav-left .burgerBtn {
    width: 34px !important;
    height: 34px !important;
  }

  .nav-left .burgerBtn svg,
  .nav-left .burgerBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-icons .iconBtn svg,
  .nav-icons .iconBtn svg * {
    width: 18px !important;
    height: 18px !important;
  }

  .nav-icons .profileAuthText {
    font-size: 10px !important;
    line-height: 1 !important;
  }

  body:not(.topbar-mobile-effects-ready) .topbar,
  body:not(.topbar-mobile-effects-ready) .topbar-spacer,
  body:not(.topbar-mobile-effects-ready) .topbar .announcementBar,
  body:not(.topbar-mobile-effects-ready) .topbar .announcementBar-track,
  body:not(.topbar-mobile-effects-ready) .topbar-inner {
    transition: none !important;
    animation: none !important;
  }

  body.topbar-mobile-effects-ready.topbar-ready .topbar-spacer {
    transition: height 0.18s ease;
  }

  body.topbar-mobile-effects-ready.topbar-ready .topbar .announcementBar {
    transition:
      max-height 0.18s ease,
      opacity 0.14s ease,
      border-color 0.14s ease;
  }

  body.topbar-mobile-effects-ready.topbar-ready .topbar .announcementBar-track {
    transition:
      min-height 0.18s ease,
      padding 0.18s ease;
  }

  body.topbar-nav-lock .topbar,
  body.topbar-nav-lock .topbar-spacer,
  body.topbar-nav-lock .topbar .announcementBar,
  body.topbar-nav-lock .topbar .announcementBar-track,
  body.topbar-nav-lock .topbar-inner,
  body.topbar-nav-lock .announcementBar-slide {
    transition: none !important;
    animation: none !important;
  }
}
/* ===== /BILLYS_FIXED_HEADER_MOBILE_V1 ===== */

/* ===== BILLYS_DRAWER_HEADER_OFFSET_V1 ===== */
:root {
  --billys-drawer-top-offset: calc(
    var(--billys-announcement-height) + var(--billys-header-row-height)
  );
}

body.announcement-collapsed {
  --billys-drawer-top-offset: var(--billys-header-row-height);
}

/* drawer buka di bawah header fixed */
.drawer {
  z-index: 1300 !important;
}

.drawer__overlay {
  position: fixed;
  top: var(--billys-drawer-top-offset) !important;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto !important;
}

.drawer__contents {
  position: fixed;
  top: var(--billys-drawer-top-offset) !important;
  left: 0;
  height: calc(100dvh - var(--billys-drawer-top-offset)) !important;
  max-height: calc(100dvh - var(--billys-drawer-top-offset)) !important;
  overflow: hidden;
}

.drawer__fixed-header {
  top: 0 !important;
}

.drawer__scrollable {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* mobile tetap ikut tinggi header mobile yang sudah ada */
@media (max-width: 820px) {
  .drawer__contents {
    width: min(88vw, 360px);
    max-width: min(88vw, 360px);
  }
}
/* ===== /BILLYS_DRAWER_HEADER_OFFSET_V1 ===== */

/* ===== BILLYS_SHOP_STRAY_ICON_HOTFIX_V1 ===== */
/* Hotfix cepat untuk icon/arrow nyasar kebesaran di halaman shop */
body.page-shop .swiper-button-prev,
body.page-shop .swiper-button-next,
body.page-shop .splide__arrow,
body.page-shop .slick-prev,
body.page-shop .slick-next,
body.page-shop [class*="swiper-button-"],
body.page-shop [class*="splide__arrow"],
body.page-shop [class*="slick-prev"],
body.page-shop [class*="slick-next"] {
  display: none !important;
}

/* Guard tambahan: cegah SVG nyasar di area konten shop membesar liar */
body.page-shop main svg,
body.page-shop .shop-page svg,
body.page-shop .shopContent svg,
body.page-shop .shopMain svg {
  max-width: 32px !important;
  max-height: 32px !important;
}

/* Kecualikan icon header/nav supaya tetap normal */
body.page-shop .topbar svg,
body.page-shop .nav svg,
body.page-shop .iconBtn svg,
body.page-shop .brandLogo,
body.page-shop .topbar-inner svg {
  max-width: none !important;
  max-height: none !important;
}

/* ===== BILLYS_SHOP_PAGER_TEXT_ONLY_V1 ===== */
.page-shop .shopPager {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.page-shop .shopPagerNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-shop .shopPagerPages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-shop .shopPagerBtn,
.page-shop .shopPagerPage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border: 1px solid #d9e2ec;
  border-radius: 999px;
  background: #ffffff;
  color: #2b3a4a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.18s ease;
}

.page-shop .shopPagerPage {
  padding: 0 12px;
}

.page-shop .shopPagerBtn:hover,
.page-shop .shopPagerPage:hover {
  border-color: #0c52d2;
  color: #0c52d2;
}

.page-shop .shopPagerPage.is-active {
  background: #fffef9 !important;
  border-color: #0c52d2;
  color: #ffffff;
}

.page-shop .shopPagerBtn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.page-shop .shopPagerEllipsis {
  color: #7a8699;
  font-weight: 600;
  padding: 0 2px;
}

@media (max-width: 640px) {
  .page-shop .shopPagerNav {
    gap: 10px;
  }

  .page-shop .shopPagerBtn,
  .page-shop .shopPagerPage {
    min-height: 38px;
    font-size: 13px;
  }
}

/* ===== BILLYS_HEADER_GLASS_COLOR_FFFEF9_V2 ===== */
/* Header tetap glass hangat #fffef9, announcement bar kembali ke biru asli */
.topbar,
.topbar-inner,
.drawer__fixed-header {
  background: rgba(255, 254, 249, 0.78) !important;
  background-color: rgba(255, 254, 249, 0.78) !important;
}

@supports (
  (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
  .topbar,
  .topbar-inner,
  .drawer__fixed-header {
    background: rgba(255, 254, 249, 0.68) !important;
    background-color: rgba(255, 254, 249, 0.68) !important;
  }
}

/* restore announcement bar */
.topbar .announcementBar,
.topbar .announcementBar-track {
  background: #0c52d2 !important;
  background-color: #0c52d2 !important;
}
/* ===== BILLYS_HEADER_GLASS_COLOR_FFFEF9_V2_END ===== */

/* ===== BILLYS_ANNOUNCEMENT_TEXT_WHITE_FIX_V1 ===== */
/* Jaga teks announcement bar tetap putih meski header/nav kena patch warna lain */
.announcementBar,
.announcementBar *,
.topbar .announcementBar,
.topbar .announcementBar *,
.topbar .announcementBar a,
.topbar .announcementBar span,
.topbar .announcementBar p,
.topbar .announcementBar strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.announcementBar a:hover,
.topbar .announcementBar a:hover {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* ===== /BILLYS_ANNOUNCEMENT_TEXT_WHITE_FIX_V1 ===== */

/* ===== BILLYS_PDP_PAGE_BG_CONSOLIDATED_V1 ===== */
/* Menghapus warna solid krem dan menerapkan background image fixed pada halaman Product (PDP) */

body.page-product {
  position: relative;
  isolation: isolate;
  background-color: transparent !important;
  background-image: none !important; /* Mencegah bentrok dengan ::before */
}

/* Layer background tetap (Fixed Viewport) */
body.page-product::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-color: transparent !important;
  background-image: url("/assets/home/billys-desktop-background-master.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  transform: translateZ(0);
  will-change: transform;
}

/* Membuat semua wrapper konten PDP transparan agar background terlihat */
body.page-product main,
body.page-product .wrap,
body.page-product .container,
body.page-product .productPage,
body.page-product .product-page,
body.page-product .pdpPage,
body.page-product .pdpWrap,
body.page-product .pdpShell,
body.page-product .product-main,
body.page-product .product-details {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important; /* Opsional: hapus border jika ada kotak putih tipis */
}

/* Responsif: Menyesuaikan gambar sesuai ukuran layar */
@media (max-width: 1180px) {
  body.page-product::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}

@media (max-width: 900px) {
  body.page-product::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}

@media (max-width: 640px) {
  body.page-product::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp") !important;
  }
}
/* ===== END BILLYS_PDP_PAGE_BG_CONSOLIDATED_V1 ===== */

/* ===== BILLYS_SITE_FOOTER_LEGAL_NON_HOME_CSS_V1 ===== */
.siteFooter {
  margin-top: 40px;
  padding: 22px 16px 28px;
  border-top: 1px solid rgba(12, 82, 210, 0.1);
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.siteFooter__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.siteFooter__brand {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary, #0c52d2);
  margin-bottom: 8px;
}

.siteFooter__text,
.siteFooter__legal,
.siteFooter__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(27, 23, 37, 0.82);
}

.siteFooter__right {
  text-align: right;
}

@media (max-width: 768px) {
  .siteFooter {
    margin-top: 28px;
    padding: 18px 14px 24px;
  }

  .siteFooter__inner {
    flex-direction: column;
    gap: 10px;
  }

  .siteFooter__right {
    text-align: left;
  }

  .siteFooter__text,
  .siteFooter__legal,
  .siteFooter__copy {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* ===== BILLYS_SITE_FOOTER_LEGAL_NON_HOME_CENTER_V2 ===== */
.siteFooter {
  margin-top: 40px;
  padding: 22px 16px 28px;
  border-top: 1px solid rgba(12, 82, 210, 0.1);
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.siteFooter__inner--center {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.siteFooter__legal,
.siteFooter__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(27, 23, 37, 0.82);
}

@media (max-width: 768px) {
  .siteFooter {
    margin-top: 28px;
    padding: 18px 14px 24px;
  }

  .siteFooter__legal,
  .siteFooter__copy {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* ===== BILLYS_FOOTER_ONELINE_CSS_V1 ===== */
.siteFooter__legalCopy {
  text-align: center;
}

@media (min-width: 768px) {
  .siteFooter__legalCopy {
    white-space: nowrap;
  }
}

/* ===== BILLYS_LEGAL_PAGE_PRIVACY_V2 ===== */
.legalPage {
  padding: 40px 20px 72px;
  background: #fffef9;
}

.legalPage__container {
  max-width: 860px;
  margin: 0 auto;
}

.legalPage__hero {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(27, 23, 37, 0.1);
}

.legalPage__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(27, 23, 37, 0.56);
}

.legalPage h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.15;
  color: #1b1725;
}

.legalPage__updated {
  margin: 0;
  font-size: 14px;
  color: rgba(27, 23, 37, 0.68);
}

.legalPage__section {
  margin-top: 28px;
}

.legalPage__section h2 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.35;
  color: #1b1725;
}

.legalPage__item {
  margin-top: 14px;
}

.legalPage__item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #1b1725;
}

.legalPage__section p,
.legalPage__section li {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(27, 23, 37, 0.88);
}

.legalPage__section ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.legalPage__section li + li {
  margin-top: 6px;
}

.legalPage__contact a {
  color: #0c52d2;
  text-decoration: none;
}

.legalPage__contact a:hover {
  text-decoration: underline;
}

.siteFooter__legalLinks {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
}

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

.siteFooter__legalLinks a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legalPage {
    padding: 28px 16px 56px;
  }

  .legalPage h1 {
    font-size: 28px;
  }

  .legalPage__section h2 {
    font-size: 18px;
  }

  .legalPage__section p,
  .legalPage__section li,
  .legalPage__item h3 {
    font-size: 14px;
  }
}
/* ===== END BILLYS_LEGAL_PAGE_PRIVACY_V2 ===== */

/* ===== BILLYS_LEGAL_LINKS_FOOTER_HELPER_V1 ===== */
.siteFooter__legalLinks {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.siteFooter__legalLinksSeparator {
  opacity: 0.45;
  user-select: none;
}
/* ===== END BILLYS_LEGAL_LINKS_FOOTER_HELPER_V1 ===== */

/* CONTACT_PAGE_AUTH_FORM_V1 */
.contactPage-authCard {
  margin-bottom: 22px;
}
.contactPage-authIntro {
  margin-bottom: 16px;
}
.contactPage-authForm {
  display: grid;
  gap: 14px;
  max-width: 560px;
}
.contactPage-authField label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f172a;
}
.contactPage-authInput {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #172033;
  font: inherit;
  box-sizing: border-box;
}
.contactPage-authInput:focus {
  outline: none;
  border-color: #0c52d2;
  box-shadow: 0 0 0 4px rgba(12, 82, 210, 0.1);
}
.contactPage-authMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.contactPage-authRemember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}
.contactPage-authActions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contactPage-authSubmit,
.contactPage-authSubmitLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 10px;
  background: #0c52d2;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.contactPage-authLink {
  color: #0c52d2;
  text-decoration: none;
  font-weight: 700;
}
.contactPage-authError {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #b42318;
}
/* /CONTACT_PAGE_AUTH_FORM_V1 */

/* CONTACT_PAGE_AUTH_HELP_MERGE_V1 */
.contactPage-authHelpCard {
  margin-bottom: 22px;
}
.contactPage-authHelpGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
}
.contactPage-authPane,
.contactPage-helpPane {
  min-width: 0;
}
.contactPage-helpPane {
  padding-top: 6px;
}
.contactPage-helpTitle {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}
.contactPage-helpText {
  font-size: 15px;
  line-height: 1.85;
  color: #4b5563;
}
.contactPage-helpText p {
  margin: 0 0 12px;
}
.contactPage-helpText p:last-child {
  margin-bottom: 0;
}
.contactPage-helpText a {
  color: #0c52d2;
  text-decoration: none;
  font-weight: 700;
}
.contactPage-authCard {
  margin-bottom: 22px;
}
.contactPage-authIntro {
  margin-bottom: 16px;
}
.contactPage-authForm {
  display: grid;
  gap: 14px;
  max-width: 100%;
}
.contactPage-authField label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f172a;
}
.contactPage-authInput {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #172033;
  font: inherit;
  box-sizing: border-box;
}
.contactPage-authInput:focus {
  outline: none;
  border-color: #0c52d2;
  box-shadow: 0 0 0 4px rgba(12, 82, 210, 0.1);
}
.contactPage-authMeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.contactPage-authRemember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}
.contactPage-authActions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contactPage-authSubmit,
.contactPage-authSubmitLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  background: #0c52d2;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}
.contactPage-authLink {
  color: #0c52d2;
  text-decoration: none;
  font-weight: 700;
}
.contactPage-authError {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: #b42318;
}
@media (max-width: 900px) {
  .contactPage-authHelpGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contactPage-helpPane {
    padding-top: 0;
  }
}
/* /CONTACT_PAGE_AUTH_HELP_MERGE_V1 */
\n\n/* CONTACT_PAGE_AUTH_BUTTON_TUNE_V1 */
.contactPage-authActions {
  align-items: center;
  gap: 20px;
}

.contactPage-authSubmit,
.contactPage-authSubmitLink {
  min-height: 42px !important;
  padding: 0 30px !important;
  border-radius: 10px !important;
  font-family: "Nunito", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.contactPage-authLink {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-family: "Nunito", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}
/* /CONTACT_PAGE_AUTH_BUTTON_TUNE_V1 */
\n

/* ===== BILLYS_SITE_FOOTER_SOCIAL_CENTER_V1 ===== */
.siteFooter {
  margin-top: 40px;
  padding: 20px 16px 30px;
  border-top: 1px solid rgba(12, 82, 210, 0.1);
  background: rgba(255, 255, 255, 0.68);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.siteFooter__inner--center {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.siteFooter__socialRow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.siteFooter__socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.siteFooter__socialLink:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.siteFooter__socialIcon {
  display: block;
  width: auto;
  height: 28px;
}

.siteFooter__legalCopy {
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: #1b1725;
}

.siteFooter__legalLinks {
  margin-top: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(27, 23, 37, 0.78);
}

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

.siteFooter__legalLinks a:hover {
  text-decoration: underline;
}

.siteFooter__legalLinksSeparator {
  opacity: 0.45;
  user-select: none;
}

@media (min-width: 768px) {
  .siteFooter__legalCopy {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .siteFooter {
    margin-top: 28px;
    padding: 18px 14px 24px;
  }

  .siteFooter__inner--center {
    gap: 8px;
  }

  .siteFooter__socialRow {
    gap: 5px;
  }

  .siteFooter__socialIcon {
    height: 26px;
  }

  .siteFooter__legalCopy {
    font-size: 12px;
    line-height: 1.6;
    white-space: normal;
  }

  .siteFooter__legalLinks {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ===== END BILLYS_SITE_FOOTER_SOCIAL_CENTER_V1 ===== */

/* ===== BILLYS_DRAWER_BG_FFFEF9_PRECISE_V1 ===== */
/* Hanya panel drawer mobile menu, bukan overlay dan bukan area lain */
.drawer__contents,
.drawer__fixed-header,
.drawer__header,
.drawer__scrollable,
.mobile-nav__menu,
.mobile-nav__menu-item,
.mobile-nav__menu-item a {
  background: #fffef9 !important;
}

/* Garis pemisah item tetap halus */
.mobile-nav__menu-item a {
  border-color: rgba(27, 23, 37, 0.08) !important;
}

/* Overlay tetap translucent, jangan ikut jadi krem penuh */
.drawer__overlay {
  background: rgba(27, 23, 37, 0.16) !important;
}
/* ===== /BILLYS_DRAWER_BG_FFFEF9_PRECISE_V1 ===== */

/* ===== BILLYS_HOME_BG_V2_KEEP_LEFT_BOTTOM_V1 ===== */
/* Jaga sisi kiri + bawah tetap terlihat, crop diarahkan ke kanan/atas */
body.page-home .storefront-home-decoration .ldv-hero {
  background-position: left bottom !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Semua breakpoint tetap anchor kiri-bawah */
@media (min-width: 1024px) {
  body.page-home .storefront-home-decoration .ldv-hero {
    background-position: left bottom !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  body.page-home .storefront-home-decoration .ldv-hero {
    background-position: left bottom !important;
  }
}

@media (max-width: 767.98px) {
  body.page-home .storefront-home-decoration .ldv-hero {
    background-position: left bottom !important;
  }
}
/* ===== /BILLYS_HOME_BG_V2_KEEP_LEFT_BOTTOM_V1 ===== */

/* ===== BILLYS_GLOBAL_LOADING_SCREEN_CSS_V1 ===== */
html.is-page-loading,
html.is-page-loading body {
  overflow: hidden;
}

.billysLoadingScreen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 254, 249, 0.94);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.billysLoadingScreen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.billysLoadingScreen__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.billysLoadingScreen__icon {
  width: clamp(34px, 4.2vw, 46px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  animation: billysLoadingPulse 1s ease-in-out infinite;
}

@keyframes billysLoadingPulse {
  0% {
    transform: scale(0.94);
    opacity: 0.72;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.94);
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .billysLoadingScreen__icon {
    animation: none;
  }
}
/* ===== /BILLYS_GLOBAL_LOADING_SCREEN_CSS_V1 ===== */

/* ===== BILLYS_CHECKOUT_SHIPPING_TITLE_ICON_V1 ===== */
.checkoutSectionTitleWithIcon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}

.checkoutSectionTitleIcon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  flex: 0 0 20px;
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .checkoutSectionTitleWithIcon {
    gap: 7px;
  }

  .checkoutSectionTitleIcon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
}
/* ===== /BILLYS_CHECKOUT_SHIPPING_TITLE_ICON_V1 ===== */

/* ===== BILLYS_PAGE_WRAPPER_TRANSPARENT_FIX_V1 ===== */
/* Membuka wrapper solid di halaman shop category, about, dan contact
   tanpa mengganggu nested card lebih dalam */
body.page-shop main,
body.page-about main,
body.page-contact main {
  background: transparent !important;
  background-color: transparent !important;
}

body.page-shop main > *:first-child,
body.page-about main > *:first-child,
body.page-contact main > *:first-child {
  background: transparent !important;
  background-color: transparent !important;
}

body.page-shop main > *:first-child > *:first-child,
body.page-about main > *:first-child > *:first-child,
body.page-contact main > *:first-child > *:first-child {
  background: transparent !important;
  background-color: transparent !important;
}

/* helper umum bila root wrapper memakai class utilitas */
body.page-shop main > .mb-page,
body.page-about main > .mb-page,
body.page-contact main > .mb-page,
body.page-shop main > .page-wrap,
body.page-about main > .page-wrap,
body.page-contact main > .page-wrap,
body.page-shop main > .page-shell,
body.page-about main > .page-shell,
body.page-contact main > .page-shell {
  background: transparent !important;
  background-color: transparent !important;
}

/* ===== BILLYS_SHOP_PAGE_BG_CONSOLIDATED_V3 ===== */
/* Menghapus solid color krem dan menggunakan background image fixed untuk halaman Shop */

body.page-shop {
  position: relative;
  isolation: isolate;
  background-color: transparent !important;
  background-image: none !important; /* Mencegah bentrok dengan ::before */
}

/* Layer background tetap (Fixed Viewport) */
body.page-shop::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  /* Warna krem dihapus total */
  background-color: transparent !important;
  background-image: url("/assets/home/billys-desktop-background-master.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  transform: translateZ(0);
  will-change: transform;
}

/* Pastikan semua elemen pembungkus transparan agar gambar terlihat */
body.page-shop main,
body.page-shop .wrap,
body.page-shop .wrap.page-shop,
body.page-shop .shopLayout,
body.page-shop .shopMain,
body.page-shop .shopSidebar,
body.page-shop .shopHero,
body.page-shop .shopHeroSlider,
body.page-shop .shopHeroSlide {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Responsif: Gambar menyesuaikan ukuran layar */
@media (max-width: 1180px) {
  body.page-shop::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}

@media (max-width: 900px) {
  body.page-shop::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}

@media (max-width: 640px) {
  body.page-shop::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp") !important;
  }
}
/* ===== END BILLYS_SHOP_PAGE_BG_CONSOLIDATED_V3 ===== */

/* 1. Pengaturan Dasar Body (Digabung) */
body.page-faq,
body:has(.faqPage) {
  position: relative;
  isolation: isolate;
  background: transparent !important;
}

/* 2. Pseudo-element Layer Background (Properti Umum Digabung) */
body.page-faq::before,
body:has(.faqPage)::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #fffef9;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* 3. Definisi Gambar Background Spesifik (Perbedaan Esensi) */
body.page-faq::before {
  background-image: url("/assets/home/billys-desktop-background-master.webp");
}

body:has(.faqPage)::before {
  background-image: url("/assets/home/billys-desktop-background-master.webp");
}

/* 4. Transparansi Elemen Konten (Semua Selektor Digabung) */
.wrap.page-faq,
body.page-faq main,
body.page-faq .mb-page,
body.page-faq .page-wrap,
body.page-faq .page-shell,
body.page-faq main > *:first-child,
body.page-faq main > *:first-child > *:first-child,
.wrap:has(> .faqPage),
.faqPage,
.faqWrap,
.faqHero,
.faqMainGrid,
.faqContent,
.faqAside {
  background: transparent !important;
  box-shadow: none !important;
}

/* 5. Responsive Media Queries (Diringkas) */
@media (max-width: 1180px) {
  body.page-faq::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp");
  }
  /* body:has(.faqPage) tetap pakai 'billys' sesuai kode asli Anda */
}

@media (max-width: 900px) {
  body.page-faq::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp");
  }
}

@media (max-width: 640px) {
  body.page-faq::before,
  body:has(.faqPage)::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp");
    background-position: center top;
    background-size: cover;
  }
}

body.page-skin-advisor2 {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  background-color: transparent !important;
}

body.page-skin-advisor2::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #fffef9;
  background-image: url("/assets/home/billys-desktop-background-master.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

body.page-skin-advisor2 .wrap,
body.page-skin-advisor2 main,
body.page-skin-advisor2 section,
body.page-skin-advisor2 article,
body.page-skin-advisor2 .skinAdvisor2Page,
body.page-skin-advisor2 .skinAdvisor2Wrap,
body.page-skin-advisor2 .skinAdvisorPage,
body.page-skin-advisor2 .sa2Page,
body.page-skin-advisor2 .sa2Wrap {
  background: transparent !important;
  background-color: transparent !important;
}

@media (max-width: 1180px) {
  body.page-skin-advisor2::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp");
  }
}

@media (max-width: 900px) {
  body.page-skin-advisor2::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp");
  }
}

@media (max-width: 640px) {
  body.page-skin-advisor2::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp");
    background-position: center top;
    background-size: cover;
  }
}

/* 1. Pengaturan Dasar Layout & Background Layer */
body.page-about,
.aboutBillysPage {
  position: relative;
  isolation: isolate;
  background: transparent !important;
}

body.page-about::before,
.aboutBillysPage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #fffef9;
  background-image: url("/assets/home/billys-desktop-background-master.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  transform: translateZ(0);
  will-change: transform;
}

/* 2. Menghapus Background pada Elemen Konten (Digabung Semua) */
body.page-about .wrap,
body.page-about main,
.aboutBillysPage,
.aboutBillysWrap,
.aboutPage,
.aboutWrap,
.aboutBillysHero,
.aboutBillysHeroSection,
.aboutBillysBusinessSection,
.aboutBillysBrandValuesSection,
.aboutBillysTopGrid,
.aboutBillysTopGridAdjusted,
.aboutBillysCompanyGrid,
.aboutBillysBusinessGrid,
.aboutBillysSection,
.aboutSection,
.aboutBillysBanner,
.aboutBillysGrid,
.aboutBillysStack,
.aboutBillysJourney,
.aboutBillysValues,
.aboutBillysCta {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important; /* Tambahan untuk memastikan bersih */
}

/* 3. Pengaturan Khusus untuk Card (Harus Tetap Putih) */
body.page-about [class*="Card"],
body.page-about [class*="card"],
.aboutBillysCard,
.aboutBillysWideCard,
.aboutBillysValue,
.aboutBillysStep {
  background: #fff !important;
}

/* 4. Responsive Media Queries (Hanya Perlu Satu Set) */
@media (max-width: 1180px) {
  body.page-about::before,
  .aboutBillysPage::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp");
  }
}

@media (max-width: 900px) {
  body.page-about::before,
  .aboutBillysPage::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp");
  }
}

@media (max-width: 640px) {
  body.page-about::before,
  .aboutBillysPage::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp");
    background-position: center top;
    background-size: cover;
  }
}

/* ===== BILLYS_HOME_BOTTOM_ICONS_BIGGER_V1 ===== */
/* Besarkan sedikit 4 icon kategori di bawah house */
body.page-home .storefront-home-decoration .billysHomeCatIcon {
  width: 92px !important;
  height: auto !important;
  max-width: none !important;
}

@media (min-width: 1600px) {
  body.page-home .storefront-home-decoration .billysHomeCatIcon {
    width: 128px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  body.page-home .storefront-home-decoration .billysHomeCatIcon {
    width: 80px !important;
  }
}

@media (max-width: 767.98px) {
  body.page-home .storefront-home-decoration .billysHomeCatIcon {
    width: 76px !important;
  }
}
/* ===== /BILLYS_HOME_BOTTOM_ICONS_BIGGER_V1 ===== */

/* ===== BILLYS_HOME_BOTTOM_ICONS_GAP_WIDER_V1 ===== */
/* Jarak antar 4 icon bawah house dibuat lebih renggang */
body.page-home .storefront-home-decoration .homeHeroIcons {
  gap: 26px !important;
}

@media (min-width: 1600px) {
  body.page-home .storefront-home-decoration .homeHeroIcons {
    gap: 30px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  body.page-home .storefront-home-decoration .homeHeroIcons {
    gap: 20px !important;
  }
}

@media (max-width: 767.98px) {
  body.page-home .storefront-home-decoration .homeHeroIcons {
    gap: 14px !important;
  }
}
/* ===== /BILLYS_HOME_BOTTOM_ICONS_GAP_WIDER_V1 ===== */

/* ===== BILLYS_HOME_BOTTOM_ICONS_BIGGER_GAP_V2 ===== */
/* Sedikit lebih besar + sedikit lebih renggang dari override sebelumnya */
body.page-home .storefront-home-decoration .homeHeroIcons {
  gap: 32px !important;
}

body.page-home .storefront-home-decoration .billysHomeCatIcon {
  width: 100px !important;
  height: auto !important;
  max-width: none !important;
}

@media (min-width: 1600px) {
  body.page-home .storefront-home-decoration .homeHeroIcons {
    gap: 36px !important;
  }
  body.page-home .storefront-home-decoration .billysHomeCatIcon {
    width: 136px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  body.page-home .storefront-home-decoration .homeHeroIcons {
    gap: 24px !important;
  }
  body.page-home .storefront-home-decoration .billysHomeCatIcon {
    width: 86px !important;
  }
}

@media (max-width: 767.98px) {
  body.page-home .storefront-home-decoration .homeHeroIcons {
    gap: 16px !important;
  }
  body.page-home .storefront-home-decoration .billysHomeCatIcon {
    width: 80px !important;
  }
}
/* ===== /BILLYS_HOME_BOTTOM_ICONS_BIGGER_GAP_V2 ===== */

/* ===== BILLYS_CONTACT_PAGE_BACKGROUND_CONSOLIDATED_V3 ===== */
/* Menampilkan background image homepage pada halaman /contact secara fixed dan bersih tanpa warna krem */

body.page-contact {
  position: relative;
  background-color: transparent !important;
  background-image: none !important; /* Mencegah double background dengan ::before */
}

/* Background tetap fixed ke viewport saat scroll */
body.page-contact::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  /* Warna krem dihapus agar gambar terlihat jelas */
  background-color: transparent !important;
  background-image: url("/assets/home/billys-desktop-background-master.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* Pastikan semua container di dalam halaman transparan */
body.page-contact .contactPage,
body.page-contact .contactPage-body,
body.page-contact .contactPage-hero,
body.page-contact .contactPage-heroOverlay {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Responsif: Mengganti gambar sesuai ukuran layar */
@media (max-width: 767.98px) {
  body.page-contact::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp") !important;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  body.page-contact::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}

@media (min-width: 1024px) and (max-width: 1365.98px) {
  body.page-contact::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}

@media (min-width: 1366px) {
  body.page-contact::before {
    background-image: url("/assets/home/billys-desktop-background-master.webp") !important;
  }
}
/* ===== /BILLYS_CONTACT_PAGE_BACKGROUND_CONSOLIDATED_V3 ===== */

/* ===== BILLYS_CONTACT_REMOVE_SOLID_BLOCKS_V1 ===== */
/* Hilangkan blok solid di halaman /contact supaya background global terlihat */

body.page-contact .contactPage-heroOverlay {
  background: transparent !important;
  background-image: none !important;
}

body.page-contact .contactPage-body,
body.page-contact .contactPage-mainCard,
body.page-contact .contactPage-infoCard,
body.page-contact .contactPage-mapCard,
body.page-contact .contactPage-cta,
body.page-contact .contactPage-authHelpCard,
body.page-contact .contactPage-authPane,
body.page-contact .contactPage-helpPane {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Border tetap halus supaya struktur section masih kebaca */
body.page-contact .contactPage-mainCard,
body.page-contact .contactPage-infoCard,
body.page-contact .contactPage-mapCard,
body.page-contact .contactPage-authHelpCard {
  border: 1px solid rgba(12, 82, 210, 0.1) !important;
}

/* Input tetap putih supaya form masih nyaman dibaca */
body.page-contact .contactPage-authInput {
  background: rgba(255, 255, 255, 0.88) !important;
}
/* ===== /BILLYS_CONTACT_REMOVE_SOLID_BLOCKS_V1 ===== */

/* ===== BILLYS_CHECKOUT_FIXED_VIEWPORT_BG_IMAGE_V2 ===== */
/* Checkout pakai image fixed viewport, konten scroll di atasnya */
body.page-checkout {
  position: relative;
  isolation: isolate;
  background: #f4faff !important;
}

body.page-checkout::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("/assets/home/desktop-homepage-background2.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: translateZ(0);
  will-change: transform;
}

@media (min-width: 1024px) and (max-width: 1279px) and (orientation: landscape) {
  body.page-checkout::before {
    background-image: url("/assets/home/tablet-homepage-horz-background2.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

@media (min-width: 768px) and (max-width: 1279px) and (orientation: portrait) {
  body.page-checkout::before {
    background-image: url("/assets/home/tablet-homepage-verti-background2.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

@media (max-width: 767px) {
  body.page-checkout::before {
    background-image: url("/assets/home/mobile-homepage-background2.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}

body.page-checkout > * {
  position: relative;
  z-index: 1;
}

/* wrapper checkout transparan supaya background image kelihatan */
body.page-checkout main,
body.page-checkout .wrap.page-checkout {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

/* card utama tetap putih, tapi area canvas halaman transparan */
body.page-checkout .wrap.page-checkout {
  min-height: 100vh;
}

/* mobile safari fallback */
@supports (-webkit-touch-callout: none) {
  body.page-checkout::before {
    background-attachment: scroll;
  }
}
/* ===== /BILLYS_CHECKOUT_FIXED_VIEWPORT_BG_IMAGE_V2 ===== */

/* ===== BILLYS_PAYMENT_POPUP_V1 ===== */
body.payment-popup-open{
  overflow:hidden;
}

.paymentSuccessPopup{
  position:fixed;
  inset:0;
  z-index:99990;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.paymentSuccessPopup[hidden]{
  display:none !important;
}

.paymentSuccessPopup__overlay{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.38);
  backdrop-filter:blur(4px);
}

.paymentSuccessPopup__dialog{
  position:relative;
  z-index:1;
  width:min(360px, 92vw);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:20px 18px 18px;
  border-radius:24px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);
  box-shadow:0 20px 60px rgba(15,23,42,.18);
  backdrop-filter:blur(10px);
  text-align:center;
}

.paymentSuccessPopup__image{
  display:block;
  width:min(220px, 70vw);
  height:auto;
  object-fit:contain;
  background:transparent !important;
}

.paymentSuccessPopup__heading{
  margin:0;
  font-size:18px;
  line-height:1.3;
  font-weight:900;
  color:#172033;
}

.paymentSuccessPopup__text{
  margin:0;
  font-size:15px;
  line-height:1.65;
  font-weight:800;
  color:#172033;
}

.paymentSuccessPopup__button{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  min-height:44px;
  padding:0 18px;
  border-radius:12px;
  background:#0c52d2;
  color:#ffffff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}

.paymentSuccessPopup__button:hover{
  opacity:.95;
}

.paymentSuccessPopup__button:active{
  transform:translateY(1px);
}

.paymentSuccessPopup__button--link{
  color:#ffffff !important;
}

@media (max-width: 640px){
  .paymentSuccessPopup__dialog{
    width:min(340px, 92vw);
    padding:18px 16px 16px;
    border-radius:20px;
  }

  .paymentSuccessPopup__image{
    width:min(190px, 68vw);
  }

  .paymentSuccessPopup__heading{
    font-size:17px;
  }

  .paymentSuccessPopup__text{
    font-size:14px;
  }
}
/* ===== END BILLYS_PAYMENT_POPUP_V1 ===== */

/* BILLYS_SHOP_HERO_RESPONSIVE_RATIO_V1 */
.page-shop .shopHero,
.page-shop .shopHeroSlider {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 5 !important;
  overflow: hidden;
  border-radius: 12px;
  background: transparent !important;
}

.page-shop .shopHeroSlider {
  position: relative;
}

.page-shop .shopHeroSlider .shopHeroSlide {
  position: absolute;
  inset: 0;
}

.page-shop .shopHeroSlider .shopHeroImg,
.page-shop .shopHeroSlider .shopHeroImg--desktop,
.page-shop .shopHeroSlider .shopHeroImg--mobile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px) {
  .page-shop .shopHero,
  .page-shop .shopHeroSlider {
    height: auto !important;
    aspect-ratio: 16 / 5 !important;
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .page-shop .shopHero,
  .page-shop .shopHeroSlider {
    height: auto !important;
    aspect-ratio: 16 / 5 !important;
    border-radius: 12px;
  }

  .page-shop .shopHeroSlider .shopHeroDots {
    bottom: 8px;
  }

  .page-shop .shopHeroSlider .shopHeroDot {
    width: 8px;
    height: 8px;
  }
}

/* ===== BILLYS_HOME_MOBILE_BG_FULL_COVER_V1 ===== */
/* Mobile home background: full, rapi, konsisten di berbagai lebar HP */
@media (max-width: 767.98px) {
  body.page-home .storefront-home-decoration .ldv-hero {
    background-image: url("/assets/home/mobile-homepage-background2.webp") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}
/* ===== /BILLYS_HOME_MOBILE_BG_FULL_COVER_V1 ===== */

