:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --bg-3: #1b1b1b;
  --text: #f5f2ec;
  --text-muted: #a8a29a;
  --gold: #c9a24b;
  --gold-light: #e0bd6a;
  --border: rgba(255, 255, 255, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background tetap (fixed) di seluruh halaman — konten scroll di atasnya.
   Ganti URL di bawah untuk mengganti foto background. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.62) 0%, rgba(13, 13, 13, 0.55) 40%, rgba(13, 13, 13, 0.86) 100%),
    url('../img/bg-suit-2.jpg')
      center/cover no-repeat fixed;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(11, 11, 11, 0.35);
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.brand-accent {
  color: var(--gold);
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.btn:hover::after {
  left: 160%;
}

.btn--gold {
  background: var(--gold);
  color: #111;
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--gold);
  padding: 11px 28px;
}

.btn--outline:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 17px 46px;
  font-size: 1rem;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  background: rgba(13, 13, 13, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.navbar__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar__link:hover {
  color: var(--gold);
}

.navbar__link:hover::after,
.navbar__link.is-active::after {
  transform: scaleX(1);
}

.navbar__link.is-active {
  color: var(--gold);
}

.navbar__booking {
  padding: 11px 26px;
}

.navbar__pick {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.navbar__pick:hover,
.navbar__pick.has-items {
  color: var(--gold);
}

.navbar__pick-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bg-1);
  background: var(--gold);
  border-radius: 999px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.lang-toggle {
  flex-shrink: 0;
  min-width: 40px;
  height: 34px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lang-toggle:hover {
  color: var(--gold);
  border-color: rgba(201, 162, 75, 0.5);
}

@media (max-width: 360px) {
  .lang-toggle {
    min-width: 30px;
    height: 28px;
    padding: 0 6px;
    font-size: 0.68rem;
  }
}

.navbar__pick-icon {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.navbar__pick-icon:hover,
.navbar__pick-icon.has-items {
  color: var(--gold);
}

.navbar__pick-icon .navbar__pick-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  font-size: 0.68rem;
}

.navbar__toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* BANNER PROMO (foto promo di kanan hero beranda) */
.hero__promo {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}

.promo__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  min-height: 300px;
  aspect-ratio: 3 / 4;
}

.promo__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.promo__track.is-dragging {
  transition: none;
}

.promo__slide {
  position: relative;
  flex: 0 0 100%;
  display: block;
  min-height: 100%;
  color: var(--text);
  text-decoration: none;
  background: var(--bg-2) center/cover no-repeat;
}

.promo__slide:hover .promo__cta {
  border-color: var(--gold);
  color: var(--text);
}

.promo__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.12) 0%, rgba(13, 13, 13, 0.12) 40%, rgba(13, 13, 13, 0.92) 100%);
}

.promo__text {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promo__badge {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  border: 1px solid var(--gold);
  background: rgba(13, 13, 13, 0.55);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo__title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 6px;
}

.promo__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.promo__cta {
  position: absolute;
  right: 20px;
  bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.promo__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 13, 0.72);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.promo__arrow:hover {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(13, 13, 13, 0.92);
}

.promo__arrow--prev { left: 12px; }
.promo__arrow--next { right: 12px; }

.promo__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.promo__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.promo__dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

/* DETAIL PRODUK — latar bersih tanpa foto suit (mengganggu detail);
   cahaya emas lembut membentuk suasana. */
body.page-detail {
  background: #0a0a0a;
}

body.page-detail::before {
  background:
    radial-gradient(ellipse at 82% -8%, rgba(201, 162, 75, 0.13), transparent 55%),
    radial-gradient(ellipse at 8% 32%, rgba(201, 162, 75, 0.05), transparent 42%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.95) 100%);
}

body.page-detail::after {
  background: transparent;
}

.detail-hero {
  padding: 150px 0 48px;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
}

.detail-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.detail-hero__title::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}

.detail-page {
  padding-bottom: 90px;
}

.detail__back-wrap {
  margin-bottom: 28px;
}

