:root {
  /* =====================================================
     PENGATURAN HERO / VIDEO
     Ubah nilai ini saja untuk mengatur ukuran dan posisi video.
     ===================================================== */
  --hero-desktop-min-height: 100svh;
  --hero-mobile-height: 600px;
  --hero-mobile-video-position: 50% 42%;
  --hero-mobile-grain-opacity: 0;

  --ink: #11100e;
  --paper: #f1eee8;
  --cream: #e4ded4;
  --line: rgba(25, 20, 14, 0.14);
  --gold: #b88a3b;
  --gold2: #d7b56d;
  --dark: #090909;
  --muted: #6f6961;
  --green: #1c8b5a;
  --radius: 28px;
  --serif: "Bodoni 72", "Didot", "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.locked {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1240px, calc(100% - 48px));
  margin: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
:root {
  /* Kecepatan marquee.
     Angka lebih kecil = lebih cepat.
     Angka lebih besar = lebih lambat. */
  --marquee-speed: 30s;
}

.topbar {
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
  color: #d7b56d;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  white-space: nowrap;
  will-change: transform;

  /* Mulai dari luar layar sebelah kanan */
  transform: translateX(100vw);

  animation:
    marquee var(--marquee-speed) linear infinite;
}

.marquee span {
  flex-shrink: 0;
  padding-right: 70px;
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

.header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  transition: 0.35s;
}
.header.scrolled,
.inner-page .header {
  top: 0;
  background: rgba(248, 246, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 35px rgba(17, 16, 14, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-row {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  position: relative;
  white-space: nowrap;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.25s;
}
.nav a:hover:after {
  width: 100%;
}
.logo-shell {
  width: 210px;
  height: 70px;
  padding: 8px 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 138, 59, 0.42);
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}
.logo-shell img {
  max-height: 52px;
  width: 100%;
  object-fit: contain;
}
.logo-fallback {
  display: none;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: #10100f;
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.icon-btn,
.menu-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.25s;
}
.icon-btn:hover,
.menu-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.menu-btn {
  display: none;
}
.cart-count {
  position: absolute;
  right: -4px;
  top: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
}
.hero {
  position: relative;
  min-height: var(--hero-desktop-min-height);
  background: #090909;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media img {
  z-index: -1;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.62) 45%,
      rgba(5, 5, 5, 0.14) 78%
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 48%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.17;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 190px;
  padding-bottom: 105px;
}
.hero-copy {
  max-width: 720px;
}
.hero-copy .eyebrow {
  color: #d7b56d;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 7.5vw, 116px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 900px;
}
.hero h1 em {
  color: var(--gold2);
  font-weight: 400;
}
.hero p {
  max-width: 590px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.btn {
  border: 1px solid var(--ink);
  background: transparent;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.16);
}
.btn.gold {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: transparent;
  color: #15120d;
}
.btn.light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn.dark {
  background: #10100f;
  color: #fff;
  border-color: #10100f;
}
.btn.full {
  width: 100%;
}
.scroll-cue {
  position: absolute;
  right: 4%;
  bottom: 48px;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}
.scroll-cue:after {
  content: "";
  width: 1px;
  height: 70px;
  background: linear-gradient(#fff, transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  50% {
    transform: scaleY(0.55);
    transform-origin: top;
  }
}
.signature-strip {
  background: #0d0d0c;
  color: #e8dfd2;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.signature-item {
  padding: 27px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.signature-item:last-child {
  border: 0;
}
.signature-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}
.signature-item span {
  font-size: 12px;
  color: #817b73;
}
.section {
  padding: 110px 0;
}
.section.soft {
  background: #e8e3da;
}
.section.dark {
  background: #0a0a09;
  color: #fff;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 46px;
}
.section-head h2,
.editorial-copy h2,
.finder-copy h2,
.about-story h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 10px 0;
}
.section-head p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}
.link-arrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-bottom: 1px solid;
  padding-bottom: 8px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.collection-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #11100e;
  color: #fff;
  box-shadow: 0 25px 60px rgba(17, 16, 14, 0.10);
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.collection-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 62%);
}
.collection-card-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 25px;
  z-index: 2;
}
.collection-card-copy span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d0aa61;
}
.collection-card-copy h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  margin: 8px 0 0;
}
.collection-card:hover img {
  transform: scale(1.07);
}
.collection-card:nth-child(2),
.collection-card:nth-child(4) {
  transform: translateY(28px);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.product-card {
  min-width: 0;
}
.product-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 7/8.2;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #11100e;
  cursor: pointer;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-visual img {
  transform: scale(1.045);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quick-label {
  position: absolute;
  left: 50%;
  bottom: 17px;
  transform: translate(-50%, 18px);
  opacity: 0;
  padding: 12px 18px;
  border-radius: 999px;
  background: #f3efe8;
  color: #11100e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  white-space: nowrap;
  transition: 0.3s;
}
.product-card:hover .quick-label {
  opacity: 1;
  transform: translate(-50%, 0);
}
.product-info {
  padding: 19px 4px;
}
.product-notes {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--muted);
  font-size: 11px;
}
.product-info h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 6px 0 18px;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-bottom strong {
  font-size: 14px;
}
.round-add {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  transition: 0.25s;
}
.round-add:hover {
  background: #10100f;
  color: #fff;
  transform: rotate(90deg);
}
.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
}
.editorial-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}
.editorial-media video,
.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(45px, 7vw, 110px);
  background: #11100e;
  color: #fff;
}
.editorial-copy .eyebrow {
  color: #d1aa61;
}
.editorial-copy p {
  color: #969089;
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 30px;
}
.finder {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.finder-copy p {
  line-height: 1.8;
  color: var(--muted);
  max-width: 550px;
}
.finder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.finder-option {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(248, 246, 241, 0.62);
  padding: 28px;
  text-align: left;
  cursor: pointer;
  transition: 0.35s;
}
.finder-option b {
  display: block;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  margin-bottom: 9px;
}
.finder-option span {
  font-size: 12px;
  color: var(--muted);
}
.finder-option:hover {
  background: #11100e;
  color: #fff;
  transform: translateY(-6px);
}
.finder-option:hover span {
  color: #969089;
}
.testimonial {
  padding: 130px 0;
  text-align: center;
  background: #ded7cd;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.testimonial cite {
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.newsletter {
  background: #090909;
  color: #fff;
  padding: 80px 0;
}
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  margin: 0;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 18px 0;
  outline: 0;
}
.newsletter-form button {
  border: 0;
  background: transparent;
  color: #cda75e;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  cursor: pointer;
}
.footer {
  padding: 75px 0 25px;
  background: #070707;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 70px;
}
.footer-logo {
  width: 210px;
  background: #f1ece4;
  border-radius: 80px;
  padding: 10px 20px;
  margin-bottom: 22px;
}
.footer-logo img {
  max-height: 56px;
  margin: auto;
}
.footer p {
  color: #827d77;
  line-height: 1.8;
  font-size: 13px;
}
.footer h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #cda75e;
  margin: 0 0 22px;
}
.footer a {
  display: block;
  color: #938e88;
  font-size: 13px;
  margin: 13px 0;
  transition: 0.2s;
}
.footer a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: #68645f;
  font-size: 11px;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 6, 5, 0.65);
  backdrop-filter: blur(5px);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.side-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 100;
  background: #f3efe8;
  transition: 0.45s cubic-bezier(0.22, 0.8, 0.25, 1);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.18);
}
.cart-drawer {
  right: 0;
  width: min(460px, 94vw);
  transform: translateX(105%);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: none;
}
.mobile-menu {
  left: 0;
  width: min(390px, 90vw);
  transform: translateX(-105%);
  padding: 34px;
}
.mobile-menu.open {
  transform: none;
}
.mobile-menu .menu-logo {
  background: #e7e1d8;
  border-radius: 80px;
  padding: 10px 18px;
  margin-bottom: 38px;
}
.mobile-menu > a {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  border-bottom: 1px solid var(--line);
  padding: 15px 2px;
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 35px;
  margin: 0;
}
.close-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}
.cart-items {
  padding: 20px;
  overflow: auto;
  flex: 1;
}
.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 84px;
  height: 100px;
  object-fit: cover;
  border-radius: 13px;
}
.cart-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin: 6px 0;
}
.cart-item small {
  color: var(--muted);
}
.remove {
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  align-self: start;
}
.qty {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.qty button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.drawer-foot {
  padding: 24px;
  border-top: 1px solid var(--line);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--serif);
  font-size: 25px;
  margin-bottom: 20px;
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state span {
  font-size: 50px;
  color: var(--gold);
}
.empty-state h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  font-weight: 400;
}
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1e9e64;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 40px rgba(20, 105, 67, 0.3);
  animation: float 3s ease-in-out infinite;
}
.wa-float svg {
  width: 27px;
}
.wa-float:after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid #1e9e64;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes float {
  50% {
    transform: translateY(-7px);
  }
}
@keyframes pulse {
  to {
    transform: scale(1.35);
    opacity: 0;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(6, 5, 4, 0.74);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.welcome-card {
  position: relative;
  width: min(920px, 100%);
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: #f3efe8;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.4);
  transform: translateY(30px) scale(0.97);
  transition: 0.45s;
}
.modal.show .welcome-card,
.modal.show .quick-card {
  transform: none;
}
.welcome-media {
  position: relative;
  min-height: 570px;
}
.welcome-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 55%);
}
.welcome-logo {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  width: 180px;
  padding: 8px 16px;
  border-radius: 80px;
  background: rgba(245, 237, 225, 0.94);
}
.welcome-copy {
  padding: 65px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.welcome-copy .eyebrow {
  color: #a87932;
}
.welcome-copy h2 {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.95;
  font-weight: 400;
  margin: 20px 0;
}
.welcome-copy p {
  color: var(--muted);
  line-height: 1.75;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(248, 246, 241, 0.92);
  font-size: 24px;
  cursor: pointer;
}
.quick-card {
  position: relative;
  width: min(900px, 100%);
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f3efe8;
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  transition: 0.4s;
}
.quick-card > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}
.quick-copy {
  padding: 65px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quick-copy .eyebrow {
  color: #a87932;
}
.quick-copy h2 {
  font-family: var(--serif);
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
  margin: 20px 0 14px;
}
.quick-notes {
  color: #a87932;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.quick-copy p {
  color: var(--muted);
  line-height: 1.8;
}
.quick-price {
  font-family: var(--serif);
  font-size: 31px;
  margin: 25px 0;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 200;
  transform: translate(-50%, 30px);
  opacity: 0;
  padding: 14px 22px;
  border-radius: 99px;
  background: #10100f;
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.page-hero {
  padding: 220px 0 90px;
  background: #11100e;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero:after {
  content: "SI";
  position: absolute;
  right: -30px;
  bottom: -90px;
  font-family: var(--serif);
  font-size: 330px;
  color: rgba(255, 255, 255, 0.025);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 105px);
  font-weight: 400;
  line-height: 0.9;
  margin: 20px 0;
}
.page-hero p {
  color: #938e88;
  max-width: 590px;
  line-height: 1.8;
}
.breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.catalog-tools {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 38px;
}
.search-box {
  position: relative;
  flex: 1;
  max-width: 520px;
}
.search-box input {
  width: 100%;
  height: 55px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(248, 246, 241, 0.72);
  padding: 0 55px 0 22px;
  outline: 0;
}
.search-box svg {
  position: absolute;
  right: 20px;
  top: 17px;
  width: 20px;
}
.search-result {
  font-size: 11px;
  color: var(--muted);
}
.filter-row {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 8px;
}
.filter-chip {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  padding: 0 18px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 11px;
}
.filter-chip.active,
.filter-chip:hover {
  background: #10100f;
  color: #fff;
}
.all-collections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.all-collections .collection-card {
  min-height: 460px;
}
.all-collections .collection-card:nth-child(even) {
  transform: translateY(40px);
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  min-height: 650px;
  border-radius: 40px;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.about-visual-badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #cfa85c;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 23px;
  animation: float 4s ease-in-out infinite;
}
.about-story p {
  color: var(--muted);
  line-height: 1.9;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 25px;
}
.value-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 45px;
}
.value-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}
.value-card p {
  color: var(--muted);
  line-height: 1.75;
}
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1050px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .header-row {
    grid-template-columns: 1fr auto 1fr;
  }
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection-card:nth-child(2),
  .collection-card:nth-child(4) {
    transform: none;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .editorial {
    grid-template-columns: 1fr;
  }
  .editorial-media {
    min-height: 520px;
  }
  .finder {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    display: none;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1240px);
  }
  .topbar {
    height: 30px;
  }
  .header {
    top: 30px;
  }
  .header-row {
    height: 76px;
    gap: 8px;
  }
  .logo-shell {
    width: 155px;
    height: 55px;
    padding: 7px 14px;
  }
  .logo-shell img {
    max-height: 39px;
  }
  .icon-btn,
  .menu-btn {
    width: 39px;
    height: 39px;
  }
  .header-actions .icon-btn:first-child {
    display: none;
  }
  /* =====================================================
     HERO MOBILE
     Tinggi utama dikontrol oleh --hero-mobile-height di atas.
     Contoh: 540px lebih pendek, 650px lebih tinggi.
     ===================================================== */
  .hero {
    min-height: 0;
    height: var(--hero-mobile-height);
    max-height: none;
  }

  .hero-media,
  .hero-media video,
  .hero-media img {
    width: 100%;
    height: 100%;
  }

  .hero-media video,
  .hero-media img {
    object-fit: cover;
    object-position: var(--hero-mobile-video-position);
    filter: none;
    transform: none;
  }

  /* Grain dimatikan di mobile agar video tidak tampak buram. */
  .hero-grain {
    opacity: var(--hero-mobile-grain-opacity);
  }

  .hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 118px;
    padding-bottom: 24px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
    line-height: 1.4;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 0.92;
  }

  .hero p {
    font-size: 13px;
    line-height: 1.6;
    margin: 18px 0 20px;
  }

  .hero-actions {
    gap: 9px;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0 19px;
    font-size: 10px;
  }
  .scroll-cue {
    display: none;
  }
  .signature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .signature-item:nth-child(2) {
    border-right: 0;
  }
  .signature-item {
    padding: 21px 16px;
  }
  .signature-item strong {
    font-size: 17px;
  }
  .section {
    padding: 76px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .section-head h2,
  .editorial-copy h2,
  .finder-copy h2,
  .about-story h2 {
    font-size: 46px;
  }
  .collection-grid {
    display: flex;
    overflow: auto;
    scroll-snap-type: x mandatory;
    margin-right: -14px;
    padding-right: 14px;
  }
  .collection-card {
    min-width: 78vw;
    min-height: 410px;
    scroll-snap-align: start;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-info h3 {
    font-size: 21px;
  }
  .product-notes {
    font-size: 9px;
  }
  .round-add {
    width: 36px;
    height: 36px;
  }
  .editorial-media {
    min-height: 430px;
  }
  .editorial-copy {
    padding: 60px 24px;
  }
  .finder-options {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .finder-option {
    min-height: 145px;
    padding: 20px;
  }
  .finder-option b {
    font-size: 24px;
  }
  .testimonial {
    padding: 90px 15px;
  }
  .newsletter-row {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .newsletter h2 {
    font-size: 38px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .welcome-card {
    grid-template-columns: 1fr;
    max-height: 90svh;
    overflow: auto;
  }
  .welcome-media {
    min-height: 270px;
  }
  .welcome-copy {
    padding: 38px 26px;
  }
  .welcome-copy h2 {
    font-size: 43px;
  }
  .quick-card {
    width: 100%;
    max-width: 420px;
    margin: auto;
    grid-template-columns: 1fr;
    max-height: 92svh;
    overflow: auto;
  }
  .quick-card > img {
    height: 330px;
  }
  .quick-copy {
    padding: 35px 25px;
  }
  .quick-copy h2 {
    font-size: 43px;
  }
  .page-hero {
    padding: 165px 0 65px;
  }
  .page-hero h1 {
    font-size: 62px;
  }
  .catalog-tools {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-box {
    width: 100%;
    max-width: none;
  }
  .all-collections {
    grid-template-columns: 1fr;
  }
  .all-collections .collection-card:nth-child(even) {
    transform: none;
  }
  .all-collections .collection-card {
    min-height: 390px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-visual {
    min-height: 480px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .wa-float {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 39px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .finder-options {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

/* Scentsual Inspire variant selector + clean logo */
.logo-shell {
  width: 250px;
  height: 78px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.logo-shell img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.25));
}
.header.scrolled .logo-shell img,
.inner-page .logo-shell img {
  filter: none;
}
.welcome-logo {
  left: 24px;
  bottom: 24px;
  width: 230px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.55));
}
.welcome-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.menu-logo {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.menu-logo img {
  width: 240px;
  max-height: 95px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.footer-logo {
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
}
.footer-logo img {
  width: 260px;
  max-height: 105px;
  object-fit: contain;
}
.variant-block {
  margin-top: 18px;
}
.variant-title {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9e742e;
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-chip {
  min-width: 66px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(25, 20, 14, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.variant-chip b {
  font-size: 12px;
  font-weight: 700;
}
.variant-chip small {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: 0.04em;
  color: #77716a;
}
.variant-chip:hover,
.variant-chip.active {
  background: #11100e;
  border-color: #11100e;
  color: #fff;
  transform: translateY(-2px);
}
.variant-chip.active small,
.variant-chip:hover small {
  color: #c9c0b5;
}
.variant-chip.concentration {
  min-width: 100px;
}
.quick-selection {
  margin-top: 16px;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(184, 138, 59, 0.14);
  font-size: 11px;
  color: #876128;
}
.quick-price {
  margin: 16px 0 !important;
}
.cart-variant {
  display: block;
  margin: 4px 0 6px;
  color: #a87932;
  font-size: 10px;
  letter-spacing: 0.03em;
}
@media (max-width: 760px) {
  .logo-shell {
    width: 190px;
    height: 62px;
  }
  .logo-shell img {
    max-height: 60px;
  }
  .welcome-logo {
    width: 205px;
    left: 18px;
    bottom: 18px;
  }
  .quick-copy {
    padding: 30px 24px 34px;
  }
  .quick-copy h2 {
    margin: 13px 0 10px;
  }
  .variant-block {
    margin-top: 14px;
  }
  .variant-options {
    gap: 7px;
  }
  .variant-chip {
    min-width: 58px;
    min-height: 40px;
    padding: 7px 10px;
  }
  .variant-chip.concentration {
    min-width: 91px;
  }
}
@media (max-width: 390px) {
  .logo-shell {
    width: 160px;
  }
  .variant-chip.concentration {
    min-width: 84px;
  }
}

/* =====================================================
   HERO BANNER: KOLEKSI, PREMIUM, DAN PALING LARIS
   ===================================================== */
.page-hero.page-hero-banner {
  min-height: 520px;
  padding: 220px 0 110px;
  background-color: #0b0908;
  background-image:
    linear-gradient(
      90deg,
      rgba(8, 7, 6, 0.94) 0%,
      rgba(8, 7, 6, 0.84) 30%,
      rgba(8, 7, 6, 0.48) 58%,
      rgba(8, 7, 6, 0.12) 100%
    ),
    var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero.page-hero-banner::after {
  display: none;
}

.page-hero.page-hero-banner .container {
  position: relative;
  z-index: 1;
}

.page-hero.page-hero-banner .eyebrow {
  color: #f7e7c5;
}

.page-hero.page-hero-banner h1 {
  max-width: 790px;
  text-wrap: balance;
  text-shadow: 0 9px 30px rgba(0, 0, 0, 0.38);
}

.page-hero.page-hero-banner p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

@media (max-width: 760px) {
  .page-hero.page-hero-banner {
    min-height: 470px;
    padding: 150px 0 70px;
    background-position: 72% center;
    background-image:
      linear-gradient(
        180deg,
        rgba(8, 7, 6, 0.52) 0%,
        rgba(8, 7, 6, 0.74) 38%,
        rgba(8, 7, 6, 0.91) 100%
      ),
      var(--hero-image);
  }

  .page-hero.page-hero-banner h1 {
    max-width: 100%;
    font-size: clamp(42px, 11vw, 62px);
    line-height: 0.95;
  }

  .page-hero.page-hero-banner p {
    max-width: 100%;
    line-height: 1.65;
  }
}


/* =====================================================
   ABOUT / CERITA SAMPLE PARFUM — FINAL CLEAN FIX
   ===================================================== */

/* Area banner Cerita WP Parfum */
.about-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
}

/* Banner utama memenuhi kotak secara proporsional */
.about-visual > img:first-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

/*
  Badge Most Trusted:
  - background bulat oranye dihapus
  - hanya gambar badge yang terlihat
  - ukurannya dijaga agar tidak membesar
*/
.about-visual-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  width: 150px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  display: block;
  animation: none;
  overflow: visible;
  font-size: 0;
  line-height: 0;
}

/* Bila badge memakai elemen img */
.about-visual-badge img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  max-width: 150px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

/* Bila badge dipasang langsung sebagai gambar dengan class yang sama */
img.about-visual-badge {
  width: 150px;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
}

/* Jangan beri pseudo-element atau warna tambahan pada badge */
.about-visual-badge::before,
.about-visual-badge::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .about-visual > img:first-child {
    object-position: center;
  }

  .about-visual-badge,
  img.about-visual-badge {
    right: 14px;
    bottom: 14px;
    width: 92px;
    max-width: 92px;
  }

  .about-visual-badge img {
    max-width: 92px;
  }
}

/* =====================================================
   HERO BANNER: KATEGORI KOLEKSI
   ===================================================== */
.page-hero.page-hero-banner {
  background-position: var(--hero-position, center);
}

@media (max-width: 760px) {
  .page-hero.page-hero-banner {
    background-position: var(--hero-position-mobile, 72% center);
  }
}

/* Posisi teks tetap enak dibaca */
.page-hero.page-hero-banner .container {
  max-width: min(1240px, calc(100% - 48px));
}

@media (max-width: 760px) {
  .page-hero.page-hero-banner .container {
    max-width: calc(100% - 28px);
  }
}


/* WHATSAPP MULTI ADMIN POPUP */
.wa-float {
  border: 0;
  cursor: pointer;
  background: #25d366;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.34);
  transition: transform .25s ease, background .25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float .wa-close-icon {
  display: none;
  font: 300 34px/1 Arial, sans-serif;
  margin-top: -3px;
}
.wa-float.open svg { display: none; }
.wa-float.open .wa-close-icon { display: block; }
.wa-float.open { animation: none; transform: rotate(90deg); }

.wa-popup {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 59;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  color: #252525;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.96);
  transform-origin: right bottom;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.wa-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wa-popup-head {
  padding: 24px 22px 20px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #17b855);
}
.wa-popup-brand { display: flex; gap: 14px; align-items: flex-start; }
.wa-head-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
}
.wa-head-icon svg { width: 23px; }
.wa-popup-brand strong { display: block; font-size: 18px; line-height: 1.25; }
.wa-popup-brand p { margin: 7px 0 0; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.92); }
.wa-popup-status {
  padding: 13px 22px;
  font-size: 12px;
  color: #8b8b8b;
  background: #fbfbfb;
  border-bottom: 1px solid #f0f0f0;
}
.wa-admin-list { padding: 14px; display: grid; gap: 10px; }
.wa-admin-card {
  width: 100%;
  border: 1px solid #edf0ee;
  border-left: 3px solid #25d366;
  border-radius: 12px;
  background: #f7f9f8;
  padding: 12px;
  display: grid;
  grid-template-columns: 48px 1fr 8px 24px;
  align-items: center;
  gap: 11px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.wa-admin-card:hover { background: #fff; border-color: #bfeccb; transform: translateY(-1px); }
.wa-admin-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.wa-admin-avatar img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.wa-avatar-fallback { display: none; place-items: center; width: 100%; height: 100%; color: #25d366; font-weight: 700; }
.wa-admin-copy { min-width: 0; }
.wa-admin-copy strong { display: block; color: #333; font-size: 14px; }
.wa-admin-copy small { display: block; margin-top: 3px; color: #929292; font-size: 11px; }
.wa-admin-online { width: 8px; height: 8px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 3px rgba(37,211,102,.14); }
.wa-admin-icon { width: 22px; color: #25d366; }
.wa-popup-hours { padding: 0 18px 15px; text-align: center; color: #9a9a9a; font-size: 11px; }

@media (max-width: 640px) {
  .wa-float { right: 18px; bottom: 18px; }
  .wa-popup { right: 16px; bottom: 88px; width: calc(100vw - 32px); }
}


/* WHATSAPP LAUNCHER LABEL */
.wa-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-launcher .wa-float {
  position: relative;
  right: auto;
  bottom: auto;
  flex: 0 0 58px;
}
.wa-label {
  min-width: 172px;
  padding: 11px 14px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #1f2937;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transform-origin: right center;
  animation: waLabelBubble 3.2s ease-in-out infinite;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.wa-label::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fff;
  transform: translateY(-50%);
}
.wa-label span,
.wa-label strong {
  display: block;
  line-height: 1.3;
}
.wa-label span { font-size: 13px; font-weight: 500; }
.wa-label strong { margin-top: 2px; font-size: 14px; font-weight: 700; }
.wa-launcher.open .wa-label {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px) scale(.96);
  animation: none;
  pointer-events: none;
}
@keyframes waLabelBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.015); }
}

@media (max-width: 640px) {
  .wa-launcher { right: 18px; bottom: 18px; gap: 8px; }
  .wa-launcher .wa-float { right: auto; bottom: auto; }
  .wa-label { min-width: 150px; padding: 9px 11px; }
  .wa-label span { font-size: 11px; }
  .wa-label strong { font-size: 13px; }
}

@media (max-width: 390px) {
  .wa-label { min-width: 132px; }
  .wa-label span { font-size: 10px; }
}
/* =====================================================
   MIDNIGHT BLACK + CHAMPAGNE GOLD — PREMIUM THEME
   Ditambahkan paling bawah agar layout asli tetap aman.
   ===================================================== */
:root {
  --ink: #f7f3eb;
  --paper: #11100f;
  --cream: #191713;
  --line: rgba(224, 191, 118, 0.20);
  --gold: #c79a45;
  --gold2: #e2bf76;
  --dark: #080808;
  --muted: #aaa096;
  --surface: #171512;
  --surface-2: #201c17;
  --ivory: #f3efe8;
  color-scheme: dark;
}

html {
  background: #080808;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 69, 0.08), transparent 28%),
    radial-gradient(circle at 88% 34%, rgba(226, 191, 118, 0.05), transparent 24%),
    var(--paper);
  color: var(--ink);
}

::selection {
  background: var(--gold);
  color: #12100d;
}

/* TOPBAR + HEADER */
.topbar {
  background: #070707;
  color: var(--gold2);
  border-bottom: 1px solid rgba(226, 191, 118, 0.14);
}

.header.scrolled,
.inner-page .header {
  background: rgba(10, 9, 8, 0.94);
  color: var(--ink);
  border-bottom: 1px solid rgba(226, 191, 118, 0.14);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34);
}

.header.scrolled .logo-shell,
.inner-page .logo-shell {
  width: 230px;
  height: 68px;
  padding: 5px 16px;
  border: 1px solid rgba(199, 154, 69, 0.30);
  border-radius: 999px;
  background: rgba(243, 239, 232, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header.scrolled .logo-shell img,
.inner-page .logo-shell img {
  max-height: 56px;
  filter: none;
}

.nav a::after {
  background: var(--gold2);
}

.icon-btn:hover,
.menu-btn:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: #15120d;
  box-shadow: 0 8px 26px rgba(199, 154, 69, 0.25);
}

.cart-count {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #15120d;
  font-weight: 800;
}

/* HERO */
.hero {
  background: #070707;
}

.hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.94) 0%,
      rgba(5, 5, 5, 0.70) 45%,
      rgba(5, 5, 5, 0.18) 78%
    ),
    linear-gradient(0deg, rgba(5, 5, 5, 0.82), transparent 52%);
}

.hero-copy .eyebrow,
.editorial-copy .eyebrow,
.page-hero.page-hero-banner .eyebrow {
  color: var(--gold2);
}

.hero h1 em {
  color: var(--gold2);
  text-shadow: 0 0 32px rgba(226, 191, 118, 0.20);
}

.btn.gold {
  background: linear-gradient(135deg, #ebcc87 0%, var(--gold2) 44%, var(--gold) 100%);
  color: #15120d;
  box-shadow: 0 12px 32px rgba(199, 154, 69, 0.18);
}

.btn.dark {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: #15120d;
}

.btn.light:hover {
  background: rgba(226, 191, 118, 0.14);
  border-color: var(--gold2);
  color: var(--gold2);
}

.signature-strip {
  background: #090908;
  color: #eee7dc;
  border-color: rgba(226, 191, 118, 0.14);
}

.signature-item {
  border-color: rgba(226, 191, 118, 0.13);
}

.signature-item strong {
  color: var(--gold2);
}

.signature-item span {
  color: #999087;
}

/* SECTION BACKGROUNDS */
.section {
  background: var(--paper);
}

.section.soft {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 48%),
    var(--surface);
  border-top: 1px solid rgba(226, 191, 118, 0.08);
  border-bottom: 1px solid rgba(226, 191, 118, 0.08);
}

.section.dark {
  background:
    radial-gradient(circle at 85% 18%, rgba(199, 154, 69, 0.10), transparent 25%),
    #080808;
}

.section-head p,
.finder-copy p,
.about-story p,
.value-card p,
.product-notes {
  color: var(--muted);
}

.link-arrow {
  color: var(--gold2);
  border-color: rgba(226, 191, 118, 0.55);
}

/* COLLECTION + PRODUCT */
.collection-card,
.product-visual {
  background: #0b0a09;
  border: 1px solid rgba(226, 191, 118, 0.13);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.collection-card-copy span {
  color: var(--gold2);
}

.product-badge {
  background: rgba(243, 239, 232, 0.92);
  color: #11100e;
  border: 1px solid rgba(199, 154, 69, 0.35);
}

.product-info h3,
.product-bottom strong {
  color: var(--ink);
}

.round-add {
  border-color: rgba(226, 191, 118, 0.34);
  color: var(--gold2);
}

.round-add:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: #15120d;
  box-shadow: 0 10px 28px rgba(199, 154, 69, 0.20);
}

/* EDITORIAL */
.editorial-copy {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 154, 69, 0.12), transparent 28%),
    #0b0a09;
  color: var(--ink);
  border-left: 1px solid rgba(226, 191, 118, 0.10);
}

.editorial-copy p {
  color: #aaa096;
}

/* AROMA FINDER */
.finder-option {
  border-color: rgba(226, 191, 118, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(199, 154, 69, 0.055)),
    #151310;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.finder-option span {
  color: #a69b90;
}

.finder-option:hover {
  background: linear-gradient(135deg, #e8c77f, var(--gold));
  border-color: var(--gold2);
  color: #15120d;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(226, 191, 118, 0.20);
}

.finder-option:hover span {
  color: rgba(21, 18, 13, 0.70);
}

/* TESTIMONIAL */
.testimonial {
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 154, 69, 0.12), transparent 38%),
    #1a1713;
  color: var(--ink);
  border-top: 1px solid rgba(226, 191, 118, 0.12);
  border-bottom: 1px solid rgba(226, 191, 118, 0.12);
}

.testimonial blockquote::first-letter {
  color: var(--gold2);
}

.testimonial cite {
  color: var(--gold2);
}

/* NEWSLETTER + FOOTER */
.newsletter {
  background: #090908;
  border-top: 1px solid rgba(226, 191, 118, 0.12);
}

.newsletter-form {
  border-color: rgba(226, 191, 118, 0.40);
}

.newsletter-form button,
.footer h3 {
  color: var(--gold2);
}

.footer {
  background: #060606;
  border-top: 1px solid rgba(226, 191, 118, 0.10);
}

.footer p,
.footer a {
  color: #948b82;
}

.footer a:hover {
  color: var(--gold2);
}

.footer-bottom {
  border-color: rgba(226, 191, 118, 0.12);
  color: #7c746c;
}

/* DRAWER + MOBILE MENU */
.side-panel,
.cart-drawer,
.mobile-menu {
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 69, 0.10), transparent 28%),
    #12100e;
  color: var(--ink);
}

.drawer-head,
.drawer-foot,
.cart-item,
.mobile-menu > a {
  border-color: rgba(226, 191, 118, 0.18);
}

.close-btn,
.qty button {
  border-color: rgba(226, 191, 118, 0.28);
  color: var(--gold2);
}

.close-btn:hover,
.qty button:hover {
  background: var(--gold);
  color: #15120d;
}

.empty-state h3 {
  color: var(--ink);
}

/* MODAL PRODUK + WELCOME */
.welcome-card,
.quick-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 154, 69, 0.10), transparent 30%),
    #151310;
  color: var(--ink);
  border: 1px solid rgba(226, 191, 118, 0.16);
}

.welcome-copy .eyebrow,
.quick-copy .eyebrow,
.quick-notes,
.cart-variant,
.variant-title {
  color: var(--gold2);
}

.welcome-copy p,
.quick-copy p {
  color: var(--muted);
}

.modal-close {
  background: rgba(243, 239, 232, 0.94);
  color: #11100e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.quick-selection {
  background: rgba(199, 154, 69, 0.14);
  border: 1px solid rgba(226, 191, 118, 0.18);
  color: var(--gold2);
}

.variant-chip {
  border-color: rgba(226, 191, 118, 0.24);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.variant-chip small {
  color: #9e958b;
}

.variant-chip:hover,
.variant-chip.active {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: #15120d;
  box-shadow: 0 8px 22px rgba(199, 154, 69, 0.18);
}

.variant-chip.active small,
.variant-chip:hover small {
  color: rgba(21, 18, 13, 0.68);
}

.toast {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #15120d;
  font-weight: 700;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

/* INNER PAGES */
.page-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(199, 154, 69, 0.12), transparent 28%),
    #090908;
}

.page-hero p,
.breadcrumb,
.search-result {
  color: var(--muted);
}

.breadcrumb {
  background: #100e0c;
  border-color: rgba(226, 191, 118, 0.14);
}

.search-box input {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(226, 191, 118, 0.22);
  color: var(--ink);
}

.search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 154, 69, 0.10);
}

