:root {
  --primary: #d4af37;
  --primary-dark: #8b6508;
  --accent: #ffd700;
  --ink: #f8edc6;
  --muted: #c5b98f;
  --bg: #000000;
  --card: #0b0b0b;
  --line: rgba(212, 175, 55, 0.32);
  --danger: #ff746c;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.62);
  --gold-shadow: 0 16px 42px rgba(212, 175, 55, 0.2);
  --radius: 22px;
  --container: min(1180px, calc(100% - 32px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 999;
}
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #8b6508);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 10px 25px rgba(21, 115, 71, 0.24);
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.94rem;
}
.nav a:hover,
.nav a.active {
  background: #171309;
  color: var(--primary-dark);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 9px 12px;
}
.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff !important;
}
.cart-count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 99px;
  background: #fff;
  color: var(--primary);
  font-size: 0.78rem;
}
.hero {
  padding: 72px 0 54px;
  background:
    radial-gradient(circle at 85% 20%, #211a08 0, transparent 36%),
    linear-gradient(180deg, #080808 0, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 99px;
  color: var(--primary-dark);
  font-weight: 800;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin: 18px 0;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 670px;
}
.hero-actions,
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
}
.btn-secondary {
  background: #fff;
  border-color: var(--line);
}
.btn-accent {
  background: var(--accent);
  color: #2c1b00;
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.basket {
  min-height: 370px;
  border-radius: 24px;
  background: linear-gradient(145deg, #d4af37, #6f5008);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.basket:before,
.basket:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}
.basket:before {
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
}
.basket:after {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: -60px;
}
.basket-emoji {
  font-size: 8rem;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.25));
  z-index: 2;
}
.mini-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 4px 0;
}
.mini-offer strong {
  font-size: 1.1rem;
}
.mini-offer span {
  color: var(--muted);
  font-size: 0.9rem;
}
.section {
  padding: 72px 0;
}
.section-sm {
  padding: 48px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}
