/* DYNASTY4DTOTO — HTML/CSS */
:root {
  --dyn-black: #070605;
  --dyn-black-soft: #12100a;
  --dyn-black-card: #0e0c08;
  --dyn-gold: #d4af37;
  --dyn-gold-soft: #f0d78c;
  --dyn-gold-deep: #b8962e;
  --dyn-cream: #f6edd0;
  --dyn-muted: #9a8d6a;
  --dyn-white: #fff8e7;
  --dyn-max: 1080px;
  --dyn-amp: 420px;
  --dyn-radius: 10px;
  --dyn-shadow: 0 8px 28px rgb(0 0 0 / 0.45);
  --dyn-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dyn-header: 64px;
  --motion-quick: 150ms;
  --motion-fast: 250ms;
}

  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  body {
    margin: 0;
    background: var(--dyn-black);
    color: var(--dyn-cream);
    font-family: "Figtree", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: clip;
  }

  body.nav-open {
    overflow: hidden;
  }

  h1,
  h2,
  h3,
  h4 {
    text-wrap: balance;
    letter-spacing: -0.02em;
    font-weight: 700;
  }

  p {
    text-wrap: pretty;
  }

  button:not(:disabled),
  [role="button"]:not(:disabled) {
    cursor: pointer;
  }

  button,
  a,
  summary,
  input,
  select {
    touch-action: manipulation;
  }

  a {
    color: inherit;
  }

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

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  inset: 8px auto auto 8px;
  z-index: 80;
  padding: 8px 14px;
  background: var(--dyn-gold);
  color: var(--dyn-black);
  border-radius: 8px;
  font-weight: 700;
}

.site {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--dyn-black);
  color: var(--dyn-cream);
}

.wrap {
  width: 100%;
  max-width: var(--dyn-max);
  margin: 0 auto;
  padding: 0 16px;
}

.main {
  flex: 1;
  width: 100%;
  max-width: var(--dyn-max);
  margin: 0 auto;
  padding: 16px 12px 108px;
}

.main.is-flush {
  max-width: none;
  padding: 0;
}

.below {
  width: 100%;
  max-width: var(--dyn-max);
  margin: 0 auto;
  padding: 8px 12px 108px;
}

@media (min-width: 768px) {
  .main {
    padding: 28px 20px 56px;
  }

  .below {
    padding: 12px 20px 56px;
  }
}

/* ——— Header ——— */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
}

.topbar-bar {
  background: var(--dyn-black);
  border-bottom: 1px solid var(--dyn-gold);
}

.topbar-inner {
  max-width: var(--dyn-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  min-height: 52px;
  transition: min-height var(--motion-fast) var(--dyn-ease);
}

.topbar.is-compact .topbar-inner {
  min-height: 46px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--dyn-gold);
}

.logo img {
  width: 52px;
  height: 38px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: width var(--motion-fast) var(--dyn-ease), height var(--motion-fast) var(--dyn-ease);
}

.topbar.is-compact .logo img {
  width: 44px;
  height: 32px;
}

.logo-word {
  display: none;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.15;
}

.logo-word small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--dyn-gold-soft);
  font-weight: 700;
}

.search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.search-row {
  display: flex;
  align-items: center;
  background: var(--dyn-black-soft);
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 45%, transparent);
  border-radius: 8px;
  overflow: hidden;
  min-height: 40px;
  padding: 0 10px 0 0;
}

.search-row input {
  flex: 1;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  border: 0;
  outline: none;
  padding: 0 8px 0 14px;
  font: inherit;
  font-size: 16px;
  line-height: 40px;
  color: var(--dyn-cream);
  background: transparent;
  text-overflow: ellipsis;
}

.search-row input::placeholder {
  color: #c4b48a;
  line-height: 40px;
}

.search-row button,
.search-row .search-icon {
  width: 32px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--dyn-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  pointer-events: none;
  line-height: 0;
}

.search-row .search-icon svg,
.search-row button svg {
  display: block;
}