.search-box input::placeholder,
.newsletter-form input::placeholder {
  color: #776f67;
}

.filter-chip {
  border-color: rgba(226, 191, 118, 0.24);
  color: #c9c0b6;
}

.filter-chip.active,
.filter-chip:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: #15120d;
}

.value-card {
  border-color: rgba(226, 191, 118, 0.20);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(199, 154, 69, 0.045));
}

.value-card span,
.about-visual-badge {
  color: var(--gold2);
}

/* BANNER KOLEKSI/PREMIUM/PALING LARIS */
.page-hero.page-hero-banner {
  background-color: #080808;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.96) 0%,
      rgba(5, 5, 5, 0.84) 34%,
      rgba(5, 5, 5, 0.46) 62%,
      rgba(5, 5, 5, 0.12) 100%
    ),
    var(--hero-image);
  border-bottom: 1px solid rgba(226, 191, 118, 0.12);
}

/* SCROLLBAR */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0b0a09;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #0b0a09;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold2), var(--gold));
  border: 2px solid #0b0a09;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .header.scrolled .logo-shell,
  .inner-page .logo-shell {
    width: 174px;
    height: 56px;
    padding: 4px 12px;
  }

  .header.scrolled .logo-shell img,
  .inner-page .logo-shell img {
    max-height: 46px;
  }

  .section {
    background: var(--paper);
  }

  .finder-option {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(199, 154, 69, 0.055));
  }

  .page-hero.page-hero-banner {
    background-image:
      linear-gradient(
        180deg,
        rgba(5, 5, 5, 0.52) 0%,
        rgba(5, 5, 5, 0.78) 42%,
        rgba(5, 5, 5, 0.95) 100%
      ),
      var(--hero-image);
  }
}
/* =====================================================
   PRODUCT SECTION WHITE + CLEAN TRANSPARENT LOGO
   Tempelkan di PALING BAWAH CSS Midnight Gold.
   Bagian lain tetap hitam + champagne gold.
   ===================================================== */