.section-head p,
.page-hero p {
  color: var(--muted);
  max-width: 680px;
}
.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.category-card,
.info-card,
.product-card,
.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.07);
}
.category-card {
  padding: 22px;
  transition: 0.2s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.category-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #151208;
  border-radius: 18px;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.category-card h3 {
  margin: 0 0 6px;
}
.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 170px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #11100b, #1a1508);
}
.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}
.product-card:hover .product-image {
  transform: scale(1.035);
}
.product-image.is-error {
  display: none;
}
.product-image-fallback {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  font-size: 4.8rem;
}
.product-image.is-error + .product-image-fallback,
.product-image-fallback.is-visible {
  display: grid;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #3a2200;
  border-radius: 99px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 900;
}
.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.product-body h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.35;
}
.product-meta {
  color: var(--muted);
  font-size: 0.86rem;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.price {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--primary-dark);
}
.old-price {
  text-decoration: line-through;
  color: #9aa8a2;
  font-size: 0.86rem;
}
.product-body .btn {
  margin-top: auto;
  width: 100%;
  padding: 11px 14px;
}
.promo-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.promo-band:after {
  content: "🛒";
  font-size: 8rem;
  opacity: 0.14;
  position: absolute;
  right: 4%;
  transform: rotate(-12deg);
}
.promo-band h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.promo-band p {
  margin: 0;
  color: #d8c98f;
}
.steps {
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 26px 24px 24px 72px;
}
.step:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  color: var(--muted);
}
.page-hero {
  padding: 58px 0 36px;
  background: linear-gradient(180deg, #080808 0, var(--bg) 100%);
}
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumbs a {
  color: var(--primary);
}
.filters {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 12px;
  margin-bottom: 24px;
}
.field {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
.field:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}
.empty-state {
  grid-column: 1/-1;
  background: #fff;
  border: 1px dashed #7f6f38;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  color: var(--muted);
}
.content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
}
.content h2,
.content h3 {
  line-height: 1.25;
}
.content p,
.content li {
  color: #c5b98f;
}
.content table {
  width: 100%;
  border-collapse: collapse;
}
.content th,
.content td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.notice {
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff8e7;
  border: 1px solid #f6d58d;
  color: #624612;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-item span:first-child {
  font-size: 1.5rem;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px 19px;
}
.faq details + details {
  margin-top: 12px;
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
}
.faq p {
  color: var(--muted);
  margin-bottom: 0;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 24px;
}
.cart-list {
  display: grid;
  gap: 14px;
}
.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
}
.cart-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #11100b;
  border-radius: 16px;
}
.cart-product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.cart-product-image.is-error {
  display: none;
}
.cart-image-fallback {
  width: 100%;
  height: 100%;
  display: none;
  place-items: center;
  font-size: 2.2rem;
}
.cart-product-image.is-error + .cart-image-fallback,
.cart-image-fallback.is-visible {
  display: grid;
}
.qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.remove {
  border: 0;
  background: transparent;
  color: var(--danger);
  cursor: pointer;
  font-weight: 800;
}
.summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  position: sticky;
  top: 96px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
}
.summary-total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1.15rem;
  font-weight: 900;
}
.summary-card .btn {
  width: 100%;
  margin-top: 14px;
}
.progress {
  height: 10px;
  border-radius: 99px;
  background: #242018;
  overflow: hidden;
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--primary);
  width: 0;
}
.muted {
  color: var(--muted);
}
.footer {
  background: #050505;
  color: #d8cba0;
  padding: 54px 0 26px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.footer h3,
.footer h4 {
  color: #fff;
}
.footer a {
  display: block;
  color: #c5b98f;
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #9f9472;
  font-size: 0.9rem;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0b0b0b;
  color: #fff;
  padding: 13px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.25s;
  z-index: 100;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 75px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    width: 100%;
  }
  .hero-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 660px;
  }
  .product-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .summary-card {
    position: static;
  }
  .filters {
    grid-template-columns: 1fr 1fr;
  }
  .filters input {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .topbar .container {
    justify-content: center;
  }
  .topbar span:last-child {
    display: none;
  }
  .hero {
    padding-top: 44px;
  }
  .hero h1 {
    font-size: 2.65rem;
  }
  .section {
    padding: 54px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .filters input {
    grid-column: auto;
  }
  .promo-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cart-item {
    grid-template-columns: 58px 1fr;
  }
  .cart-icon {
    width: 58px;
    height: 58px;
  }
  .cart-item > div:last-child {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .brand-text {
    font-size: 0.94rem;
  }
}
.live-chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.24);
  font-weight: 900;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.live-chat-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(212, 175, 55, 0.34);
}
.live-chat-launcher span {
  font-size: 1.2rem;
}
@media (max-width: 520px) {
  .live-chat-launcher {
    right: 14px;
    bottom: 14px;
    padding: 12px 15px;
  }
  .live-chat-launcher strong {
    font-size: 0.92rem;
  }
}

/* =========================================================
   PREMIUM DARK GOLD THEME
   Tema hitam-emas ini sengaja ditulis lengkap dan tidak
   diminify agar mudah diedit kembali.
   ========================================================= */

html {
  color-scheme: dark;
  background: #070707;
}

body {
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.13), transparent 27%),
    radial-gradient(circle at 88% 12%, rgba(243, 214, 117, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.028) 25%, transparent 25%),
    linear-gradient(225deg, rgba(212, 175, 55, 0.028) 25%, transparent 25%),
    linear-gradient(45deg, rgba(212, 175, 55, 0.018) 25%, transparent 25%),
    linear-gradient(315deg, rgba(212, 175, 55, 0.018) 25%, #070707 25%);
  background-position:
    0 0,
    0 0,
    18px 0,
    18px 0,
    0 0,
    0 0;
  background-size:
    auto,
    auto,
    36px 36px,
    36px 36px,
    36px 36px,
    36px 36px;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.025) 50%, transparent 100%),
    radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.58) 100%);
}