.search-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--dyn-black-soft);
  border: 1px solid var(--dyn-gold);
  border-radius: 8px;
  box-shadow: var(--dyn-shadow);
  overflow: hidden;
}

.search-drop a,
.search-drop p {
  display: block;
  padding: 12px;
  text-decoration: none;
  font-size: 14px;
  color: var(--dyn-cream);
}

.search-drop a.is-active,
.search-drop a:hover {
  background: color-mix(in oklab, var(--dyn-gold) 16%, transparent);
}

.search-drop small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--dyn-muted);
}

.auth-btns {
  display: none;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.auth-btns .who {
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: var(--dyn-gold-soft);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dyn-gold);
  background: transparent;
  color: var(--dyn-gold);
  transition: background var(--motion-quick) var(--dyn-ease), color var(--motion-quick) var(--dyn-ease),
    transform var(--motion-quick) var(--dyn-ease);
}

.chip:hover {
  background: var(--dyn-gold);
  color: var(--dyn-black);
}

.chip:active {
  transform: scale(0.96);
}

.chip-daftar {
  background: var(--dyn-gold);
  color: var(--dyn-black);
}

.chip-daftar:hover {
  filter: brightness(1.06);
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--dyn-gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  border: 0;
  padding: 0;
  background: rgb(0 0 0 / 0.55);
}

.drawer {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 36;
  display: grid;
  grid-template-rows: 0fr;
  background: var(--dyn-black-soft);
  border-bottom: 1px solid var(--dyn-gold);
  transition: grid-template-rows var(--motion-fast) var(--dyn-ease);
}

.drawer.is-open {
  grid-template-rows: 1fr;
}

.drawer-inner {
  overflow: hidden;
}

.drawer-pad {
  padding: 8px 16px 16px;
}

.drawer a,
.drawer button.linkish {
  display: block;
  padding: 12px 8px;
  color: var(--dyn-cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  min-height: 44px;
}

.drawer a:hover,
.drawer button.linkish:hover {
  color: var(--dyn-gold);
}

.drawer-cta {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.drawer-cta a,
.drawer-cta button {
  flex: 1;
}

.kw-nav {
  position: relative;
  background: var(--dyn-black);
  border-bottom: 1px solid color-mix(in oklab, var(--dyn-gold) 40%, transparent);
  overflow: hidden;
}

.kw-nav::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 36px;
  background: linear-gradient(90deg, transparent, var(--dyn-black));
  pointer-events: none;
}

.kw-nav-inner {
  max-width: var(--dyn-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.kw-nav-inner.is-dragging {
  cursor: grabbing;
}

.kw-nav-inner::-webkit-scrollbar {
  display: none;
}

.kw-link {
  flex-shrink: 0;
  color: var(--dyn-gold-soft);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.kw-link:hover {
  background: color-mix(in oklab, var(--dyn-gold) 14%, transparent);
  color: var(--dyn-gold);
}

.kw-new {
  display: inline-block;
  margin-left: 6px;
  background: var(--dyn-gold);
  color: var(--dyn-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 4px;
  vertical-align: middle;
}

@media (min-width: 640px) {
  .auth-btns {
    display: flex;
  }

  .menu-btn {
    display: none;
  }

  .logo-word {
    display: block;
  }

  .logo img {
    width: 64px;
    height: 46px;
  }

  .topbar-inner {
    min-height: var(--dyn-header);
  }

  .kw-nav::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .topbar-inner {
    padding: 6px 20px;
    gap: 16px;
  }

  .logo img {
    width: 76px;
    height: 54px;
  }

  .kw-nav-inner {
    padding: 8px 20px;
  }
}

/* ——— Product gallery (KAISAR-style, black/gold) ——— */
.product {
  display: grid;
  gap: 18px;
}

.product-copy {
  min-width: 0;
}

.gallery {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.gallery-thumbs {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: 52px;
  flex-shrink: 0;
}

.gallery-thumbs button {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 45%, transparent);
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.gallery-thumbs button.is-on {
  border-color: var(--dyn-gold);
  box-shadow: 0 0 0 1px var(--dyn-gold);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel {
  position: relative;
  flex: 1;
  min-width: 0;
  border: 1px solid var(--dyn-gold);
  border-radius: 4px;
  overflow: hidden;
  background: #000;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform var(--motion-fast) var(--dyn-ease);
}

.carousel-track.is-snap {
  transition: none;
}

.carousel-track img {
  width: 100%;
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: rgb(0 0 0 / 0.45);
  color: var(--dyn-gold-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.carousel-nav.prev {
  left: 8px;
}

.carousel-nav.next {
  right: 8px;
}

.carousel-nav:hover {
  background: rgb(0 0 0 / 0.7);
  color: var(--dyn-gold);
}

.reviews-heading {
  margin: 18px 0 8px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--dyn-gold);
  font-weight: 700;
}

.review-stack {
  display: grid;
  gap: 12px;
}

.hero-cta {
  margin-top: 20px;
}

.product-title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--dyn-gold);
}

.sold-by {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  font-size: 14px;
  color: var(--dyn-muted);
}

.sold-by img {
  width: 36px;
  height: 26px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}

.sold-by a {
  color: var(--dyn-gold);
  font-weight: 700;
  text-decoration: none;
}

.sold-by a:hover {
  text-decoration: underline;
}

.product-cta {
  margin: 0 0 16px;
}

.product-price {
  margin: 8px 0 18px;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dyn-gold);
}

.buy-box {
  margin-top: 22px;
}

.buy-block {
  margin-bottom: 18px;
}

.buy-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dyn-gold);
}

.buy-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.buy-label-row .buy-label {
  margin: 0;
}

.size-guide {
  font-size: 13px;
  font-weight: 700;
  color: var(--dyn-gold-soft);
  text-decoration: none;
}

.size-guide:hover {
  text-decoration: underline;
}

.style-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 30%, transparent);
  border-radius: 10px;
  background: var(--dyn-black-soft);
}

.style-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}

