/* ===== Design tokens (reusable) ===== */
:root {
  --bg: #1e1e1e;
  --text: #dcdbdb;
  --muted: #8b9299;

  --line: rgba(220, 219, 219, .05);
  --orange: #f68627;

  --wa: #22c55e;
  --waGlow: rgba(34, 197, 94, .30);
  --orangeGlow: rgba(246, 134, 39, .50);

  --radius-pill: 999999px;
}

html,
body {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== Layout helpers ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ===== Typography helpers ===== */
.text-muted {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 26px;
}

.text-nowrap {
  white-space: nowrap;
}

/* responsive helper */
.text-center-md-left {
  text-align: center;
}

@media (min-width:768px) {
  .text-center-md-left {
    text-align: left;
  }
}

/* ===== Buttons (reusable) ===== */
/* =========================================================
   BUTTON SYSTEM — FINAL, NO MAGIC
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  text-decoration: none;
  border: 0;
  cursor: pointer;
  user-select: none;

  line-height: 1;
  /* WAJIB */
}

.btn__icon {
  width: 16px;
  height: 16px;
  display: block;
  flex: 0 0 auto;
}

/* LABEL — satu-satunya yang digeser */
.btn__label {
  display: block;
  line-height: 1;
  transform: translateY(1px);
  /* FINAL */
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= VARIANTS ================= */

.btn--primary {
  background: #f68627;
  color: #061922;
  border-radius: 999999px;
}

.btn--glow {
  box-shadow: 0 0 30px rgba(246, 134, 39, .5);
}

.btn--wa {
  padding: 0 16px;
  height: 36px;
  background: #22c55e;
  border-radius: 999999px;
  box-shadow: 0 0 20px rgba(34, 197, 94, .3);
}

/* ================= SIZES ================= */

.btn--sm {
  height: 32px;
  padding: 0 14px;
  font-size: 14px;
}

.btn--md {
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
}

.btn--lg {
  height: 56px;
  padding: 0 28px;
  font-size: 16px;
}

/* CTA button: satu ukuran untuk semua tombol glow */
.btn--cta {
  height: 56px;
  /* sama */
  padding: 0 28px;
  /* sama */
  border-radius: 999999px;
  font-size: 16px;
}

/* pastikan label benar-benar bold */
.btn--cta .btn__label {
  font-family: "Gotham-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  transform: translateY(1px);
  /* pakai angka yang sudah pas di tempatmu */
}



/* ===== Icons (reusable) ===== */
.ico {
  width: 16px;
  height: 16px;
  display: block;
}

.ico--lg {
  width: 20px;
  height: 20px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;
  background: #1e1e1e;
  border-top: 1px solid rgba(220, 219, 219, .05);
}

/* glow line */
.site-footer__glow-line {
  width: 100%;
  height: 2px;
  box-shadow: 0 0 20px rgba(246, 134, 39, .5);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(246, 134, 39, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.site-footer__inner {
  padding-top: 64px;
  padding-bottom: 40px;
}

/* grid columns */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* logo */
.site-footer__logo {
  display: inline-block;
  width: 187px;
  height: 28px;
}

.site-footer__logo-img {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* titles */
.footer-title {
  margin: 0;
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #dcdbdb;
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
}

/* text helpers */
.text-muted {
  margin: 0;
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #8b9299;
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 26px;
}

.text-nowrap {
  white-space: nowrap;
}

.text-center-md-left {
  text-align: center;
}

@media (min-width: 768px) {
  .text-center-md-left {
    text-align: left;
  }
}

/* links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #8b9299;
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
  text-decoration: none;
}

.footer-link:hover {
  color: #dcdbdb;
}

.footer-link--strong {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
}

/* contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__row {
  display: flex;
  align-items: flex-start;
  /* kunci: icon sejajar atas teks */
  gap: 12px;
}

.footer-contact__row .text-muted {
  line-height: 24px;
}

/* icons */
.ico {
  display: block;
}

.ico--lg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  /* tweak optik biar pas */
}

/* bottom bar */
.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;

  padding-top: 32px;
  border-top: 1px solid rgba(220, 219, 219, .05);
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: inline-flex;
  gap: 24px;
  align-items: center;
}

/* =========================================================
   HEADER — FINAL, STABLE, SEARCH FIXED
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 81px;
  z-index: 9999;

  background: rgba(39, 39, 39, .95);
  border-bottom: 1px solid rgba(220, 219, 219, .10);
}

/* ===== INNER LAYOUT ===== */
.site-header__inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 24px;

  padding-left: 56px;
  padding-right: 56px;
}

/* ===== LEFT (LOGO) ===== */
.site-header__logo-wrap {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
}

.site-header__logo {
  display: block;
}

.site-header__logo-img {
  width: 244px;
  height: 36px;
  display: block;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ===== CENTER (SEARCH) ===== */
.site-header__search-wrap {
  flex: 1 1 auto;
  min-width: 0;
  /* PENTING: cegah overlap */
  display: flex;
  justify-content: center;

  position: relative;
  z-index: 3;
}

.site-search {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.site-search__input {
  width: 100%;
  height: 48px;

  padding: 0 16px 0 48px;

  background: #0f0f0f;
  border: 1px solid rgba(220, 219, 219, .10);
  border-radius: 999999px;

  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #dcdbdb;
  caret-color: #dcdbdb;

  outline: none;
  appearance: none;
  -webkit-appearance: none;

  pointer-events: auto;
  position: relative;
  z-index: 4;
}

/* =========================================================
   FORCE FIX: INPUT TEXT VISIBILITY (SEARCH)
========================================================= */

.site-search__input {
  color: #dcdbdb !important;
  /* teks ketikan */
  caret-color: #dcdbdb !important;
  /* caret */
  -webkit-text-fill-color: #dcdbdb !important;
  opacity: 1 !important;
  background-color: #0f0f0f !important;
}

/* placeholder */
.site-search__input::placeholder {
  color: rgba(139, 146, 153, .9) !important;
  -webkit-text-fill-color: rgba(139, 146, 153, .9) !important;
  opacity: 1 !important;
}

.site-search__input::placeholder {
  color: rgba(139, 146, 153, .9);
  opacity: 1;
}

/* icon search */
.site-search__btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 20px;
  height: 20px;

  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;

  z-index: 5;
}

/* ===== RIGHT (ACTIONS) ===== */
.site-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;

  position: relative;
  z-index: 2;
}

/* login/register */
.site-header__auth {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;
}

.site-header__auth-text {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #dcdbdb;
  white-space: nowrap;
}

/* icons */
.site-header__iconlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header__icon {
  width: 36px;
  height: 36px;
  display: block;
}

.site-header__cartlink { position: relative; }

.site-header__cartbadge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#ff3b30;
  color:#fff;
  font-size:11px;
  line-height:18px;
  font-weight:700;
  text-align:center;
  border:2px solid #1e1e1e;
}