/* Hanya section produk di homepage yang dibuat putih. */
body:not(.inner-page) .section.soft {
  background: #ffffff;
  color: #15120f;
  border-top: 1px solid rgba(21, 18, 15, 0.08);
  border-bottom: 1px solid rgba(21, 18, 15, 0.08);
}

body:not(.inner-page) .section.soft .section-head h2,
body:not(.inner-page) .section.soft .product-info h3,
body:not(.inner-page) .section.soft .product-bottom strong {
  color: #15120f;
}

body:not(.inner-page) .section.soft .section-head .eyebrow {
  color: #9b702b;
}

body:not(.inner-page) .section.soft .section-head p,
body:not(.inner-page) .section.soft .product-notes {
  color: #706860;
}

body:not(.inner-page) .section.soft .product-visual {
  background: #ffffff;
  border: 1px solid rgba(21, 18, 15, 0.10);
  box-shadow: 0 18px 45px rgba(21, 18, 15, 0.08);
}

body:not(.inner-page) .section.soft .product-badge {
  background: rgba(255, 255, 255, 0.94);
  color: #15120f;
  border-color: rgba(184, 138, 59, 0.30);
}

body:not(.inner-page) .section.soft .quick-label {
  background: #15120f;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

body:not(.inner-page) .section.soft .round-add {
  background: #ffffff;
  border-color: rgba(184, 138, 59, 0.42);
  color: #9b702b;
}

body:not(.inner-page) .section.soft .round-add:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: var(--gold);
  color: #15120f;
  box-shadow: 0 10px 28px rgba(184, 138, 59, 0.20);
}