.style-row strong {
  display: block;
  color: var(--dyn-gold);
  font-size: 15px;
}

.style-row span {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  color: var(--dyn-muted);
}

.size-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.size-chip,
.finish-chip {
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--dyn-gold);
  background: transparent;
  color: var(--dyn-gold);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: background var(--motion-quick) var(--dyn-ease), color var(--motion-quick) var(--dyn-ease);
}

.size-chip.is-on,
.finish-chip.is-on {
  background: var(--dyn-gold);
  color: var(--dyn-black);
}

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

.finish-chip {
  padding-inline: 16px;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--dyn-gold);
  color: var(--dyn-black);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform var(--motion-quick) var(--dyn-ease), filter var(--motion-quick) var(--dyn-ease);
}

.btn-cart:hover {
  filter: brightness(1.06);
}

.btn-cart:active {
  transform: scale(0.96);
}

.btn-cart.is-added {
  background: #c9a227;
}

.buy-info {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
}

.ship-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--dyn-gold-soft);
}

.ship-line .dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--dyn-gold);
  flex-shrink: 0;
}

.ship-line .dot.gold {
  box-shadow: 0 0 0 3px rgb(212 175 55 / 0.25);
}

.ship-note {
  margin: 8px 0 0;
  font-size: 14px;
  color: #e8a0a0;
}

.ship-note a {
  color: #f0b4b4;
  font-weight: 700;
}

.returns-row {
  width: 100%;
  margin-top: 16px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  border-top: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
  color: var(--dyn-gold);
  text-align: left;
}

.returns-row span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.returns-row strong {
  font-size: 15px;
}

.returns-row small {
  font-size: 13px;
  color: var(--dyn-muted);
}

.cart-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--dyn-gold);
  flex-shrink: 0;
  text-decoration: none;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--dyn-gold);
  color: var(--dyn-black);
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  text-align: center;
}

.cart-layout {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.cart-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
  border-radius: 12px;
  background: var(--dyn-black-soft);
}