/* =========================================================
   RESPONSIVE SAFETY
========================================================= */

@media (max-width: 1200px) {
  .site-header__inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-header__logo-wrap {
    flex: 0 0 260px;
  }

  .site-search {
    max-width: 380px;
  }
}

@media (max-width: 1024px) {
  .site-header__logo-wrap {
    flex: 0 0 220px;
  }

  .site-search {
    max-width: 320px;
  }
}

/* =========================================================
   SECTION HEAD (reusable)
========================================================= */
.section-head {
  margin-bottom: 40px;
}

.section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.section-title {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: var(--text);
  font-size: 20px;
  letter-spacing: -0.45px;
  line-height: 30px;
  margin: 0;
}

.section-subtitle {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
  margin: 0;
}

/* =========================================================
   SHOP BY CATEGORY (reusable)
========================================================= */
.category-section {
  width: 100%;
  background: var(--bg);
}

.category-section__inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* mobile: grid 2 kolom | desktop: flex center */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

@media (min-width:768px) {
  .category-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
}

.category-card {
  width: 100%;
  height: 240px;
  background: #0f0f0f;
  border: 1px solid rgba(220, 219, 219, .10);
  border-radius: 24px;
  /* rounded-3xl */
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width:768px) {
  .category-card {
    width: 166px;
    height: 302px;
    gap: 20px;
  }
}

.category-card__icon {
  width: 80px;
  height: 80px;
  margin: 24px auto 0;
  display: block;
}

@media (min-width:768px) {
  .category-card__icon {
    width: 96px;
    height: 96px;
    margin-top: 41px;
  }
}

.category-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px 18px;
}

.category-card__name {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
  letter-spacing: -0.31px;
  line-height: 24px;
  text-align: center;
}

.category-card__count {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: -0.31px;
  line-height: 24px;
  text-align: center;
}

@media (min-width:768px) {
  .category-card__name {
    font-size: 16px;
  }

  .category-card__count {
    font-size: 16px;
  }
}

/* =========================================================
   HARD RESET OVERRIDE — SEARCH INPUT (FINAL)
========================================================= */

.site-search__input {
  all: revert !important;
  /* BALIKIN SEMUA DEFAULT */

  box-sizing: border-box !important;
  width: 100% !important;
  height: 48px !important;

  padding: 0 16px 0 48px !important;

  background-color: #0f0f0f !important;
  border: 1px solid rgba(220, 219, 219, .10) !important;
  border-radius: 999999px !important;

  font-family: "Gotham-Light", Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;

  color: #dcdbdb !important;
  caret-color: #dcdbdb !important;
  -webkit-text-fill-color: #dcdbdb !important;

  outline: none !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  pointer-events: auto !important;
}

.site-search__input::placeholder {
  color: rgba(139, 146, 153, .9) !important;
  -webkit-text-fill-color: rgba(139, 146, 153, .9) !important;
  opacity: 1 !important;
}

/* =========================================================
   PRODUCTS (DESKTOP) - INDEX + SHOW
   Reuse: .app-shell, .btn, .btn--primary, .btn--glow, .btn__label, .btn--sm
========================================================= */

:root {
  --bg: #1e1e1e;
  --card: #0f0f0f;
  --text: #dcdbdb;
  --muted: #8b9299;
  --line: rgba(220, 219, 219, .10);
  --orange: #f68627;
  --orangeGlow: rgba(246, 134, 39, .30);
}

/* page wrapper */
.products-page {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.products-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 55.5px 64px;
  display: flex;
  gap: 32px;
}

/* sidebar */
.products-sidebar {
  width: 256px;
  flex: 0 0 256px;
}

.filter-block {
  margin-bottom: 24px;
}

.filter-title {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  font-size: 16px;
  letter-spacing: -0.31px;
  margin: 0 0 14px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.filter-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.filter-option span {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
  letter-spacing: -0.15px;
}

.filter-divider {
  height: 1px;
  background: rgba(220, 219, 219, .10);
  margin: 22px 0;
}

/* main */
.products-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* banner */
.products-banner {
  position: relative;
  height: 183px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.products-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.products-banner__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 25, 34, .70) 0%, rgba(0, 0, 0, 0) 70%);
}

.products-banner__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 48px;
}

.products-banner__title {
  font-family: "Gotham-Bold", Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 36px;
  line-height: 40px;
  letter-spacing: .37px;
  margin: 0 0 10px;
}

.products-banner__desc {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 16px;
  letter-spacing: -0.31px;
  line-height: 24px;
  margin: 0;
}

.products-banner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(6, 25, 34, .80);
  border: 1px solid rgba(246, 134, 39, .30);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.products-banner__arrow img {
  width: 16px;
  height: 16px;
}

.products-banner__arrow--left {
  left: 16px;
}

.products-banner__arrow--right {
  right: 16px;
}

/* sort bar */
.products-sortbar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  height: 68px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.products-sortbar__text {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  font-size: 16px;
  letter-spacing: -0.31px;
  margin: 0;
}

.products-sortbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-select {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #1e1e1e;
  color: var(--text);
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-size: 14px;
  outline: none;
}

/* grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* product card (reuse style mirip featured) */
.pcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity .15s ease;
}

.pcard:hover {
  opacity: .95;
}

.pcard__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #1e1e1e;
  display: block;
}

.pcard__mediaBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pcard__empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
}

.pcard__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(30, 30, 30, .80);
  border: 1px solid rgba(220, 219, 219, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pcard__wish img {
  width: 22px;
  height: 22px;
}

.pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 20px var(--orangeGlow);
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #1e1e1e;
  font-size: 12px;
  line-height: 16px;
}

.pcard__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pcard__name {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.25px;
  margin: 0;
}

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

.pcard__price {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--orange);
  font-size: 14px;
  line-height: 22px;
}

.pcard__priceOld {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
  text-decoration: line-through;
}

.pcard__actions {
  margin-top: auto;
}

/* =========================================================
   PRODUCT SHOW (DESKTOP) - match Tailwind/Figma version
========================================================= */

.pdp-wrap {
  background: #1e1e1e;
  color: #fff;
  min-height: 100vh;
}

.pdp-container {
  max-width: 1071px;
  margin: 0 auto;
  padding-top: 96px;
  padding-bottom: 80px;
  padding-left: 55.5px;
  padding-right: 55.5px;
}

/* ===== Top section ===== */
.pdp-top {
  display: flex;
  gap: 40px;
  /* gap-10 */
}

.pdp-left {
  width: 360px;
  flex: 0 0 360px;
}

.pdp-mainimg {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  /* rounded-2xl */
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(220, 219, 219, .10);
}