::selection {
  background: rgba(212, 175, 55, 0.88);
  color: #090909;
}

.skip-link:focus {
  background: #12100b;
  color: var(--accent);
  border: 1px solid var(--primary);
}

.topbar {
  background:
    linear-gradient(90deg, #050505 0%, #1a1407 50%, #050505 100%);
  color: #f6df8a;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.site-header {
  background: rgba(8, 8, 7, 0.93);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.brand {
  color: #fff4c8;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #fff0a5 0%, #d4af37 42%, #8c6715 100%);
  color: #080704;
  border: 1px solid rgba(255, 244, 187, 0.8);
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(15, 10, 2, 0.3);
  border-radius: 11px;
}

.brand small {
  color: #b8ad8c;
}

.nav a {
  color: #e8ddb8;
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.17), rgba(212, 175, 55, 0.05));
  color: #ffe894;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.24);
}

.nav-toggle {
  color: #f3d675;
  border-color: rgba(212, 175, 55, 0.36);
  background: #100f0c;
}

.cart-chip {
  color: #080704 !important;
  background: linear-gradient(135deg, #f7df82, #c59620 58%, #8c6715);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.19);
}

.cart-count {
  color: #f8e39a;
  background: #0a0907;
  border: 1px solid rgba(255, 235, 158, 0.4);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(212, 175, 55, 0.21) 0%, transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(130, 91, 12, 0.14) 0%, transparent 30%),
    linear-gradient(180deg, #0f0d08 0%, #070707 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -270px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.17);
  box-shadow:
    0 0 0 54px rgba(212, 175, 55, 0.025),
    0 0 0 108px rgba(212, 175, 55, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #f4d873;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.17), rgba(212, 175, 55, 0.04));
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 244, 196, 0.08);
}

.hero h1,
.page-hero h1,
.section-head h2 {
  color: #fff6d5;
  text-shadow: 0 7px 28px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  color: #f2d46d;
  background: linear-gradient(180deg, #fff1a9 0%, #d4af37 54%, #9e7419 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p,
.section-head p,
.page-hero p,
.product-meta,
.category-card p,
.step p,
.faq p,
.muted {
  color: var(--muted);
}

.btn {
  letter-spacing: 0.01em;
}

.btn-primary,
.btn-accent {
  color: #080704;
  background: linear-gradient(135deg, #fff0a4 0%, #d4af37 48%, #9b7118 100%);
  border-color: rgba(255, 242, 177, 0.72);
  box-shadow:
    0 13px 30px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-primary:hover,
.btn-accent:hover {
  box-shadow:
    0 18px 40px rgba(212, 175, 55, 0.29),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.btn-secondary {
  color: #f1dd94;
  background: linear-gradient(145deg, #15130e, #0c0b09);
  border-color: rgba(212, 175, 55, 0.33);
  box-shadow: inset 0 1px 0 rgba(255, 237, 167, 0.05);
}

.btn-secondary:hover {
  color: #fff0ac;
  border-color: rgba(243, 214, 117, 0.62);
}

.hero-card,
.category-card,
.info-card,
.product-card,
.panel,
.content,
.summary-card,
.faq details,
.cart-item {
  background:
    linear-gradient(145deg, rgba(28, 25, 18, 0.98), rgba(12, 12, 10, 0.99));
  border-color: rgba(212, 175, 55, 0.24);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 240, 176, 0.035);
}

.hero-card {
  border-color: rgba(243, 214, 117, 0.38);
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 242, 180, 0.08);
}

.basket {
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 237, 155, 0.22), transparent 28%),
    linear-gradient(145deg, #302405 0%, #151006 48%, #050505 100%);
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.08);
}

.basket::before,
.basket::after {
  background: rgba(243, 214, 117, 0.07);
  border: 1px solid rgba(243, 214, 117, 0.08);
}

.category-card,
.product-card,
.info-card {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.category-card:hover,
.product-card:hover,
.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 214, 117, 0.58);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(212, 175, 55, 0.08);
}

.category-icon {
  color: #f4d875;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 240, 167, 0.16), transparent 40%),
    linear-gradient(145deg, #211a09, #0d0c09);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 244, 190, 0.08);
}

.product-visual {
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.17), transparent 34%),
    linear-gradient(145deg, #1b180f, #090909);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -45px 48px rgba(0, 0, 0, 0.28);
}

.product-image {
  position: relative;
  z-index: 0;
}

.product-image-fallback {
  color: #f0d16a;
}

.badge {
  z-index: 2;
  color: #080704;
  background: linear-gradient(135deg, #fff1a8, #d4af37 58%, #987018);
  border: 1px solid rgba(255, 244, 190, 0.74);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.price {
  color: #f3d675;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.16);
}

.old-price {
  color: #706b5d;
}

.promo-band {
  color: #fff3c2;
  background:
    radial-gradient(circle at 87% 20%, rgba(255, 241, 170, 0.18), transparent 30%),
    linear-gradient(135deg, #2f2305 0%, #171105 48%, #070707 100%);
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 239, 173, 0.09);
}

.promo-band p {
  color: #d4c898;
}

.step::before {
  color: #080704;
  background: linear-gradient(145deg, #f8df82, #b98819);
  border: 1px solid rgba(255, 241, 176, 0.74);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.17);
}

.page-hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(180deg, #100e09 0%, #070707 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.breadcrumbs a {
  color: #e9c957;
}

.field {
  color: #f4e9c2;
  background: #0f0e0b;
  border-color: rgba(212, 175, 55, 0.25);
}

.field::placeholder {
  color: #7f7760;
}

.field:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.11);
}

select.field {
  color-scheme: dark;
}

.empty-state {
  color: var(--muted);
  background: rgba(17, 16, 13, 0.9);
  border-color: rgba(212, 175, 55, 0.32);
}

.content p,
.content li {
  color: #c2b998;
}

.content th,
.content td {
  border-bottom-color: rgba(212, 175, 55, 0.17);
}

.notice {
  color: #ead993;
  background: linear-gradient(145deg, rgba(63, 46, 6, 0.55), rgba(17, 14, 7, 0.92));
  border-color: rgba(212, 175, 55, 0.38);
}

.contact-item {
  background: rgba(16, 15, 12, 0.72);
  border-color: rgba(212, 175, 55, 0.2);
}

.cart-icon {
  background:
    radial-gradient(circle at 70% 20%, rgba(212, 175, 55, 0.16), transparent 35%),
    #11100d;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.qty button {
  color: #f4df98;
  background: #11100d;
  border-color: rgba(212, 175, 55, 0.27);
}

.qty button:hover {
  color: #080704;
  background: #d4af37;
}

.progress {
  background: #242018;
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.progress > span {
  background: linear-gradient(90deg, #9d741a, #f2d46c, #bd8d1d);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.32);
}

.footer {
  color: #c8bc93;
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.09), transparent 27%),
    linear-gradient(180deg, #0b0a08 0%, #050505 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.23);
}

.footer h3,
.footer h4 {
  color: #f5dfa0;
}

.footer a {
  color: #bcb18c;
}

.footer a:hover {
  color: #f4d875;
}

.footer-bottom {
  color: #8f866d;
  border-top-color: rgba(212, 175, 55, 0.16);
}

.toast {
  color: #f5dfa0;
  background: #11100d;
  border: 1px solid rgba(212, 175, 55, 0.34);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.56),
    0 0 22px rgba(212, 175, 55, 0.08);
}

.live-chat-launcher {
  color: #080704;
  background: linear-gradient(135deg, #fff0a4 0%, #d4af37 50%, #987018 100%);
  border-color: rgba(255, 242, 182, 0.86);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.46),
    0 0 25px rgba(212, 175, 55, 0.19);
}

.live-chat-launcher:hover {
  box-shadow:
    0 23px 50px rgba(0, 0, 0, 0.56),
    0 0 34px rgba(212, 175, 55, 0.3);
}

@media (max-width: 980px) {
  .nav {
    background: rgba(12, 11, 9, 0.98);
    border-color: rgba(212, 175, 55, 0.27);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.58);
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .hero::before {
    width: 360px;
    height: 360px;
    right: -210px;
    top: -170px;
  }
}

/* =========================================================
   FINAL PURE BLACK & GOLD THEME
   Seluruh komponen utama menggunakan hitam dan emas.
   Bagian ini tidak diminify agar mudah diedit.
   ========================================================= */

:root {
  --primary: #d4af37;
  --primary-dark: #8b6508;
  --accent: #ffd700;
  --ink: #f8edc6;
  --muted: #c5b98f;
  --bg: #000000;
  --card: #0b0b0b;
  --line: rgba(212, 175, 55, 0.32);
}

html {
  color-scheme: dark;
  background: #000000;
}

body {
  color: var(--ink);
  background-color: #000000;
  background-image:
    radial-gradient(circle at 14% 0%, rgba(212, 175, 55, 0.15), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 215, 0, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(212, 175, 55, 0.025) 25%, transparent 25%);
  background-size:
    auto,
    auto,
    38px 38px,
    38px 38px;
}

.topbar {
  color: #f9df7a;
  background: linear-gradient(90deg, #000000 0%, #181204 50%, #000000 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
}

.site-header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.36);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.72);
}