.cart-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-meta h2 {
  margin: 0;
  font-size: 14px;
  color: var(--dyn-gold);
  font-family: inherit;
}

.cart-meta p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--dyn-muted);
}

.cart-price {
  color: var(--dyn-gold-soft) !important;
  font-weight: 700;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--dyn-gold);
  background: transparent;
  color: var(--dyn-gold);
  display: grid;
  place-items: center;
}

.qty span {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.qty .trash {
  margin-left: auto;
}

.cart-sum {
  padding: 18px;
  border: 1px solid var(--dyn-gold);
  border-radius: 12px;
  background: var(--dyn-black-soft);
}

.cart-sum p {
  display: flex;
  justify-content: space-between;
  margin: 0 0 14px;
  font-size: 16px;
}

.cart-sum .more {
  display: block;
  margin-top: 12px;
  text-align: center;
}

.empty-cart {
  margin-top: 24px;
}

.empty-cart .btn-daftar {
  margin-top: 16px;
  max-width: 20rem;
}

@media (min-width: 800px) {
  .cart-layout {
    grid-template-columns: 1.4fr 0.7fr;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .product-title {
    font-size: 1.55rem;
  }
}

@media (min-width: 640px) {
  .gallery-thumbs {
    display: flex;
  }
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: start;
  }

  .gallery {
    position: sticky;
    top: 92px;
  }

  .reviews-heading {
    font-size: 18px;
  }
}

/* ——— CTAs ——— */
.cta-wrap {
  display: flex;
  gap: 10px;
  width: 100%;
}

.cta-wrap a {
  flex: 1;
  text-decoration: none;
}

.btn-login,
.btn-daftar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--dyn-gold);
  background: transparent;
  color: var(--dyn-gold);
  box-shadow: none;
  transition: background var(--motion-quick) var(--dyn-ease), color var(--motion-quick) var(--dyn-ease),
    transform var(--motion-quick) var(--dyn-ease);
}

.btn-login:hover,
.btn-daftar:hover {
  background: var(--dyn-gold);
  color: var(--dyn-black);
}

.btn-login:active,
.btn-daftar:active {
  transform: scale(0.96);
}

.btn-daftar {
  background: var(--dyn-gold);
  color: var(--dyn-black);
}

.btn-daftar:hover {
  filter: brightness(1.06);
  background: var(--dyn-gold-soft);
  color: var(--dyn-black);
}

.btn-login.sm,
.btn-daftar.sm {
  min-height: 44px;
  font-size: 13px;
  padding: 10px 14px;
}

/* ——— Article ——— */
.article-box {
  background: linear-gradient(180deg, #16120a 0%, #0c0a07 100%);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--dyn-gold);
  margin: 0;
  box-shadow: var(--dyn-shadow);
  color: var(--dyn-cream);
}

.article-box h3 {
  color: var(--dyn-gold);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 12px;
}

.article-box p {
  color: var(--dyn-cream);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.article-box p + p {
  margin-top: 10px;
}

.article-box a {
  color: var(--dyn-gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.article-box a:hover {
  color: var(--dyn-gold);
}

.kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dyn-gold);
}

.page-title {
  margin: 4px 0 0;
  font-size: 1.28rem;
  line-height: 1.3;
  color: var(--dyn-gold);
  font-weight: 700;
  font-family: "Cinzel", "Times New Roman", serif;
}

.lede {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--dyn-muted);
  line-height: 1.6;
}

.lede a {
  color: var(--dyn-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.byline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--dyn-muted);
}

.byline img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--dyn-gold);
}

.byline a {
  color: var(--dyn-gold);
  font-weight: 700;
  text-decoration: none;
}

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

.deposit-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}

.deposit-row strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--dyn-gold);
  letter-spacing: -0.03em;
}

.deposit-row span {
  font-size: 13px;
  color: var(--dyn-muted);
}

/* ——— Features ——— */
.block {
  margin-top: 32px;
}