.pdp-mainimg__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* thumbs */
/* ===== PDP THUMBNAIL COVER FIX ===== */
/* thumbs */
/* thumbs */
.pdp-thumbs {
  display: flex;
  gap: 12px;
  /* jarak antar thumb */
  margin-top: 14px;
  /* jarak dari main image */

  overflow-x: auto;
  /* scroll horizontal */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* swipe di mobile */
  scroll-snap-type: x mandatory;
  /* snap per thumb */
  padding-bottom: 6px;
  /* ruang scrollbar */
  max-width: calc(5 * 64px + 4 * 12px);
  /* 5 thumb */
}

.pdp-thumb {
  width: 64px;
  aspect-ratio: 1 / 1;
  flex: 0 0 64px;
  /* fixed width */

  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(220, 219, 219, .12);
  padding: 0;
  flex: 0 0 auto;
}

.pdp-thumbs::-webkit-scrollbar{ height:6px; }
.pdp-thumbs::-webkit-scrollbar-thumb{ background: rgba(220,219,219,.15); border-radius:999px; }

.pdp-thumb__img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  background-size: cover !important;
  /* 🔥 ini kuncinya */
  background-position: center center !important;
  background-repeat: no-repeat !important;
}


.pdp-thumb.is-active {
  border-color: #f68627;
  box-shadow: 0 0 0 2px rgba(246, 134, 39, .25);
  opacity: 1;
}

.pdp-thumb__img {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===== Right ===== */
.pdp-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pdp-title {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.25px;
  color: #dcdbdb;
  margin: 0;
}

.pdp-price {
  margin-top: 12px;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #f68627;
}

.pdp-shortdesc {
  margin-top: 12px;
  max-width: 420px;
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #8b9299;
  letter-spacing: -0.25px;
}

/* options block */
.pdp-options {
  margin-top: 32px;
  /* mt-8 */
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* space-y-6 */
}

.pdp-label {
  font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #dcdbdb;
  letter-spacing: -0.2px;
}

.pdp-variantbox {
  margin-top: 12px;
  max-height: 160px;
  /* max-h-40 */
  overflow-y: auto;
  padding-right: 4px;
  /* pr-1 */
}

.pdp-variantpills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* gap-3 */
}

/* variant pill */
.pdp-variant-btn {
  height: 36px;
  padding: 0 20px;
  /* px-5 */
  border-radius: 999px;
  border: 1px solid #343434;
  background: #0f0f0f;
  color: #dcdbdb;
  cursor: pointer;

  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.15px;
  white-space: nowrap;
}

.pdp-variant-btn.is-active {
  background: #f68627;
  border-color: #f68627;
  color: #1e1e1e;
}

/* qty */
.pdp-qtyrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-qtybtn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0f0f0f;
  border: 1px solid #343434;
  color: #dcdbdb;
  cursor: pointer;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
}