.detail__back-link {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.detail__back-link:hover {
  color: var(--gold);
}

.detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.detail__gallery {
  min-width: 0;
}

.detail__photo-wrap {
  border: 1px solid rgba(201, 162, 75, 0.25);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.detail__photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.detail__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.detail__stores {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.detail__store {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.detail__store img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail__store figcaption {
  padding: 8px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.detail__info {
  min-width: 0;
}

.detail__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 6px 0 14px;
}

.detail__price {
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.detail__desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 560px;
}

.detail__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.detail__avail,
.detail__paket {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 2px solid rgba(201, 162, 75, 0.55);
  background: var(--bg-2);
  margin-bottom: 16px;
}

.detail__avail-text {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
}

.detail__paket-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail__paket-chip {
  padding: 5px 14px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.detail__paket-chip:hover {
  background: var(--gold);
  color: var(--bg);
}

.detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.detail__notfound {
  text-align: center;
  padding: 30px 0 60px;
}

.detail__hint {
  color: var(--text-muted);
}

/* POP UP PILIH STORE */
.store-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 8, 0.78);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.store-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.store-modal__box {
  position: relative;
  width: min(460px, calc(100vw - 40px));
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px 36px 36px;
  text-align: center;
}

.store-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: 0;
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.store-modal__close:hover {
  color: var(--gold);
}

.store-modal__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.store-modal__desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.store-modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--gold);
  color: var(--text);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.store-btn:hover {
  background: rgba(201, 162, 75, 0.12);
}

.store-btn__name {
  font-weight: 500;
  letter-spacing: 0.04em;
}

.store-btn__arrow {
  color: var(--gold);
}

/* POP UP "PILIHAN SAYA" (daftar busana terpilih) */
.pick-modal__box {
  width: min(560px, calc(100vw - 40px));
  text-align: left;
}

.pick-list {
  display: flex;
  flex-direction: column;
  max-height: 52vh;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.pick-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.pick-item__img {
  width: 56px;
  height: 76px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.pick-item__body {
  flex: 1;
  min-width: 0;
}

.pick-item__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pick-item__cat {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.pick-item__price {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
}

.pick-item__remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.pick-item__remove:hover {
  color: #e04848;
  border-color: #e04848;
}

.pick-empty {
  display: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.pick-empty.is-visible {
  display: block;
}

.pick-total {
  display: none;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  text-align: right;
}

.pick-total.is-visible {
  display: block;
}

.pick-wa {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.pick-wa.is-hidden {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}

.hero__content {
  padding: 0;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
}

/* SECTIONS */
.section {
  padding: 110px 0;
}

.section--alt {
  background: var(--bg-2);
}

.section--solid {
  background: var(--bg-2);
}

.section--overlay {
  background: rgba(14, 14, 14, 0.62);
}

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* KOLEKSI — panel solid agar produk tampil bersih di atas background */
.koleksi {
  background: var(--bg-2);
}

.koleksi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* KATALOG */
.catalog-hero {
  padding: 160px 0 60px;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
}

.catalog-hero__inner {
  max-width: 720px;
}

.catalog-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 22px;
}

.catalog-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 520px;
}

.catalog {
  padding: 30px 0 120px;
  background: var(--bg-2);
}

.catalog__grid {
  gap: 32px;
}

/* KATALOG — tampilan/studi gallery berbeda dari halaman awal
   (tanpa foto suit; latar gelap bersih + cahaya emas lembut). */
body.page-catalog {
  background: #0a0a0a;
}

body.page-catalog::before {
  background:
    radial-gradient(ellipse at 78% -6%, rgba(201, 162, 75, 0.10), transparent 55%),
    radial-gradient(ellipse at 12% 102%, rgba(201, 162, 75, 0.06), transparent 48%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.92) 100%);
}

/* Toolbar pencarian & filter */
.catalog__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.catalog__search {
  position: relative;
  flex: 1 1 280px;
  max-width: 400px;
}

.catalog__search input {
  width: 100%;
  padding: 13px 18px 13px 44px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: 2px;
  transition: border-color 0.25s ease;
}

.catalog__search input::placeholder {
  color: var(--text-muted);
}

.catalog__search input:focus {
  outline: none;
  border-color: var(--gold);
}

.catalog__search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.9rem;
  pointer-events: none;
}

.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.filter-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  font-weight: 600;
}

.catalog__count {
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.catalog__empty {
  display: none;
  text-align: center;
  padding: 70px 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.catalog__empty.is-visible {
  display: block;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 162, 75, 0.4);
}

.card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-2);
  border: 0;
  padding: 0;
  display: block;
  cursor: zoom-in;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card__img img {
  transform: scale(1.08);
}

.card__media {
  position: relative;
}

.card__pick-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gold);
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.card__pick-btn:hover,
.card__pick-btn.is-picked {
  color: var(--bg-1);
  background: var(--gold);
  border-color: var(--gold);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 24px 28px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.6em;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__price {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.card__cat {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.card__store {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* KEUNGGULAN */
.keunggulan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.keunggulan__item {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  transition: transform 0.3s ease;
}

.keunggulan__item:hover {
  transform: translateY(-6px);
}

.keunggulan__icon {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.keunggulan__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.keunggulan__desc {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* CTA — panel solid untuk penekanan */
.cta {
  padding: 120px 0;
  text-align: center;
  background: var(--bg);
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 18px;
}

.cta__desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto 42px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 50px;
  background: var(--bg);
}

.footer__inner {
  text-align: center;
}

.footer__name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer__tagline {
  color: var(--text-muted);
  margin-bottom: 34px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 34px;
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--gold);
}

.footer__address {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer__note {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  margin-top: 30px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger untuk elemen dalam grid */
.koleksi__grid .card:nth-child(2),
.keunggulan__grid .keunggulan__item:nth-child(2) {
  transition-delay: 0.12s;
}

.koleksi__grid .card:nth-child(3),
.keunggulan__grid .keunggulan__item:nth-child(3) {
  transition-delay: 0.24s;
}

.koleksi__grid .card:nth-child(4) {
  transition-delay: 0.36s;
}

/* HORMATI prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 75, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: #111;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 12px;
  transition: color 0.2s ease;
}

.lightbox__close:hover {
  color: var(--gold);
}

/* ============================================
   HALAMAN PAKET (paket.html)
   ============================================ */
body.page-paket {
  background: #0b0b0b;
}

body.page-paket::before {
  background:
    radial-gradient(ellipse at 50% -10%, rgba(201, 162, 75, 0.10), transparent 60%),
    radial-gradient(ellipse at 10% 108%, rgba(201, 162, 75, 0.06), transparent 46%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.94) 100%);
}

.paket-hero {
  padding: 170px 0 60px;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
}

.paket-hero__inner {
  max-width: 780px;
}

.paket-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
}

.paket-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 540px;
}

.paket {
  padding: 40px 0 130px;
  background: var(--bg-2);
}

.paket__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.paket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 40px 30px 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.paket-card__pamflet {
  margin: -40px -30px 30px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg-2);
}

.paket-card__pamflet-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  border-color: rgba(201, 162, 75, 0.4);
}

.paket-card:hover::before {
  transform: scaleX(1);
}

.paket-card__top {
  text-align: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}

.paket-card__name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.paket-card__price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 1rem;
  opacity: 0.7;
}

.paket-card__price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

.paket-card__items {
  list-style: none;
  display: grid;
  gap: 12px;
  flex: 1;
  margin-bottom: 30px;
}

.paket-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.paket-card__check {
  color: var(--gold);
  font-size: 0.9rem;
}

.paket-card__btn {
  width: 100%;
  text-align: center;
}

/* ============================================
   HALAMAN PESAN PAKET (paket_order.html)
   ============================================ */
body.page-order {
  background: #0b0b0b;
}

body.page-order::before {
  background:
    radial-gradient(ellipse at 80% -8%, rgba(201, 162, 75, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.42) 0%, rgba(11, 11, 11, 0.94) 100%);
}

.order-hero {
  padding: 170px 0 40px;
}

.order-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 14px;
}

.order-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
}