.block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.block h2 {
  margin: 0;
  font-size: 18px;
  color: var(--dyn-gold);
  font-family: "Cinzel", "Times New Roman", serif;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dyn-gold-soft);
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--dyn-gold);
}

.feature-list {
  margin: 0;
  padding: 16px 18px 16px 32px;
  background: var(--dyn-black-soft);
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
}

.feature-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dyn-cream);
  padding: 6px 0;
}

.feature-list li::marker {
  color: var(--dyn-gold);
}

/* ——— Reviews ——— */
.review-grid {
  display: grid;
  gap: 12px;
}

.review-card {
  background: var(--dyn-black-soft);
  border-radius: 8px;
  padding: 14px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
  border-left: 3px solid var(--dyn-gold);
  color: var(--dyn-cream);
}

.review-card .stars {
  color: var(--dyn-gold);
  margin-bottom: 8px;
}

.review-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.review-card footer {
  margin-top: 8px;
  color: var(--dyn-gold-soft);
  font-size: 12px;
  font-weight: 600;
}

@media (min-width: 720px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-title {
    font-size: 1.7rem;
  }

  .block h2 {
    font-size: 22px;
  }
}

/* ——— FAQ ——— */
.faq-section {
  margin-top: 32px;
  padding: 18px 14px;
  background: linear-gradient(180deg, #16120a 0%, #0c0a07 100%);
  border-radius: 12px;
  border: 1px solid var(--dyn-gold);
}

.faq-title {
  margin: 0 0 16px;
  color: var(--dyn-gold);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  font-family: "Cinzel", "Times New Roman", serif;
}

.faq-item {
  background: rgb(0 0 0 / 0.45);
  border-radius: 10px;
  padding: 4px 14px;
  margin-bottom: 10px;
  border-left: 3px solid var(--dyn-gold);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  margin: 0;
  color: var(--dyn-gold);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 0;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question .plus {
  color: var(--dyn-gold);
  font-weight: 500;
  flex-shrink: 0;
  transition: transform var(--motion-quick) var(--dyn-ease);
}

.faq-item[open] .plus,
.faq-item.is-open .plus {
  transform: rotate(45deg);
}

.faq-answer {
  margin: 0 0 12px;
  color: var(--dyn-cream);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item:not(.is-open):not([open]) .faq-answer {
  display: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
}

/* ——— Posts ——— */
.post-grid {
  display: grid;
  gap: 14px;
}

.post-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dyn-black-soft);
  text-decoration: none;
  color: inherit;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card .pad {
  padding: 14px;
}

.post-card .meta {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dyn-gold);
}

.post-card h3 {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--dyn-gold-soft);
}

.post-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--dyn-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card:hover {
  border-color: var(--dyn-gold);
}

.post-card:hover h3 {
  color: var(--dyn-gold);
}

.more {
  font-size: 14px;
  font-weight: 700;
  color: var(--dyn-gold);
  text-decoration: none;
}

.more:hover {
  text-decoration: underline;
}

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

.tag {
  display: inline-block;
  background: transparent;
  color: var(--dyn-gold-soft);
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 40%, transparent);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  text-decoration: none;
}

.tag:hover {
  color: var(--dyn-black);
  background: var(--dyn-gold);
}

.partner-links {
  text-align: center;
  padding: 14px 4px 4px;
  font-size: 12px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.partner-links a {
  color: var(--dyn-muted);
  text-decoration: none;
}

.partner-links a:hover {
  color: var(--dyn-gold);
  text-decoration: underline;
}

.partner-links span {
  margin: 0 8px;
  color: color-mix(in oklab, var(--dyn-gold) 35%, transparent);
}

@media (min-width: 640px) {
  .post-grid.cols-2,
  .post-grid.cols-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .post-grid.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 8px;
  background: #050403;
  color: var(--dyn-cream);
}

.gold-rule {
  height: 1px;
  background: var(--dyn-gold);
}

.footer-grid {
  max-width: var(--dyn-max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  padding: 28px 16px;
}

.site-footer h2 {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dyn-gold);
}

.site-footer .brand {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dyn-gold);
  text-transform: uppercase;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  color: var(--dyn-muted);
  line-height: 1.6;
}