.pdp-qtyval {
  min-width: 40px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0f0f0f;
  border: 1px solid #343434;
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

/* CTA row */
.pdp-cta {
  margin-top: 32px;
  /* mt-8 */
  display: flex;
  align-items: center;
  gap: 16px;
}

.pdp-addcart {
  flex: 1;
  height: 48px;
  /* h-12 */
  border-radius: 999px;
  background: #f68627;
  box-shadow: 0 0 30px rgba(246, 134, 39, .50);
  /* shadow-[0_0_30px_#f6862780] feel */
  border: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pdp-addcart .pdp-addcart__icon {
  width: 16px;
  height: 16px;
  display: block;
}

.pdp-addcart .pdp-addcart__label {
  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e1e1e;
  letter-spacing: -0.15px;
  line-height: 1;
  transform: translateY(4px);
  /* fix Gotham */
}

.pdp-wishlist {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #f68627;
  background: transparent;
  cursor: pointer;

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

.pdp-wishlist img {
  width: 30px;
  height: 30px;
}

/* ===== Tabs section (pills like Tailwind) ===== */
.pdp-tabs {
  margin-top: 48px;
  /* mt-12 */
}

.pdp-tabbar {
  display: flex;
  align-items: center;
  gap: 12px;
  /* gap-3 */
}

.pdp-tabbtn {
  height: 36px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;

  background: #0f0f0f;
  color: #dcdbdb;

  font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.15px;
}

.pdp-tabbtn.is-active {
  background: #f68627;
  color: #1e1e1e;
}

.pdp-tabcard {
  margin-top: 24px;
  /* mt-6 */
  background: #0f0f0f;
  border-radius: 16px;
  border: 1px solid rgba(220, 219, 219, .10);
  padding: 24px;
  max-width: 100%;
}

.pdp-tabcontent {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #dcdbdb;
  letter-spacing: -0.31px;
}

.pdp-hidden {
  display: none;
}

/* ===== Try in visualizer ===== */
.pdp-try {
  margin-top: 48px;
}

.pdp-trybox {
  border-radius: 24px;
  border: 1px solid #f68627;
  background: #1e1e1e;
  padding: 40px;
  box-shadow: 0 0 30px rgba(246, 134, 39, .08);
}

.pdp-tryinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.pdp-tryicon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #f68627;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

/* Related title spacing (biar mirip Tailwind view) */
.pdp-related-title {
  margin-top: 48px;
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #dcdbdb;
  letter-spacing: -0.31px;
  margin-bottom: 16px;
}

.btn--pill{ border-radius:9999px; }

.btn--primary{
  background:#f68627;
  color:#061922;
}

.btn--glow{
  box-shadow:0 0 30px rgba(246,134,39,.45);
}

.btn--visualizer{
  height:44px;             /* figma terlihat ~44 */
  padding:0 22px;          /* pill */
  font-family:"Gotham-Bold", Helvetica, Arial, sans-serif;
  font-weight:700;
  font-size:14px;
  letter-spacing:-0.15px;
}

/* ===== FORCE GOTHAM FOR WYSIWYG CONTENT ===== */
.pdp-tabcontent,
.pdp-tabcontent * {
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif !important;
  font-weight: 300;
  color: #dcdbdb;
  line-height: 26px;
  letter-spacing: -0.31px;
}
/* ===== Pagination ===== */
.pager{display:flex;gap:10px;align-items:center;justify-content:center;margin-top:32px}
.pager__btn,.pager__num{height:40px;min-width:40px;padding:0 14px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(220,219,219,.12);
  background:#0f0f0f;color:#dcdbdb;text-decoration:none;font-family:"Gotham-Medium",Helvetica,Arial,sans-serif}
.pager__num.is-active{background:#f68627;color:#1e1e1e;border-color:#f68627}
.pager__btn.is-disabled{opacity:.35;pointer-events:none}
.pager__dots{color:#8b9299;padding:0 6px}
.pager__label{transform:translateY(4px);line-height:1}


/* ===== Sidebar filter: max 5 items, rest scroll ===== */
.filter-options--scroll{
  max-height: 190px;           /* kira-kira muat 5 item */
  overflow-y: auto;
  padding-right: 6px;
}

/* scrollbar (optional biar cantik) */
.filter-options--scroll::-webkit-scrollbar{ width: 6px; }
.filter-options--scroll::-webkit-scrollbar-thumb{
  background: rgba(220,219,219,.18);
  border-radius: 999px;
}

/* ===== Price Range ===== */
.price-range{ margin-top: 10px; }

.price-range__bar{
  position: relative;
  height: 22px;
}

.price-range__range{
  width: 100%;
  position: absolute;
  left: 0; top: 0;
  height: 22px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none; /* biar nggak “dobel” nabrak */
}

/* aktifkan pointer untuk thumbs */
.price-range__range::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #f68627;
  border: 2px solid #1e1e1e;
  box-shadow: 0 0 0 2px rgba(246,134,39,.25);
}

.price-range__range::-webkit-slider-runnable-track{
  height: 6px;
  border-radius: 999px;
  background: rgba(220,219,219,.15);
}

.price-range__labels{
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #8b9299;
}

/* ===== Skeleton ===== */
.skel-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.skel-card{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(220,219,219,.10);
  background:#0f0f0f;
}
.skel-img{ aspect-ratio: 1/1; }
.skel-body{ padding:14px; display:flex; flex-direction:column; gap:10px; }
.skel-line{ height:12px; border-radius:8px; }
.skel-line.w60{ width:60%; }
.skel-line.w40{ width:40%; }
.skel-btn{ height:36px; border-radius:999px; }

.skeleton{
  background: linear-gradient(90deg, rgba(255,255,255,.06) 25%, rgba(255,255,255,.12) 37%, rgba(255,255,255,.06) 63%);
  background-size: 400% 100%;
  animation: skel 1.2s ease-in-out infinite;
}
@keyframes skel{
  0%{ background-position: 100% 0; }
  100%{ background-position: 0 0; }
}

/* responsive */
@media (max-width: 1100px){
  .skel-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .skel-grid{ grid-template-columns: 1fr; }
}


/* ===== Products Mobile (no Tailwind) ===== */
.pm-page{ background:#111; color:#dcdbdb; min-height:100vh; padding-top:96px; padding-bottom:80px; }
.pm-container{ max-width:560px; margin:0 auto; padding:0 16px; }

.pm-banner{ position:relative; border-radius:18px; overflow:hidden; margin-bottom:14px; }
.pm-banner__bg{ height:130px; background-size:cover; background-position:center; }
.pm-banner__grad{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.20)); }
.pm-banner__content{ position:absolute; left:16px; bottom:14px; right:16px; }
.pm-banner__title{ margin:0; font-size:22px; color:#fff; font-family:'Gotham-Medium', Helvetica, Arial, sans-serif; }
.pm-banner__desc{ margin:6px 0 0; font-size:12px; opacity:.85; }

.pm-toolbar{ display:flex; gap:10px; align-items:center; margin:12px 0 14px; }
.pm-toolbtn{
  height:40px; padding:0 14px; border-radius:999px;
  border:1px solid rgba(220,219,219,.14);
  background:#0f0f0f; color:#dcdbdb;
}

.pm-sheet{ position:fixed; inset:0; z-index:9999; display:none; }
.pm-sheet.is-open{ display:block; }
.pm-sheet__backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.55); }
.pm-sheet__panel{
  position:absolute; left:0; right:0; bottom:0;
  max-height:82vh; overflow:auto;
  background:#171717;
  border-top:1px solid rgba(220,219,219,.12);
  border-radius:18px 18px 0 0;
  padding:14px 14px 18px;
  box-shadow:0 -12px 40px rgba(0,0,0,.45);
}
.pm-sheet__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
.pm-sheet__title{ color:#fff; font-size:13px; letter-spacing:.08em; text-transform:uppercase; }
.pm-sheet__close{ background:transparent; border:0; color:#fff; font-size:26px; line-height:1; padding:4px 8px; }

.pm-apply{
  width:100%;
  margin-top:12px;
  height:44px;
  border-radius:999px;
  border:0;
  background:#ff8a00;
  color:#000;
  font-weight:700;
}

/* mobile results */
.pm-sortbar{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(220,219,219,.10);
  background:#0f0f0f;
  margin:10px 0 14px;
}
.pm-sortbar__text{ margin:0; font-size:12px; opacity:.9; }
.pm-select{
  height:34px; padding:0 12px;
  border-radius:12px;
  border:1px solid rgba(220,219,219,.14);
  background:#171717; color:#dcdbdb;
}

.pm-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.pm-card{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(220,219,219,.10);
  background:#0f0f0f;
}
.pm-card__media{ display:block; }
.pm-card__mediaBg{ aspect-ratio: 1/1; background-size:cover; background-position:center; }
.pm-card__empty{ aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; opacity:.7; }
.pm-card__body{ padding:12px; }
.pm-card__name{ margin:0 0 6px; font-size:12px; line-height:1.35; }
.pm-card__price{ margin:0 0 10px; color:#ff8a00; font-weight:700; font-size:12px; }

.pm-btn{
  width:100%;
  height:38px;
  border-radius:999px;
  border:0;
  background:#ff8a00;
  color:#000;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.pm-btn__icon{ width:16px; height:16px; }

/* skeleton grid override for mobile */
.pm-skel-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:14px;
}

/* ========= ACCOUNT SHELL (dipakai juga oleh Orders, dll) ========= */

.account-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
    padding-top: 96px;
    padding-bottom: 80px;
}

.account-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 55px;
    display: flex;
    gap: 40px;
}

.account-main {
    flex: 1;
    position: relative;
    z-index: 10;
}

.account-title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 0 0 24px;
}

/* ========= DESKTOP WISHLIST ========= */

.wl-empty__card {
    height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wl-empty__icon {
    font-size: 32px;
    color: #8b9299;
    margin-bottom: 12px;
}

.wl-empty__text {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #8b9299;
}

/* list */

.wl-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wl-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    background-color: #0f0f0f;
}

.wl-card__imgwrap {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #1e1e1e;
    flex-shrink: 0;
}

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

.wl-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8b9299;
}

.wl-card__body {
    flex: 1;
}

.wl-card__name {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
    margin: 0 0 4px;
}

.wl-card__price {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
    margin: 0;
}

.wl-card__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* buttons */

.wl-btn {
    border: none;
    cursor: pointer;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.wl-btn--icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #1e1e1e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dcdbdb;
}

.wl-btn--primary {
    padding: 0 18px;
    height: 36px;
    border-radius: 999px;
    background-color: #f68627;
    color: #1e1e1e;
    box-shadow: 0 0 20px rgba(246, 134, 39, 0.3);
}

/* ========= MOBILE ACCOUNT SHELL ========= */

.account-m-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
}

.account-m-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 16px 80px;
}