.order-hero__price {
  color: var(--gold);
  font-weight: 600;
}

.order {
  padding: 40px 0 120px;
  background: var(--bg-2);
}

.order__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}

.order__subtitle {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.order__products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.order-item {
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.order-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 75, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.order-item.is-selected {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.order-item__img {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.order-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.order-item:hover .order-item__img img {
  transform: scale(1.05);
}

.order-item__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.order-item__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-item__cat {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.order-item__price {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.order-item__select {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.order-item__select.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

/* "No Add On": kartu khusus di halaman paket */
.order-item--noaddon .order-item__title {
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.order-item__img {
  position: relative;
}

.order-item__blank {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.order-item__blank::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

/* Notifikasi wajib pilih */
.order-alert {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(201, 162, 75, 0.08);
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-size: 0.88rem;
  line-height: 1.55;
}

.order-alert.is-visible {
  display: block;
}

/* Progress langkah pemilihan (paket_order) */
.order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding: 0;
  list-style: none;
}

.order-step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.order-step:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.order-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 0.75rem;
}

.order-step.is-current {
  border-color: var(--gold);
  color: var(--text);
}

.order-step.is-done {
  cursor: pointer;
  border-color: rgba(201, 162, 75, 0.55);
  color: var(--text);
}

.order-step.is-done .order-step__num {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  font-weight: 700;
}

.order-step.is-done:hover {
  border-color: var(--gold);
}

.order-step-title__name {
  color: var(--gold);
}

.order-nav {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.order-nav__btn {
  min-width: 160px;
  text-align: center;
}

.order-nav__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* Toggle Rompi/Sepatu pada langkah terakhir */
.rs-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.rs-toggle__btn {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rs-toggle__btn:hover {
  color: var(--gold);
}

.rs-toggle__btn.is-active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.1);
}

@media (max-width: 360px) {
  .rs-toggle__btn {
    padding: 7px 14px;
    font-size: 0.84rem;
  }
}

/* Sembunyikan wizard saat review selesai */
.hidden { display: none !important; }

.order__main.is-complete #orderStepKicker,
.order__main.is-complete .order__subtitle,
.order__main.is-complete #orderRSToggle,
.order__main.is-complete .order__products,
.order__main.is-complete .catalog__empty {
  display: none;
}

.order__main.is-complete .order-nav {
  pointer-events: none;
  opacity: 0.45;
}

.order__main.is-complete #orderReview {
  display: block;
}

/* Review foto produk terpilih */
.order-review {
  padding-top: 8px;
}

.order-review__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.order-review__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.order-review__item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.order-review__img {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.order-review__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-review__blank {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--bg-2);
}

.order-review__body {
  padding: 14px 16px 18px;
}

.order-review__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-review__cat {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.order-review__price {
  color: var(--gold);
  font-weight: 600;
}

.order-review__price--muted {
  color: var(--text-muted);
}

/* Total di review */
.order-review__total {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 24px 28px;
}

.order-review__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.order-review__total-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.order-review__total-old {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: line-through;
}

.order-review__total-row--paket {
  margin-bottom: 0;
}

.order-review__total-price {
  color: var(--gold);
  font-size: 1.35rem;
}

.order-review__total-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 12px;
}

/* Sidebar ringkasan */
.order-summary {
  position: sticky;
  top: 100px;
}

.order-summary__inner {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 30px 26px;
}

.order-summary__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.order-summary__paket {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.order-summary__paket strong {
  color: var(--text);
}

.order-summary__paket span {
  color: var(--gold);
  font-weight: 600;
}

.order-summary__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  min-height: 60px;
}

.order-summary__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.95rem;
}

.summary-check {
  color: var(--gold);
}

.summary-empty {
  color: var(--text-muted);
  font-style: italic;
}

.summary-name {
  flex: 1;
}

.summary-price {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.order-summary__list.is-complete {
  border: 1px solid var(--border);
  background: rgba(196, 160, 64, 0.06);
  border-radius: 6px;
  padding: 12px;
}

.order-summary__totals {
  display: none;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  border-top: 1px dashed var(--border);
  padding-top: 14px;
  margin-bottom: 22px;
}

.order-summary__totals.is-visible {
  display: grid;
}

.order-summary__total-row {
  display: contents;
}

.order-summary__total-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.order-summary__total-old {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: line-through;
}

.order-summary__total-price {
  color: var(--gold);
  font-size: 1.05rem;
}

.order-summary__total-note {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.order-summary__wa {
  width: 100%;
  text-align: center;
}

.order-summary__hint {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* Sticky WA bawah (mobile) */
.order-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: rgba(13, 13, 13, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}

.order-sticky__wa {
  width: 100%;
  text-align: center;
}

/* ============================================
   HALAMAN TENTANG (tentang.html)
   ============================================ */
body.page-tentang {
  background: #0b0b0b;
}

body.page-tentang::before {
  background:
    radial-gradient(ellipse at 70% -10%, rgba(201, 162, 75, 0.09), transparent 55%),
    radial-gradient(ellipse at 90% 108%, rgba(201, 162, 75, 0.05), transparent 46%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.42) 0%, rgba(11, 11, 11, 0.94) 100%);
}

.tentang-hero {
  padding: 170px 0 60px;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
}

.tentang-hero__inner {
  max-width: 760px;
}

.tentang-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
}

.tentang-hero__subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 520px;
}

.tentang__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.tentang__text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.85;
}

.tentang__text .section__title {
  margin-bottom: 22px;
}

.tentang__stats {
  display: flex;
  gap: 48px;
  margin-top: 36px;
}

.tentang__stat-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.tentang__stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.tentang__side {
  display: grid;
  gap: 16px;
}

.tentang__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 22px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.tentang__card:hover {
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-3px);
}

.tentang__card-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.tentang__card-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.5;
}

/* Nilai kami */
.nilai__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.nilai__item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(20, 20, 20, 0.72);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nilai__item:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 75, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.nilai__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.nilai__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.nilai__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Our Story (isi about.txt) */
.story__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}

.story__list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.story__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 28px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.story__item:hover {
  border-color: rgba(201, 162, 75, 0.5);
  transform: translateX(6px);
}

.story__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.story__item-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.story__text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.story__aside {
  display: grid;
  gap: 28px;
}

.story__quote {
  background: linear-gradient(160deg, rgba(201, 162, 75, 0.12), rgba(201, 162, 75, 0.03));
  border: 1px solid rgba(201, 162, 75, 0.35);
  padding: 34px 30px;
}

.story__quote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.55;
  font-style: italic;
  color: #f3ead3;
}