.site-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: var(--dyn-cream);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--dyn-gold);
}

.copy {
  border-top: 1px solid color-mix(in oklab, var(--dyn-gold) 22%, transparent);
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  text-align: center;
  font-size: 12px;
  color: var(--dyn-muted);
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    padding: 40px 20px;
  }
}

/* ——— Sticky mobile CTA ——— */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(7 6 5 / 0.94);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--dyn-gold);
  z-index: 50;
  backdrop-filter: blur(10px);
  transition: transform var(--motion-fast) var(--dyn-ease);
}

.sticky-bar.is-hidden {
  transform: translateY(110%);
}

.sticky-bar .cta-wrap {
  max-width: var(--dyn-max);
  margin: 0 auto;
}

.sticky-bar .btn-login,
.sticky-bar .btn-daftar {
  font-size: 15px;
  min-height: 46px;
}

@media (max-width: 767px) {
  .sticky-bar {
    display: block;
  }

  .site-footer {
    padding-bottom: 72px;
  }
}

/* ——— Inner pages ——— */
.form-card .btn-login,
.form-card .btn-daftar {
  width: 100%;
}

.stack-sm {
  margin-top: 16px;
}

.stack {
  margin-top: 24px;
}

.stack-lg {
  margin-top: 32px;
}

.rating-gap {
  margin-bottom: 16px;
}

.crumbs {
  font-size: 13px;
  color: var(--dyn-muted);
  overflow-wrap: anywhere;
}

.crumbs a {
  color: var(--dyn-muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--dyn-gold);
}

.frame {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--dyn-gold);
}

.frame img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.form-card {
  margin-top: 24px;
  background: var(--dyn-black-soft);
  border-radius: 16px;
  padding: 20px 16px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 35%, transparent);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dyn-gold);
}

.field input {
  margin-top: 6px;
  width: 100%;
  min-height: 46px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 40%, transparent);
  border-radius: 10px;
  background: #0a0906;
  padding: 0 12px;
  font: inherit;
  font-size: 16px;
  color: var(--dyn-cream);
  outline: none;
}

.field input:focus {
  border-color: var(--dyn-gold);
  box-shadow: 0 0 0 3px rgb(212 175 55 / 0.2);
}

.field-row {
  position: relative;
}

.field-row input {
  padding-right: 44px;
}

.field-row .eye {
  position: absolute;
  right: 6px;
  top: 30px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--dyn-gold);
  display: grid;
  place-items: center;
}

.alert {
  margin-bottom: 12px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--dyn-gold) 14%, transparent);
  color: var(--dyn-gold-soft);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.narrow {
  max-width: 28rem;
  margin: 0 auto;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  background: transparent;
  color: var(--dyn-gold);
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 40%, transparent);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
}

.empty {
  margin-top: 28px;
  color: var(--dyn-muted);
}

.notfound {
  max-width: 28rem;
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}

.notfound .btn-login {
  margin-top: 24px;
  display: inline-flex;
  width: auto;
  padding-inline: 24px;
}

.to-top {
  position: fixed;
  right: 12px;
  bottom: calc(78px + env(safe-area-inset-bottom));
  z-index: 45;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--dyn-gold);
  background: rgb(7 6 5 / 0.9);
  color: var(--dyn-gold);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--motion-fast) var(--dyn-ease), transform var(--motion-fast) var(--dyn-ease);
}