.account-m-title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin: 0 0 16px;
}

/* ========= MOBILE WISHLIST ========= */

.wlm-empty__card {
    height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wlm-empty__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    opacity: 0.6;
}

.wlm-empty__text {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #8b9299;
}

/* list */

.wlm-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wlm-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    background-color: #0f0f0f;
}

.wlm-card__imgwrap {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #1e1e1e;
    flex-shrink: 0;
}

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

.wlm-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #8b9299;
}

.wlm-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wlm-card__name {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.wlm-card__price {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #f68627;
    margin: 0;
}

.wlm-card__actions {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* buttons mobile */

.wlm-btn {
    border: none;
    cursor: pointer;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.wlm-btn--icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background-color: #1e1e1e;
    border: 1px solid #343434;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dcdbdb;
}

.wlm-btn--primary {
    flex: 1;
    height: 36px;
    border-radius: 999px;
    background-color: #f68627;
    color: #1e1e1e;
    box-shadow: 0 0 20px rgba(246, 134, 39, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.wlm-btn--primary i {
    font-size: 12px;
}
/* ========= A11Y helper ========= */
.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;
}

/* ========= DESKTOP ACCOUNT SIDEBAR ========= */

.account-sidebar {
    width: 256px;
    flex-shrink: 0;
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 16px 0;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    height: 48px;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #dcdbdb;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.account-nav__link:hover {
    background-color: #1e1e1e;
}

.account-nav__link.is-active {
    background-color: #f68627;
    color: #1e1e1e;
}

.account-nav__icon {
    font-size: 14px;
    color: #dcdbdb;
}

.account-nav__link.is-active .account-nav__icon {
    color: #1e1e1e;
}

.account-nav__label {
    line-height: 1;
}

/* ========= MOBILE ACCOUNT TOP BAR & DRAWER ========= */

.accm-bar {
    background-color: #1e1e1e;
    color: #dcdbdb;
    border-bottom: 1px solid #343434;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accm-burger {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #0f0f0f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.accm-burger__line {
    display: block;
    width: 16px;
    height: 2px;
    background-color: #dcdbdb;
    margin: 2px 0;
}

.accm-title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #f68627;
}

.accm-bar__spacer {
    width: 36px; /* supaya title benar2 center */
}

/* overlay */
.accm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 40;
}

.accm-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* drawer */
.accm-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 270px;
    background-color: #0f0f0f;
    border-right: 1px solid #343434;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
    z-index: 50;
    padding-top: 56px;
}

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

.accm-drawer__head {
    padding: 12px 16px;
    border-bottom: 1px solid #343434;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accm-drawer__title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #dcdbdb;
}

.accm-close {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background-color: #1e1e1e;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.accm-close__icon {
    color: #dcdbdb;
    font-size: 18px;
    line-height: 1;
}

/* nav items */
.accm-nav {
    padding: 8px 0 24px;
}

.accm-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    height: 44px;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #dcdbdb;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.accm-nav__link:hover {
    background-color: #1e1e1e;
}

.accm-nav__link.is-active {
    background-color: #f68627;
    color: #1e1e1e;
}

.accm-nav__icon {
    font-size: 14px;
    color: #dcdbdb;
}

.accm-nav__link.is-active .accm-nav__icon {
    color: #1e1e1e;
}

.accm-nav__label {
    line-height: 1;
}
/* ========= DESKTOP: ORDERS ========= */

.orders-empty__card {
    height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.orders-empty__icon {
    font-size: 32px;
    color: #8b9299;
    margin-bottom: 12px;
}

.orders-empty__text {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #8b9299;
}

.orders-table-wrap {
    overflow-x: auto;
    position: relative;
    z-index: 10;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.orders-table thead {
    background-color: #0f0f0f;
    border: 1px solid rgba(220, 219, 219, 0.1);
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
}

.orders-table th,
.orders-table td {
    padding: 12px 24px;
    text-align: left;
}

.orders-table tbody tr + tr td {
    border-top: 1px solid rgba(220, 219, 219, 0.1);
}

.orders-td--strong {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
}

.orders-td--total {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    color: #f68627;
}

/* status chip (dipakai desktop & mobile) */
.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-weight: 500;
    background-color: rgba(139, 146, 153, 0.16);
    color: #dcdbdb;
}

/* contoh status (optional, sesuaikan dengan badge_class dari backend) */
.badge--pending {
    background-color: rgba(246, 134, 39, 0.16);
    color: #f68627;
}

.badge--paid {
    background-color: rgba(46, 204, 113, 0.16);
    color: #2ecc71;
}

.badge--cancelled {
    background-color: rgba(231, 76, 60, 0.16);
    color: #e74c3c;
}

.order-view-link {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #f68627;
    text-decoration: underline;
    position: relative;
    z-index: 1;
}

/* ========= MOBILE: ORDERS ========= */

.ordm-empty__card {
    height: 220px;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    background-color: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ordm-empty__icon {
    font-size: 30px;
    color: #8b9299;
    margin-bottom: 12px;
}

.ordm-empty__text {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #8b9299;
}

.ordm-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ordm-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 14px 16px;
}

.ordm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.ordm-id {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

.ordm-status {
    font-size: 11px;
}

.ordm-date {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #8b9299;
    margin: 0 0 2px;
}

.ordm-items {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #8b9299;
    margin: 0 0 4px;
}

.ordm-total {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #f68627;
    margin: 0 0 10px;
}

.ordm-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid #f68627;
    background-color: #1e1e1e;
    color: #f68627;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(246, 134, 39, 0.3);
}
/* ========== DESKTOP ORDER DETAIL ========== */

.od-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
}

.od-shell {
    max-width: 1280px;
    margin: 96px auto 64px;
    padding: 0 55.5px;
}

.od-back {
    margin-bottom: 12px;
}

.od-back__link {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #8b9299;
    text-decoration: none;
}
.od-back__link:hover {
    text-decoration: underline;
}

.od-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: #dcdbdb;
    margin: 0 0 24px;
}

.od-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

/* stack kalau layar kecil (optional) */
@media (max-width: 1024px) {
    .od-layout {
        flex-direction: column;
    }
}

.od-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.od-item-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.od-thumb {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #1e1e1e;
    flex-shrink: 0;
}

.od-thumb__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.od-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.od-item-name {
    font-family: 'Gotham-Book', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #dcdbdb;
    margin: 0;
}

.od-item-price {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
}

.od-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.od-qtychip {
    min-width: 40px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.od-item-subtotal {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

/* SUMMARY */
.od-summary {
    width: 360px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .od-summary {
        width: 100%;
    }
}

.od-summary-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 24px 24px 22px;
}

.od-summary-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #dcdbdb;
    margin: 0 0 16px;
}

.od-summary-rows {
    font-size: 14px;
}