.story__quote-by {
  margin-top: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.story__stats .tentang__stat {
  border: 1px solid var(--border);
  background: var(--bg-3);
  padding: 22px 16px;
  text-align: center;
}

/* Our Collection */
.koleksi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.koleksi__card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 34px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.koleksi__card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 75, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
}

.koleksi__card--accessories {
  background: linear-gradient(160deg, rgba(201, 162, 75, 0.07), rgba(20, 20, 20, 0.72));
}

.koleksi__num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(201, 162, 75, 0.55);
  display: block;
  margin-bottom: 20px;
}

.koleksi__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.koleksi__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.koleksi__pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.koleksi__pill {
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  text-transform: uppercase;
}

/* Size Available */
.ukuran__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.ukuran__pill {
  min-width: 78px;
  text-align: center;
  padding: 18px 22px;
  border: 1px solid var(--border);
  background: rgba(20, 20, 20, 0.72);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.ukuran__pill:hover {
  color: var(--gold);
  border-color: rgba(201, 162, 75, 0.5);
  background: rgba(201, 162, 75, 0.08);
}

/* Syarat & Ketentuan (isi S&K.txt) */
.sk__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sk__grid .nilai__item {
  text-align: left;
}

@media (max-width: 960px) {
  .story__grid { grid-template-columns: 1fr; gap: 36px; }
  .koleksi__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sk__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .story__item { grid-template-columns: 1fr; gap: 12px; }
  .koleksi__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ukuran__pill { min-width: 60px; padding: 14px 16px; }
  .sk__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Lokasi */
.lokasi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.lokasi__card {
  border: 1px solid var(--border);
  background: var(--bg-2);
}

.lokasi__map {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.lokasi__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}

.lokasi__body {
  padding: 22px 24px 24px;
}

.lokasi__nama {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.lokasi__alamat {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.lokasi__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Galeri */
.galeri__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.galeri__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: none;
  border: 1px solid var(--border);
  padding: 0;
  display: block;
  cursor: zoom-in;
}

.galeri__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.galeri__item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.link-gold {
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.link-gold:hover {
  border-color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .koleksi__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .keunggulan__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .paket__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nilai__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeri__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order__grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .order-sticky {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__brand {
    font-size: 1.05rem;
    gap: 8px;
    letter-spacing: 0.02em;
  }

  .navbar__logo {
    height: 30px;
  }

  .navbar__pick-icon {
    width: 38px;
    height: 38px;
  }

  .navbar__inner {
    gap: 10px;
  }

  .navbar__toggle {
    padding: 4px;
  }

  .navbar__pick-icon {
    display: inline-flex;
    margin-right: 0;
    margin-left: auto;
  }

  #pickToggle {
    display: none;
  }

  .navbar__menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 8px;
    background: rgba(13, 13, 13, 0.98);
    padding: 24px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .navbar__menu.is-open {
    transform: translateY(0);
  }

  .navbar__link {
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .hero__content {
    padding: 60px 0;
    text-align: left;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: clamp(1.45rem, 5vw, 2rem);
  }

  .section__head {
    margin-bottom: 44px;
  }

  .section__subtitle {
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 6.5vw, 2.6rem);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    margin-bottom: 28px;
  }

  .card__img {
    aspect-ratio: 2 / 3;
  }
}

@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lokasi__grid {
    grid-template-columns: 1fr;
  }

  .hero__promo {
    max-width: 100%;
    margin-left: 0;
  }

  .promo__text {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-hero {
    padding-top: 120px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 84px;
  }

  .section {
    padding: 56px 0;
  }

  .section__head {
    margin-bottom: 36px;
  }

  .hero__content {
    padding: 40px 0;
  }

  .nilai__item {
    padding: 28px 20px;
  }

  .nilai__icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .nilai__title {
    font-size: 1.18rem;
  }

  .keunggulan__title {
    font-size: 1.2rem;
  }

  .koleksi__card {
    padding: 26px 20px;
  }

  .koleksi__title {
    font-size: 1.2rem;
  }

  .story__quote {
    padding: 26px 20px;
  }

  .story__quote p {
    font-size: 1.15rem;
  }

  .ukuran__pill {
    font-size: 1.05rem;
  }

  .tentang__stat-num {
    font-size: 2rem;
  }

  .promo__viewport {
    aspect-ratio: 4 / 5;
  }

  .promo__arrow {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .promo__arrow--prev { left: 6px; }
  .promo__arrow--next { right: 6px; }

  .promo__text {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .promo__title {
    font-size: 1.1rem;
  }

  .promo__sub {
    font-size: 0.82rem;
  }

  .promo__cta {
    right: 16px;
    bottom: 16px;
    padding: 6px 12px;
    font-size: 0.76rem;
  }

  .detail__stores {
    grid-template-columns: 1fr;
  }

  .detail__store img {
    height: auto;
  }

  .detail-hero {
    padding-top: 96px;
  }

  .koleksi__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .keunggulan__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .paket__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nilai__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .galeri__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-review__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-review__item {
    flex-direction: row;
  }

  .order-review__img {
    width: 130px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }

  .order-review__body {
    flex: 1;
    padding: 16px 18px;
  }

  .order-review__total-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .tentang__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tentang__stats {
    gap: 32px;
  }

  .koleksi__grid:has(> .card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .card__body {
    padding: 16px 14px 18px;
  }

  .card__title {
    font-size: 1.02rem;
    min-height: 2.5em;
  }

  .card__cat {
    font-size: 0.62rem;
    margin-bottom: 4px;
  }

  .card__price {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }

  .card__stores {
    gap: 4px;
    margin-bottom: 6px;
  }

  .card__store {
    padding: 2px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .card__desc {
    -webkit-line-clamp: 2;
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .card__body .btn {
    align-self: stretch;
    text-align: center;
    padding: 10px 0;
  }

  .paket-card {
    padding: 26px 18px 24px;
  }

  .paket-card__pamflet {
    margin: -26px -18px 24px;
  }

  .paket-card__top {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .paket-card__name {
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }

  .paket-card__price {
    font-size: 1.45rem;
  }

  .paket-card__price-old {
    font-size: 0.8rem;
  }

  .paket-card__items {
    gap: 8px;
    margin-bottom: 20px;
  }

  .paket-card__item {
    font-size: 0.78rem;
    gap: 6px;
  }

  .paket-card__check {
    font-size: 0.72rem;
  }

  .paket-card__btn {
    padding: 10px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .navbar {
    padding: 0 12px;
  }

  .navbar__inner {
    gap: 6px;
  }

  .navbar__brand {
    font-size: 1.08rem;
    gap: 8px;
    letter-spacing: 0.04em;
  }

  .navbar__logo {
    height: 34px;
  }

  .navbar__pick-icon {
    width: 32px;
    height: 32px;
  }

  .navbar__toggle span {
    width: 22px;
  }

  .paket-card {
    padding: 20px 14px 20px;
  }

  .paket-card__pamflet {
    margin: -20px -14px 20px;
  }

  .paket-card__name {
    font-size: 0.95rem;
  }

  .paket-card__price {
    font-size: 1.15rem;
  }

  .paket-card__item {
    font-size: 0.72rem;
  }
}