.to-top.is-on {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (min-width: 768px) {
  .to-top {
    bottom: 24px;
    right: 20px;
  }
}

/* ——— Mobile tighten ——— */
@media (max-width: 479px) {
  .btn-login,
  .btn-daftar {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .article-box {
    padding: 14px;
  }

  .faq-section {
    padding: 14px 12px;
  }

  .faq-title {
    font-size: 20px;
  }

  .form-card {
    padding: 16px 12px;
  }
}

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

  .btn-login,
  .btn-daftar,
  .faq-question .plus,
  .carousel-track,
  .drawer,
  .sticky-bar,
  .to-top,
  .logo img,
  .topbar-inner {
    transition: none;
  }
}

.zip-home {
  margin: 0 0 16px;
}

.zip-chip {
  flex-shrink: 0;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  cursor: pointer;
}

.zip-text-link {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 639px) {
  .zip-chip {
    display: none;
  }
}

.unduh-box {
  margin-top: 24px;
  max-width: 28rem;
}

.search-row input {
  appearance: none;
  -webkit-appearance: none;
}
.search-row input::-webkit-search-decoration,
.search-row input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.logo-word {
  display: none;
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .logo-word { display: block; }
}

.cart-link.is-off {
  pointer-events: none;
  cursor: default;
}
.returns-row.is-off {
  pointer-events: none;
  cursor: default;
}
.btn-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.review-card .stars {
  color: var(--dyn-gold);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  font-size: 15px;
}
.review-card .star-off {
  color: color-mix(in oklab, var(--dyn-gold) 35%, #3a3420);
}

.faq-item:not(.is-open):not([open]) .faq-answer { display: none; }
.faq-item.is-open .plus,
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
}

.catalog {
  margin: 28px 0 8px;
  padding: 20px 14px 24px;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 35%, transparent);
  border-radius: 14px;
  background: #0c0a07;
}
.catalog-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.catalog-head img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px var(--dyn-gold);
}
.catalog-head h2 {
  margin: 0 0 4px;
  color: var(--dyn-gold);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}
.catalog-head p {
  margin: 0;
  color: var(--dyn-muted);
  font-size: 14px;
}
.catalog-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.catalog-bar h3 {
  margin: 0;
  color: var(--dyn-gold);
  font-size: 16px;
  font-weight: 600;
}
.catalog-bar a {
  color: var(--dyn-gold-soft);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.catalog-rail-wrap { position: relative; }
.catalog-rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 36px 10px 2px;
  scrollbar-width: none;
}
.catalog-rail::-webkit-scrollbar { display: none; }
.catalog-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: default;
  pointer-events: none;
}
.catalog-thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--dyn-gold) 28%, transparent);
}
.catalog-thumb img {
  width: 168px;
  height: 168px;
  object-fit: cover;
}
.catalog-thumb i {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgb(0 0 0 / 0.35);
}
.catalog-name {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--dyn-cream);
}
.catalog-price {
  display: block;
  margin-top: 2px;
  color: var(--dyn-gold);
  font-weight: 700;
  font-size: 15px;
}
.catalog-next {
  position: absolute;
  right: 0;
  top: 72px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--dyn-gold);
  color: var(--dyn-black);
  font-size: 22px;
  line-height: 1;
  box-shadow: var(--dyn-shadow);
}
.catalog-search { margin-top: 28px; }
.catalog-search h3 {
  margin: 0;
  color: var(--dyn-gold);
  font-size: 20px;
}
.catalog-search > p {
  margin: 4px 0 12px;
  color: var(--dyn-gold);
}
.catalog-search-form .search-row {
  border-radius: 999px;
  min-height: 48px;
  padding-right: 14px;
}
.catalog-search-form .search-row input {
  height: 48px;
  min-height: 48px;
  line-height: 48px;
}
.catalog-search-form .search-row .search-icon {
  height: 48px;
}
.catalog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.catalog-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1a1408;
  color: var(--dyn-gold);
  border: 1px solid var(--dyn-gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.catalog-pills a:hover {
  background: var(--dyn-gold);
  color: var(--dyn-black);
}
@media (max-width: 639px) {
  .catalog-thumb img { width: 148px; height: 148px; }
  .catalog-card { flex-basis: 148px; }
  .catalog-head h2 { font-size: 16px; }
  .catalog-bar { flex-direction: column; gap: 4px; }
}