.od-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.od-summary-row--shipping {
    align-items: flex-start;
}

.od-summary-label {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    color: #8b9299;
}

.od-summary-value {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    color: #dcdbdb;
}

.od-summary-value--multiline {
    text-align: right;
    line-height: 1.4;
}

.od-summary-sep {
    height: 1px;
    background-color: rgba(220, 219, 219, 0.1);
    margin: 16px 0;
}

.od-summary-totalrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.od-summary-total-label {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.od-summary-total-value {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #f68627;
}

/* ========== MOBILE ORDER DETAIL ========== */

.order-detail-m-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
}

.order-detail-m-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 16px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.odm-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.odm-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
    text-decoration: none;
}
.odm-back:hover {
    text-decoration: underline;
}

.odm-back__icon {
    font-size: 16px;
}

.odm-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #dcdbdb;
    margin: 0;
}

.odm-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.odm-item-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.odm-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background-color: #1e1e1e;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.odm-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.odm-item-name {
    font-family: 'Gotham-Book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #dcdbdb;
    margin: 0;
}

.odm-item-price {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
}

.odm-item-qty {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #dcdbdb;
}

.odm-item-subtotal {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #dcdbdb;
}

/* SUMMARY MOBILE */
.odm-summary-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 16px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.odm-summary-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #dcdbdb;
    margin: 0;
}

.odm-summary-rows {
    font-size: 14px;
}

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

.odm-summary-row--shipping {
    align-items: flex-start;
    margin-bottom: 10px;
}

.odm-summary-label {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    color: #8b9299;
}

.odm-summary-value {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    color: #dcdbdb;
}

.odm-summary-value--multiline {
    text-align: right;
    line-height: 1.4;
}

.odm-summary-sep {
    height: 1px;
    background-color: rgba(220, 219, 219, 0.1);
}

.odm-summary-totalrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.odm-summary-total-label {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.odm-summary-total-value {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #f68627;
}
/* ========== CART DESKTOP ========== */

.cart-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
}

.cart-shell {
    max-width: 1280px;
    margin: 96px auto 64px;
    padding: 0 55.5px;
}

.cart-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: #dcdbdb;
    margin: 0 0 24px;
}

.cart-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width: 1024px) {
    .cart-layout {
        flex-direction: column;
    }
}

.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-thumb {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #1e1e1e;
    flex-shrink: 0;
}

.cart-thumb__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cart-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    margin: 0;
    font-family: 'Gotham-Book', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #dcdbdb;
}

.cart-item-price {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-remove-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}
.cart-remove-btn img {
    width: 14px;
    height: 14px;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    font-size: 12px;
    color: #dcdbdb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-qty-value {
    min-width: 32px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-total {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

/* SUMMARY */
.cart-summary {
    width: 360px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .cart-summary {
        width: 100%;
    }
}

.cart-summary-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 24px 24px 22px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

.cart-summary-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #dcdbdb;
    margin: 0 0 16px;
}

.cart-summary-rows {
    font-size: 14px;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-summary-label {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    color: #8b9299;
}

.cart-summary-value {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    color: #dcdbdb;
}

.cart-summary-sep {
    height: 1px;
    background-color: rgba(220, 219, 219, 0.1);
    margin: 16px 0;
}

.cart-summary-totalrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary-total-label {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.cart-summary-total-value {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #f68627;
}

.cart-place-btn {
    margin-top: 20px;
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: none;
    background-color: #f68627;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cart-place-btn span {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #1e1e1e;
}

/* PAYMENT CARD DESKTOP */
.cart-paycard {
    margin-top: 24px;
    border-radius: 18px;
    border: 1px solid #f68627;
    background-color: #0f0f0f;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.25);
}

.cart-paycard-inner {
    padding: 16px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-paycard-title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
    margin: 0;
}

.cart-paycard-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-paycard-label {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #dcdbdb;
    margin: 0;
}

.cart-paycard-input {
    height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-paycard-input-text {
    flex: 1;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
    letter-spacing: -0.2px;
}

.cart-paycard-copy {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #343434;
    background-color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cart-paycard-copy img {
    width: 16px;
    height: 16px;
}

.cart-paycard-contacts {
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-paycard-contactrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    color: #dcdbdb;
}
.cart-paycard-contactrow img {
    width: 16px;
    height: 16px;
}

/* ========== CART MOBILE ========== */

.cart-m-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
}

.cart-m-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 16px 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-m-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #dcdbdb;
    margin: 0;
}

.cart-m-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-m-item-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-m-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background-color: #1e1e1e;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.cart-m-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-m-item-top {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.cart-m-item-name {
    flex: 1;
    margin: 0;
    font-family: 'Gotham-Book', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #dcdbdb;
}

.cart-m-remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}
.cart-m-remove-btn img {
    width: 12px;
    height: 12px;
}

.cart-m-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cart-m-item-price {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
}

.cart-m-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-m-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    font-size: 11px;
    color: #dcdbdb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-m-qty-value {
    min-width: 30px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SUMMARY MOBILE */
.cart-m-summary-card {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 16px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-m-summary-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #dcdbdb;
    margin: 0;
}

.cart-m-summary-rows {
    font-size: 14px;
}

.cart-m-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cart-m-summary-label {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    color: #8b9299;
}

.cart-m-summary-value {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    color: #dcdbdb;
}

.cart-m-summary-sep {
    height: 1px;
    background-color: rgba(220, 219, 219, 0.1);
}

.cart-m-summary-totalrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-m-summary-total-label {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.cart-m-summary-total-value {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #f68627;
}

.cart-m-place-btn {
    margin-top: 8px;
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: none;
    background-color: #f68627;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cart-m-place-btn span {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #1e1e1e;
}

/* PAYMENT CARD MOBILE */
.cart-m-paycard {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid #f68627;
    background-color: #0f0f0f;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.25);
}

.cart-m-paycard-inner {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-m-paycard-title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
    margin: 0;
}

.cart-m-paycard-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-m-paycard-label {
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #dcdbdb;
    margin: 0;
}

.cart-m-paycard-input {
    height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid #343434;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-m-paycard-input-text {
    flex: 1;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
    letter-spacing: -0.2px;
}

.cart-m-paycard-copy {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #343434;
    background-color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cart-m-paycard-copy img {
    width: 16px;
    height: 16px;
}

.cart-m-paycard-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
}

.cart-m-paycard-contactrow {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    color: #dcdbdb;
}
.cart-m-paycard-contactrow img {
    width: 16px;
    height: 16px;
}


/* ========== PAYMENT PROOF DESKTOP ========== */

.pay-page {
    background-color: #1e1e1e;
    color: #dcdbdb;
    min-height: 100vh;
}

.pay-shell {
    max-width: 1280px;
    margin: 96px auto 64px;
    padding: 0 55.5px;
}

.pay-title {
    font-family: 'Gotham-Bold', Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: #dcdbdb;
    margin: 0 0 24px;
}

.pay-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 32px;
}

@media (max-width: 1024px) {
    .pay-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Left card */
.pay-maincard {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Order mini card */
.pay-ordercard {
    background-color: #181818;
    border-radius: 18px;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    font-size: 14px;
}

.pay-ordercard-left,
.pay-ordercard-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-ordercard-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pay-ordercard-block--right {
    text-align: right;
}

.pay-ordercard-label {
    margin: 0;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #8b9299;
}

.pay-ordercard-value {
    margin: 0;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.pay-ordercard-amount {
    margin: 0;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f68627;
}

.pay-ordercard-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 12px;
    background-color: #2b2b2b;
    border: 1px solid #343434;
}

.pay-ordercard-status-text {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #dcdbdb;
}

/* Upload box */
.pay-uploadbox {
    border-radius: 18px;
    border: 1px solid #f68627;
    background-color: #1a120b;
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.25);
}

.pay-upload-iconwrap {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background-color: #0f0f0f;
    border: 1px solid #f68627;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.pay-upload-iconwrap img {
    width: 24px;
    height: 24px;
}

.pay-upload-title {
    margin: 0 0 4px;
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
}

.pay-upload-sub {
    margin: 0 0 6px;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #dcdbdb;
    opacity: 0.8;
}

.pay-upload-help {
    margin: 0;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #8b9299;
}

.pay-upload-form {
    margin-top: 20px;
}

.pay-upload-choose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    border-radius: 999px;
    background-color: #f68627;
    box-shadow: 0 0 20px rgba(246, 134, 39, 0.5);
    cursor: pointer;
}
.pay-upload-choose span {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #1e1e1e;
    letter-spacing: -0.15px;
}

.pay-upload-input {
    display: none;
}

/* Submit button */
.pay-submit-wrap {
    padding-top: 4px;
}

.pay-submit-btn {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: none;
    background-color: #f68627;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pay-submit-btn span {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #1e1e1e;
}

/* Right aside */
.pay-aside {
    background-color: #0f0f0f;
    border-radius: 18px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 20px 24px 22px;
}

.pay-aside-title {
    font-family: 'Gotham-Medium', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
    margin: 0 0 12px;
}

.pay-aside-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-family: 'Gotham-Light', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #dcdbdb;
    line-height: 1.6;
}
.pay-aside-list li {
    margin-bottom: 6px;
}