/* Logo kembali clean tanpa background kapsul. */
.logo-shell,
.header.scrolled .logo-shell,
.inner-page .logo-shell {
  width: 250px;
  height: 78px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.logo-shell img,
.header.scrolled .logo-shell img,
.inner-page .logo-shell img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.28));
}

.mobile-menu .menu-logo,
.footer-logo {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .logo-shell,
  .header.scrolled .logo-shell,
  .inner-page .logo-shell {
    width: 190px;
    height: 62px;
    padding: 0;
  }

  .logo-shell img,
  .header.scrolled .logo-shell img,
  .inner-page .logo-shell img {
    max-height: 60px;
  }

  body:not(.inner-page) .section.soft .product-visual {
    box-shadow: 0 12px 28px rgba(21, 18, 15, 0.07);
  }
}

@media (max-width: 390px) {
  .logo-shell,
  .header.scrolled .logo-shell,
  .inner-page .logo-shell {
    width: 160px;
  }
}
/* =====================================================
   PRODUCT DETAIL MODAL WHITE + GOLD
   Khusus untuk bagian detail produk / quick view.
   Section lain tetap ikut tema hitam + gold.
   ===================================================== */

.quick-card {
  background: #f8f4ee !important;
  color: #17130f !important;
  border: 1px solid rgba(184, 138, 59, 0.20) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22) !important;
}