.brand,
.brand small,
.nav a {
  color: #f4e3a4;
}

.brand-mark {
  color: #000000;
  background: linear-gradient(145deg, #fff2a8 0%, #ffd700 30%, #d4af37 65%, #8b6508 100%);
  border: 1px solid #ffe77f;
  box-shadow:
    0 12px 32px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav a:hover,
.nav a.active {
  color: #ffd700;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.38);
}

.nav-toggle {
  color: #ffd700;
  background: #080808;
  border-color: rgba(212, 175, 55, 0.48);
}

.cart-chip,
.btn-primary,
.btn-accent,
.live-chat-launcher {
  color: #000000 !important;
  background: linear-gradient(135deg, #fff2a8 0%, #ffd700 34%, #d4af37 66%, #8b6508 100%);
  border-color: #ffe77f;
  box-shadow:
    0 14px 34px rgba(212, 175, 55, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cart-count {
  color: #ffd700;
  background: #000000;
  border-color: rgba(255, 215, 0, 0.55);
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 215, 0, 0.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(212, 175, 55, 0.09), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.hero h1,
.page-hero h1,
.section-head h2,
.content h1,
.content h2,
.content h3,
.product-body h3,
.category-card h3,
.info-card h3,
.step h3,
.faq summary,
.summary-card h2,
.summary-card h3 {
  color: #fff2bd;
}

.hero h1 span {
  color: #ffd700;
  background: linear-gradient(180deg, #fff3ad 0%, #ffd700 38%, #d4af37 68%, #8b6508 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  color: #ffd966;
  background: rgba(212, 175, 55, 0.11);
  border-color: rgba(212, 175, 55, 0.45);
}

.btn-secondary {
  color: #f6df8e;
  background: #080808;
  border-color: rgba(212, 175, 55, 0.42);
}

.btn-secondary:hover {
  color: #ffd700;
  border-color: #d4af37;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.14);
}

.hero-card,
.category-card,
.info-card,
.product-card,
.panel,
.content,
.summary-card,
.faq details,
.cart-item {
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(18, 18, 18, 0.99), rgba(5, 5, 5, 0.99));
  border: 1px solid rgba(212, 175, 55, 0.34);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 215, 0, 0.045);
}

.hero-card,
.category-card,
.info-card,
.product-card,
.panel,
.content,
.summary-card,
.faq details,
.cart-item,
.promo-band {
  position: relative;
}

.category-card:hover,
.info-card:hover,
.product-card:hover {
  border-color: rgba(255, 215, 0, 0.68);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.68),
    0 0 28px rgba(212, 175, 55, 0.12);
}

.basket,
.product-visual,
.cart-icon,
.category-icon {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 215, 0, 0.16), transparent 32%),
    linear-gradient(145deg, #171307 0%, #080808 58%, #000000 100%);
  border-color: rgba(212, 175, 55, 0.4);
}

.product-visual {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.product-image-fallback,
.cart-image-fallback,
.category-icon {
  color: #ffd700;
}

.badge,
.step::before {
  color: #000000;
  background: linear-gradient(135deg, #fff3ae 0%, #ffd700 38%, #d4af37 70%, #8b6508 100%);
  border: 1px solid #ffe77f;
}

.price,
.breadcrumbs a {
  color: #ffd95a;
}

.old-price {
  color: #807861;
}

.promo-band {
  color: #fff1b8;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 215, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #1c1503 0%, #0b0b0b 52%, #000000 100%);
  border: 1px solid rgba(212, 175, 55, 0.52);
}

.promo-band p {
  color: #d5c796;
}

.field,
select.field,
textarea.field {
  color: #f8edc6;
  background: #070707;
  border-color: rgba(212, 175, 55, 0.38);
}

.field:focus,
select.field:focus,
textarea.field:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.field::placeholder {
  color: #827a62;
}

.empty-state,
.notice,
.contact-item {
  color: #d9ca96;
  background: rgba(8, 8, 8, 0.94);
  border-color: rgba(212, 175, 55, 0.36);
}

.content p,
.content li,
.product-meta,
.category-card p,
.step p,
.faq p,
.muted,
.hero p,
.page-hero p,
.section-head p,
.mini-offer span {
  color: #c5b98f;
}

.content th,
.content td,
.summary-total {
  border-color: rgba(212, 175, 55, 0.24);
}

.qty button {
  color: #ffd700;
  background: #050505;
  border-color: rgba(212, 175, 55, 0.4);
}

.qty button:hover {
  color: #000000;
  background: #ffd700;
}

.progress {
  background: #1a170d;
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.progress > span {
  background: linear-gradient(90deg, #8b6508, #ffd700, #d4af37);
}

.footer {
  color: #cabc8c;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 215, 0, 0.09), transparent 28%),
    linear-gradient(180deg, #080808 0%, #000000 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.36);
}

.footer h3,
.footer h4 {
  color: #ffe799;
}

.footer a {
  color: #bfb184;
}

.footer a:hover {
  color: #ffd700;
}

.footer-bottom {
  color: #8f866d;
  border-top-color: rgba(212, 175, 55, 0.22);
}

.toast {
  color: #f7e6aa;
  background: #080808;
  border: 1px solid rgba(212, 175, 55, 0.48);
}

.remove {
  color: #ff827a;
}

@media (max-width: 980px) {
  .nav {
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.42);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.72);
  }
}


/* Tombol Live Chat mengambang sengaja disembunyikan. */
.live-chat-launcher {
  display: none !important;
}

/* Sembunyikan tombol Live Chat mengambang di semua halaman */
.live-chat-launcher {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Logo KEREN89 horizontal pada header */
.brand {
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(185px, 17vw, 225px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .brand-logo {
    width: 185px;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 160px;
  }
}

/* ============================================================
   HERO GAMBAR KUSTOM
   Ganti file assets/img/hero-banner.png untuk mengganti bannernya.
   Ukuran yang disarankan: 1200 x 675 piksel (rasio 16:9).
   ============================================================ */
.hero-image-card {
  width: 100%;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: 28px;
  background: #050505;
  box-shadow:
    0 26px 72px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 242, 180, 0.08);
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .hero-image-card {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-image-card {
    border-radius: 18px;
  }
}