/* =========================
   ACCOUNT LAYOUT (DESKTOP)
   ========================= */
.account-page {
    background: #1e1e1e;
    color: #ffffff;
    min-height: 100vh;
    padding-top: 96px;
    padding-bottom: 80px;
}

.account-page__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 55.5px;
    display: flex;
    gap: 40px;
}

.account-page__main {
    flex: 1;
}

.account-page__title {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin-bottom: 24px;
    color: #dcdbdb;
}

/* =========================
   PROFILE CARD
   ========================= */
.profile-card {
    background: #0f0f0f;
    border-radius: 20px;
    border: 1px solid rgba(220, 219, 219, 0.1);
    padding: 32px 32px 28px;
    /* HAPUS max-width: 640px; */
    width: 100%;          /* biar full seperti card lain */
    box-sizing: border-box;
}


.profile-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.profile-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-form__label {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f5f5f5;
}

.profile-form__input,
.profile-form__textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #343434;
    background: #171717;
    color: #f5f5f5;
    padding: 10px 18px;
    font-size: 14px;
    font-family: "Gotham-Book", Helvetica, Arial, sans-serif;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.profile-form__textarea {
    border-radius: 18px;
    resize: vertical;
    min-height: 84px;
    line-height: 1.5;
}

.profile-form__input::placeholder,
.profile-form__textarea::placeholder {
    color: #7c838a;
}

.profile-form__input:focus,
.profile-form__textarea:focus {
    border-color: #f68627;
    box-shadow: 0 0 0 1px rgba(246, 134, 39, 0.35);
    background-color: #151515;
}

.profile-form__input--readonly {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =========================
   BUTTON
   ========================= */
.profile-form__actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
}

.btn-primary-glow {
    min-width: 220px;
    height: 44px;
    padding: 0 32px;
    border-radius: 999px;
    border: none;
    background: #f68627;
    color: #1e1e1e;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn-primary-glow:hover {
    background: #ff8f2c;
    box-shadow: 0 0 26px rgba(246, 134, 39, 0.6);
    transform: translateY(-1px);
}

.btn-primary-glow:active {
    transform: translateY(0);
    box-shadow: 0 0 18px rgba(246, 134, 39, 0.35);
}

/* =======================================================
   ACCOUNT DESKTOP LAYOUT (profile / orders / wishlist / loyalty)
   ======================================================= */

.account-page {
    background: #1e1e1e;
    color: #ffffff;
    min-height: 100vh;
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 96px;
}