.quick-copy {
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 181, 109, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f6f0e6 100%) !important;
  color: #17130f !important;
}

.quick-copy .eyebrow,
.quick-notes,
.variant-title,
.cart-variant {
  color: #a5772f !important;
}

.quick-copy h2,
.quick-price {
  color: #17130f !important;
}

.quick-copy p {
  color: #5f564d !important;
}

.modal-close {
  background: rgba(255, 252, 247, 0.96) !important;
  color: #17130f !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14) !important;
}

.variant-chip {
  background: rgba(255, 255, 255, 0.82) !important;
  color: #17130f !important;
  border: 1px solid rgba(184, 138, 59, 0.34) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.variant-chip small {
  color: #7b7066 !important;
}

.variant-chip:hover,
.variant-chip.active {
  background: linear-gradient(135deg, #e4c57c, #c99a43) !important;
  color: #17130f !important;
  border-color: #c99a43 !important;
  box-shadow: 0 10px 24px rgba(201, 154, 67, 0.24) !important;
}

.variant-chip:hover small,
.variant-chip.active small {
  color: rgba(23, 19, 15, 0.72) !important;
}

.quick-selection {
  background: linear-gradient(180deg, rgba(215, 181, 109, 0.14), rgba(184, 138, 59, 0.16)) !important;
  border: 1px solid rgba(184, 138, 59, 0.26) !important;
  color: #8c6427 !important;
}

.quick-card .btn.gold,
.quick-copy .btn.gold,
.quick-copy .btn.full {
  box-shadow: 0 12px 26px rgba(199, 154, 69, 0.20);
}

@media (max-width: 760px) {
  .quick-copy {
    background:
      radial-gradient(circle at 100% 0%, rgba(215, 181, 109, 0.14), transparent 30%),
      linear-gradient(180deg, #fffdf9 0%, #f7f2e9 100%) !important;
  }
}/* =====================================================
   FINAL FIX — HALAMAN KATEGORI PRODUK PUTIH
   Berlaku untuk halaman Pria, Wanita, Unisex, Premium, dll.
   Hero, newsletter, dan footer tetap hitam + gold.
   Tempel PALING BAWAH CSS.
   ===================================================== */

/* Hilangkan celah/warna gelap yang muncul di luar section katalog. */
body.inner-page {
  background: #ffffff !important;
}

body.inner-page .page-hero.page-hero-banner,
body.inner-page .breadcrumb,
body.inner-page > .section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

/* Breadcrumb ikut terang supaya transisi hero ke katalog rapi. */
body.inner-page .breadcrumb {
  position: relative;
  z-index: 3;
  background: #ffffff !important;
  color: #625a52 !important;
  border-top: 0 !important;
  border-bottom: 1px solid rgba(21, 18, 15, 0.10) !important;
}

body.inner-page .breadcrumb a {
  color: #9b702b !important;
}

/* Area daftar produk putih penuh dan cukup tinggi agar section gelap bawah tidak mengintip. */
body.inner-page > .section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  background: #ffffff !important;
  color: #17130f !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body.inner-page > .section::before,
body.inner-page > .section::after {
  content: none !important;
  display: none !important;
}

body.inner-page > .section > .container {
  position: relative;
  z-index: 1;
}

/* Kotak pencarian. */
body.inner-page .catalog-tools {
  color: #17130f !important;
}

body.inner-page .search-box input {
  background: #ffffff !important;
  color: #17130f !important;
  border: 1px solid rgba(184, 138, 59, 0.36) !important;
  box-shadow: 0 10px 28px rgba(21, 18, 15, 0.05) !important;
}

body.inner-page .search-box input::placeholder {
  color: #847b72 !important;
}

body.inner-page .search-box svg {
  color: #8f6728 !important;
  stroke: currentColor;
}

body.inner-page .search-result {
  color: #71685f !important;
}

/* Informasi produk dibuat gelap agar terbaca jelas di background putih. */
body.inner-page .product-info h3,
body.inner-page .product-bottom strong {
  color: #17130f !important;
}

body.inner-page .product-notes {
  color: #766c62 !important;
}

/* Gambar produk tetap bersih, tanpa shadow bocor di tepi section. */
body.inner-page .product-visual {
  background: #ffffff !important;
  border: 1px solid rgba(21, 18, 15, 0.09) !important;
  box-shadow: 0 14px 34px rgba(21, 18, 15, 0.07) !important;
  overflow: hidden !important;
}

body.inner-page .product-badge {
     display: none !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #17130f !important;
  border-color: rgba(184, 138, 59, 0.30) !important;
}

body.inner-page .quick-label {
  background: #17130f !important;
  color: #ffffff !important;
}

body.inner-page .round-add {
  background: #ffffff !important;
  color: #9b702b !important;
  border-color: rgba(184, 138, 59, 0.46) !important;
}

body.inner-page .round-add:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #17130f !important;
  border-color: var(--gold) !important;
}

/* Filter chip pada halaman koleksi utama. */
body.inner-page .filter-chip {
  background: #ffffff !important;
  color: #5f574f !important;
  border-color: rgba(184, 138, 59, 0.32) !important;
}

body.inner-page .filter-chip.active,
body.inner-page .filter-chip:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color: #17130f !important;
  border-color: var(--gold) !important;
}

/* Pastikan banner tidak menghasilkan garis/shadow tambahan. */
body.inner-page .page-hero.page-hero-banner {
  overflow: hidden !important;
  border-bottom: 0 !important;
}

body.inner-page .page-hero.page-hero-banner::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 760px) {
  body.inner-page > .section {
    min-height: 100svh;
  }

  body.inner-page .product-visual {
    box-shadow: 0 10px 24px rgba(21, 18, 15, 0.06) !important;
  }
}