.account-layout {
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

/* Sidebar pakai partial account-sidebar yang sudah ada */
.account-main {
    flex: 1;
    min-width: 0;
}

.account-title {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 24px;
    color: #dcdbdb;
    margin: 0 0 8px;
}

.account-intro {
    font-size: 13px;
    color: rgba(220, 219, 219, 0.7);
    margin: 0 0 24px;
}

/* ======================================
   LOYALTY HERO (DESKTOP)
   ====================================== */

.loyalty-hero {
    border-radius: 28px;
    padding: 24px 28px;
    background: radial-gradient(130% 180% at 0% 0%, #f9a43a 0%, #f68627 40%, #181818 85%);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.loyalty-hero-col {
    flex: 1;
    min-width: 0;
}

/* Col: Balance */
.loyalty-hero-col--balance {
    display: flex;
    align-items: center;
    gap: 16px;
}

.loyalty-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.loyalty-hero-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.loyalty-hero-balance {
    font-family: "Gotham-Bold", Helvetica, Arial, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.loyalty-hero-balance-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* Col: Current tier */
.loyalty-hero-col--current {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.loyalty-hero-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.loyalty-hero-tier-name {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    color: #f5f5f5;
}

.loyalty-hero-tier-name--gold {
    color: #ffd76c;
}

.loyalty-hero-text {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

/* Col: Next tier */
.loyalty-hero-col--next {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.loyalty-hero-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.loyalty-hero-progress-bar {
    height: 6px;
    border-radius: 999px;
    background: #f6b05c;
}
/* ===== LOYALTY DESKTOP HERO ===== */
.loyalty-hero {
    width: 100%;
    border-radius: 28px;
    padding: 24px 32px;
    margin-bottom: 20px;
    background: radial-gradient(120% 200% at 0% 0%, #f9a43a 0%, #f68627 40%, #181818 90%);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}

.loyalty-hero__row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.loyalty-hero__left,
.loyalty-hero__center,
.loyalty-hero__right {
    flex: 1;
    min-width: 0;
}

.loyalty-hero__icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.loyalty-hero__icon img {
    width: 26px;
    height: 26px;
}

.loyalty-hero__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 4px;
}

.loyalty-hero__balance {
    font-family: "Gotham-Bold", Helvetica, Arial, sans-serif;
    font-size: 28px;
    margin: 0;
    color: #ffffff;
}

.loyalty-hero__subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 4px;
}

.loyalty-hero__tier-name {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #f5f5f5;
    margin: 0 0 4px;
}

.loyalty-hero__tier-name--gold {
    color: #ffd76c;
}

.loyalty-hero__text {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.loyalty-hero__text--muted {
    color: rgba(255, 255, 255, 0.75);
}

.loyalty-hero__progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #111111;
    overflow: hidden;
    margin: 10px 0 4px;
}

.loyalty-hero__progress-bar {
    height: 6px;
    border-radius: 999px;
    background: #f68627;
}

/* ===== LOYALTY TABS (DESKTOP) ===== */
.loyalty-tabs {
    margin: 18px 0 10px;
}

.loyalty-tabs__inner {
    display: inline-flex;
    border-radius: 999px;
    background: #111111;
    padding: 4px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}

.loyalty-tab {
    min-width: 110px;
    padding: 8px 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #e3e3e3;
    cursor: pointer;
}

.loyalty-tab.is-active {
    background: #f68627;
    color: #111111;
    box-shadow: 0 0 16px rgba(246, 134, 39, 0.55);
}

/* panel wrapper */
.loyalty-panels {
    margin-top: 6px;
}

/* helper (sama kayak mobile) */
.d-none {
    display: none !important;
}
/* ======================================
   LOYALTY – SECTION TITLE
   ====================================== */
.loyalty-section-title {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #dcdbdb;
    margin: 24px 0 14px;
}

/* ======================================
   MEMBERSHIP TIERS (tab EARN)
   ====================================== */
.loyalty-tiers {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.loyalty-tier-card {
    border-radius: 20px;
    background: #141414;
    border: 1px solid #262626;
    padding: 16px 18px 14px;
}

.loyalty-tier-card--current {
    border-color: #f68627;
    box-shadow: 0 0 18px rgba(246, 134, 39, 0.3);
}

.loyalty-tier-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.loyalty-tier-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.loyalty-tier-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.loyalty-tier-name {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f5f5f5;
    margin: 0;
}

.loyalty-tier-threshold {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #b6b6b6;
    margin: 2px 0 0;
}

.loyalty-tier-chip {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 999px;
    background: #f68627;
    color: #111111;
}

.loyalty-tier-body ul {
    margin: 0;
    padding-left: 18px;
}

.loyalty-tier-body li {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #e2e2e2;
    margin-bottom: 4px;
}

/* ======================================
   WAYS TO EARN (tab EARN bawah)
   ====================================== */
.loyalty-earn-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 6px;
}

.loyalty-earn-card {
    border-radius: 20px;
    background: #141414;
    border: 1px solid #262626;
    padding: 14px 16px;
}

.loyalty-earn-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.loyalty-earn-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.loyalty-earn-title {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f5f5f5;
    margin: 0 0 2px;
}

.loyalty-earn-desc {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #d1d1d1;
    line-height: 1.5;
    margin: 0;
}

.loyalty-earn-boost {
    margin-top: 8px;
    text-align: right;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #f6b05c;
}

/* ======================================
   REDEEM GRID (tab REDEEM)
   ====================================== */
.loyalty-redeem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 8px;
}

.loyalty-redeem-card {
    border-radius: 20px;
    background: #141414;
    border: 1px solid #262626;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.loyalty-redeem-img {
    height: 160px;
    background: #222;
    background-size: cover;
    background-position: center;
}

.loyalty-redeem-body {
    padding: 10px 14px 14px;
}

.loyalty-redeem-tag {
    display: inline-block;
    font-size: 11px;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    padding: 3px 9px;
    border-radius: 999px;
    background: #242424;
    color: #d3d3d3;
    margin-bottom: 6px;
}

.loyalty-redeem-name {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f5f5f5;
    margin: 0 0 10px;
}

.loyalty-redeem-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loyalty-redeem-points {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #f6b05c;
}

.loyalty-redeem-btn {
    min-width: 96px;
    height: 32px;
    border-radius: 999px;
    border: none;
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 12px;
    background: #f68627;
    color: #111111;
    cursor: pointer;
}

/* ======================================
   HISTORY LIST (tab HISTORY)
   ====================================== */
.loyalty-history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.loyalty-history-item {
    border-radius: 16px;
    background: #141414;
    border: 1px solid #262626;
    padding: 10px 14px;
}

.loyalty-history-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.loyalty-history-title {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: #f5f5f5;
}

.loyalty-history-points {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.loyalty-history-points--plus {
    color: #7ed957;
}

.loyalty-history-points--minus {
    color: #ff6b6b;
}

.loyalty-history-meta {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #b6b6b6;
}

/* helper (kalau belum ada) */
.d-none {
    display: none !important;
}

/* =========================
   AFTER-SALES (DESKTOP)
   ========================= */

.aftersales-card {
    background: #0f0f0f;
    border-radius: 20px;
    border: 1px solid rgba(220, 219, 219, 0.12);
    padding: 28px 32px 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.55);
    box-sizing: border-box;
    width: 100%;
}

.aftersales-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* pakai profile-form__group / label / input / textarea
   supaya konsisten dengan Profile Settings */

.aftersales-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.aftersales-select-wrap select.profile-form__input {
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.aftersales-select__icon {
    position: absolute;
    right: 16px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #9da3ac;
}

.aftersales-select__icon svg {
    width: 16px;
    height: 16px;
}

/* Upload area */
.aftersales-upload {
    margin-top: 4px;
}

.afthersales-upload__label {
    margin-bottom: 10px;
}

.aftersales-upload-box {
    display: block;
    width: 100%;
    border-radius: 24px;
    border: 1px solid #f68627;
    background: #1a120b;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 0 24px rgba(246, 134, 39, 0.45);
    cursor: pointer;
}

.aftersales-upload-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.aftersales-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #0f0f0f;
    border: 1px solid #f68627;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.aftersales-upload-icon-arrow {
    font-size: 26px;
    color: #f68627;
    transform: translateY(-2px);
}

.aftersales-upload-title {
    font-family: "Gotham-Medium", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f5f5f5;
}

.aftersales-upload-subtitle {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #dcdbdb;
    opacity: 0.85;
}

.aftersales-upload-note {
    font-family: "Gotham-Light", Helvetica, Arial, sans-serif;
    font-size: 11px;
    color: #8b9299;
    margin-top: 4px;
}

.aftersales-upload-input {
    display: none;
}

.aftersales-form__actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}
