/* ============================================================
   Toko Online House of Elmarie — shop-theme.css
   Arah: butik lembut & feminin (ref. ATKEY) dgn identitas Elmarie:
   ivory petal + plum tua + burgundy rose + blush + emas.
   Display: Cormorant Garamond (serif italic) · Body: Plus Jakarta Sans.
   Signature: bingkai foto lengkung (arch) + tombol pill + cart bar float.
   Mobile-first.
   ============================================================ */

:root {
  --sh-bg: #fbf3f1;            /* ivory petal */
  --sh-surface: #fffdfc;
  --sh-ink: #3f222b;           /* plum tua */
  --sh-ink-soft: #96707c;      /* mauve */
  --sh-brand: #8c2f4e;         /* burgundy rose */
  --sh-brand-deep: #5f1f36;
  --sh-blush: #f6e2de;         /* isi lembut */
  --sh-line: #eed9d4;          /* garis blush */
  --sh-gold: #bd9a55;
  --sh-gold-soft: #f4ead6;
  --sh-danger: #b3324b;
  --sh-ok: #2f7d52;
  --sh-radius: 16px;
  --sh-pill: 999px;
  --sh-shadow: 0 1px 3px rgba(63, 34, 43, .06);
  --sh-shadow-lift: 0 10px 26px rgba(63, 34, 43, .12);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--sh-bg);
  color: var(--sh-ink);
  font-size: 15px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.shop-app { min-height: 100vh; display: flex; flex-direction: column; }

/* ── Banner + header ── */
.shop-banner {
  background: var(--sh-brand-deep);
  color: #f7e3de;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.shop-header {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251, 243, 241, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sh-line);
  padding: 10px 18px;
}
.shop-header-spacer, .shop-cart-btn { width: 44px; flex: 0 0 44px; }
.shop-logo { text-align: center; line-height: 1.05; }
.shop-logo-pre {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sh-brand);
}
.shop-logo-main {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  margin-right: -.34em; /* koreksi tracking huruf terakhir agar tetap center */
}
.shop-cart-btn { position: relative; font-size: 18px; text-align: right; padding: 6px 4px; color: var(--sh-brand-deep); }
.shop-cart-badge {
  position: absolute; top: -3px; right: -5px;
  background: var(--sh-brand); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 17px; height: 17px; line-height: 17px;
  border-radius: var(--sh-pill); text-align: center; padding: 0 4px;
}

.shop-main { flex: 1; width: 100%; max-width: 1080px; margin: 0 auto; padding: 18px 16px 84px; }

/* ── Hero (signature: arch) ── */
.shop-hero {
  display: grid; gap: 24px; align-items: center;
  padding: 26px 6px 34px;
}
@media (min-width: 780px) { .shop-hero { grid-template-columns: 6fr 5fr; padding: 44px 10px 54px; gap: 40px; } }
.shop-hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: 12px;
}
.shop-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(34px, 6vw, 52px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.shop-hero-title em { font-style: italic; color: var(--sh-brand); }
.shop-hero-sub { font-size: 15px; color: var(--sh-ink-soft); max-width: 420px; margin-bottom: 22px; }
.shop-hero-visual { display: flex; justify-content: center; }
.shop-hero-img {
  width: min(78vw, 340px);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--sh-pill) var(--sh-pill) var(--sh-radius) var(--sh-radius);
  border: 6px solid var(--sh-surface);
  box-shadow: var(--sh-shadow-lift);
  background: var(--sh-blush);
}
.shop-hero-mono {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 120px; color: var(--sh-brand);
}
.shop-arch img, img.shop-arch {
  border-radius: var(--sh-pill) var(--sh-pill) var(--sh-radius) var(--sh-radius);
}
.shop-arch { border-radius: var(--sh-pill) var(--sh-pill) var(--sh-radius) var(--sh-radius); }
@media (prefers-reduced-motion: no-preference) {
  .shop-hero-text, .shop-hero-visual { animation: shopRise .7s cubic-bezier(.2,.7,.3,1) both; }
  .shop-hero-visual { animation-delay: .12s; }
  @keyframes shopRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
}

/* ── Footer + WA float ── */
.shop-footer {
  border-top: 1px solid var(--sh-line);
  text-align: center;
  font-size: 12px;
  color: var(--sh-ink-soft);
  padding: 20px 14px calc(20px + env(safe-area-inset-bottom));
}
.shop-footer a { text-decoration: underline; text-underline-offset: 3px; }
.shop-wa-float {
  position: fixed; right: 16px; bottom: 20px; z-index: 50;
  width: 50px; height: 50px; border-radius: var(--sh-pill);
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: var(--sh-shadow-lift);
}

/* ── Cart bar mengambang ── */
.shop-cartbar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 60;
  width: min(560px, calc(100vw - 92px));
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--sh-brand-deep); color: #fbeae6;
  border-radius: var(--sh-pill);
  padding: 12px 8px 12px 20px;
  box-shadow: var(--sh-shadow-lift);
  font-size: 13px;
}
.shop-cartbar-info strong { color: #fff; }
.shop-cartbar-cta {
  background: #fff; color: var(--sh-brand-deep);
  font-weight: 700; font-size: 13px;
  border-radius: var(--sh-pill);
  padding: 9px 16px;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}

/* ── Empty state ── */
.shop-empty { text-align: center; padding: 70px 20px; color: var(--sh-ink-soft); }
.shop-empty i { font-size: 40px; color: var(--sh-brand); opacity: .5; margin-bottom: 14px; }
.shop-empty-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--sh-ink); margin-bottom: 6px; }
.shop-empty-msg { font-size: 14px; }

/* ── Tombol (pill) ── */
.shop-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid var(--sh-brand-deep);
  border-radius: var(--sh-pill);
  background: var(--sh-surface);
  color: var(--sh-brand-deep);
  font-size: 14px; font-weight: 600;
  padding: 12px 22px;
  cursor: pointer;
  transition: background .15s, color .15s, opacity .15s, transform .15s;
}
.shop-btn:active { transform: scale(.98); }
.shop-btn-primary { background: var(--sh-brand); border-color: var(--sh-brand); color: #fff; }
.shop-btn-primary:hover { background: var(--sh-brand-deep); border-color: var(--sh-brand-deep); }
.shop-btn-gold { background: var(--sh-gold); border-color: var(--sh-gold); color: #fff; }
.shop-btn-block { display: flex; width: 100%; }
.shop-btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ── Alert ── */
.shop-alert {
  border-radius: var(--sh-radius);
  padding: 12px 14px;
  font-size: 14px;
  margin-bottom: 14px;
  display: flex; gap: 10px; align-items: flex-start;
}
.shop-alert.error { background: #fde4e6; color: var(--sh-danger); }
.shop-alert.ok { background: #ddf0e4; color: var(--sh-ok); }

/* ── Search + chips ── */
.shop-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-pill);
  padding: 11px 18px;
  margin-bottom: 12px;
  color: var(--sh-ink-soft);
}
.shop-search input { border: 0; outline: 0; flex: 1; font: inherit; background: transparent; color: var(--sh-ink); }
.shop-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.shop-chip {
  border: 1px solid var(--sh-line);
  background: var(--sh-surface);
  border-radius: var(--sh-pill);
  padding: 7px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--sh-ink-soft);
  transition: all .15s;
}
.shop-chip:hover { border-color: var(--sh-brand); color: var(--sh-brand); }
.shop-chip.active { background: var(--sh-brand); border-color: var(--sh-brand); color: #fff; }

/* ── Grid produk ── */
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 720px)  { .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1000px) { .shop-grid { grid-template-columns: repeat(4, 1fr); } }
.shop-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  overflow: hidden;
  box-shadow: var(--sh-shadow);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--sh-shadow-lift); }
.shop-card.soldout { opacity: .55; }
.shop-card-img { position: relative; aspect-ratio: 3/4; background: var(--sh-blush); overflow: hidden; }
/* Foto katalog bersih lebih tinggi dari 3:4 — anchor agak ke atas supaya
   kerah/baju selalu terlihat (yang terpangkas cuma ujung celana) */
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transition: transform .45s cubic-bezier(.2,.7,.3,1); }
.shop-card:hover .shop-card-img img { transform: scale(1.05); }
.shop-card-noimg {
  width: 100%; height: 100%; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  color: #d8b7ae; font-size: 34px;
}
.shop-card-noimg.big { aspect-ratio: 4/5; font-size: 56px; background: var(--sh-blush); }
.shop-card-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--sh-pill); padding: 4px 10px;
}
.shop-card-badge.low { background: var(--sh-gold-soft); color: #8a6c2e; }
.shop-card-badge.out { background: #efe6e3; color: var(--sh-ink-soft); }
.shop-card-badge.inline { position: static; display: inline-block; margin-bottom: 8px; }
.shop-card-body { padding: 11px 13px 14px; }
.shop-card-name { font-size: 13px; font-weight: 500; line-height: 1.4; margin-bottom: 4px; }
.shop-card-price { font-size: 14px; font-weight: 700; color: var(--sh-brand); }

/* ── Halaman produk ── */
.shop-crumb { font-size: 12px; color: var(--sh-ink-soft); margin-bottom: 16px; display: flex; gap: 8px; align-items: center; }
.shop-crumb i { font-size: 9px; }
.shop-crumb a { text-decoration: underline; text-underline-offset: 3px; }
.shop-product { display: grid; gap: 26px; }
@media (min-width: 820px) { .shop-product { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: start; gap: 40px; } }
/* Foto produk sudah dibersihkan (crop ke area produk; sudut atas = latar
   krem kosong) → arch penuh aman, gambar tampil UTUH tanpa crop tampilan. */
.shop-product-img {
  overflow: hidden; background: var(--sh-blush);
  border: 6px solid var(--sh-surface);
  box-shadow: var(--sh-shadow-lift);
  max-width: 440px; margin: 0 auto;
}
.shop-product-img img { width: 100%; height: auto; }
.shop-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.4vw, 38px); font-weight: 600; line-height: 1.12;
  margin-bottom: 6px;
}
.shop-product-price { font-size: 21px; font-weight: 700; color: var(--sh-brand); margin-bottom: 16px; }
.shop-opt-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sh-ink-soft); margin: 16px 0 8px; }
.shop-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.shop-opt {
  border: 1.5px solid var(--sh-line);
  background: var(--sh-surface);
  border-radius: var(--sh-pill);
  padding: 9px 18px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}
.shop-opt:hover { border-color: var(--sh-brand); }
.shop-opt.active { border-color: var(--sh-brand); background: var(--sh-brand); color: #fff; }
.shop-opt.out { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.shop-opt-hint { font-size: 13px; color: var(--sh-ink-soft); }
.shop-qty { display: flex; align-items: center; }
.shop-qty input {
  width: 52px; text-align: center;
  border: 1.5px solid var(--sh-line); border-left: 0; border-right: 0;
  padding: 9px 0; font: inherit; font-weight: 700; background: var(--sh-surface);
}
.shop-qty-btn {
  border: 1.5px solid var(--sh-line);
  background: var(--sh-surface);
  width: 40px; height: 40px;
  cursor: pointer; font-size: 12px; color: var(--sh-brand-deep);
}
.shop-qty-btn:first-child { border-radius: var(--sh-pill) 0 0 var(--sh-pill); }
.shop-qty-btn:nth-of-type(2) { border-radius: 0 var(--sh-pill) var(--sh-pill) 0; }
.shop-qty.small input { width: 40px; padding: 6px 0; font-size: 13px; }
.shop-qty.small .shop-qty-btn { width: 30px; height: 30px; font-size: 10px; }
.shop-stok-note { margin-left: 12px; font-size: 12px; color: var(--sh-ink-soft); }
.shop-product-cta { display: grid; gap: 8px; margin-top: 20px; }
@media (min-width: 480px) { .shop-product-cta { grid-template-columns: 1fr 1fr; } }
.shop-detail { margin-top: 24px; border-top: 1px solid var(--sh-line); padding-top: 18px; }
.shop-detail-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sh-ink-soft); margin-bottom: 10px; }
.shop-detail-desc { font-size: 14px; color: var(--sh-ink-soft); margin-bottom: 10px; }
.shop-detail-row { display: flex; justify-content: space-between; gap: 14px; font-size: 13px; padding: 7px 0; border-bottom: 1px dashed var(--sh-line); }
.shop-detail-row span:first-child { color: var(--sh-ink-soft); }
.shop-ship-note {
  margin-top: 20px; font-size: 13px; color: #7b5a34;
  background: var(--sh-gold-soft); border-radius: var(--sh-radius);
  padding: 12px 15px; display: flex; gap: 10px; align-items: flex-start;
}
.shop-ship-note i { color: var(--sh-gold); margin-top: 2px; }

/* ── Judul halaman ── */
.shop-page-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; margin-bottom: 18px; }

/* ── Keranjang ── */
.shop-cart-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.shop-cart-row {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 12px;
}
.shop-cart-thumb { width: 74px; flex: 0 0 74px; aspect-ratio: 3/4; border-radius: 12px; overflow: hidden; background: var(--sh-blush); }
.shop-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-cart-mid { flex: 1; min-width: 0; }
.shop-cart-name { font-size: 14px; font-weight: 600; }
.shop-cart-variant { font-size: 12px; color: var(--sh-ink-soft); margin: 2px 0 4px; }
.shop-cart-price { font-size: 14px; font-weight: 700; color: var(--sh-brand); }
.shop-cart-warn { font-size: 12px; color: var(--sh-danger); margin-top: 4px; }
.shop-cart-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.shop-cart-del { border: 0; background: none; color: var(--sh-ink-soft); font-size: 12px; cursor: pointer; }
.shop-cart-del:hover { color: var(--sh-danger); }

/* ── Ringkasan ── */
.shop-summary-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 16px;
  box-shadow: var(--sh-shadow);
}
.shop-summary-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 6px 0; }
.shop-summary-row.muted { color: var(--sh-ink-soft); font-size: 13px; }
.shop-summary-row.total { border-top: 1px solid var(--sh-line); margin-top: 6px; padding-top: 12px; font-size: 15px; margin-bottom: 12px; }
.shop-summary-row.total strong { font-size: 18px; color: var(--sh-brand); }

/* ── Checkout ── */
.shop-checkout { display: grid; gap: 16px; }
@media (min-width: 900px) { .shop-checkout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; } }
.shop-co-main { display: flex; flex-direction: column; gap: 16px; }
.shop-co-side { position: sticky; top: 86px; }
.shop-co-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 18px;
  box-shadow: var(--sh-shadow);
  margin-bottom: 14px;
}
.shop-co-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sh-brand); margin-bottom: 14px; }
.shop-field { display: block; margin-bottom: 12px; }
.shop-field > span { display: block; font-size: 12px; font-weight: 600; color: var(--sh-ink-soft); margin-bottom: 5px; }
.shop-field > span em { font-weight: 400; font-style: normal; }
.shop-field input, .shop-field textarea {
  width: 100%;
  border: 1.5px solid var(--sh-line);
  border-radius: 12px;
  padding: 11px 13px;
  font: inherit; font-size: 14px;
  background: var(--sh-bg);
  transition: border-color .15s;
}
.shop-field input:focus, .shop-field textarea:focus { outline: none; border-color: var(--sh-brand); background: var(--sh-surface); }
.shop-area-wrap { position: relative; }
.shop-area-drop {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 30;
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: 12px;
  box-shadow: var(--sh-shadow-lift);
  max-height: 240px; overflow-y: auto;
}
.shop-area-opt {
  display: block; width: 100%; text-align: left;
  border: 0; background: none; cursor: pointer;
  padding: 11px 13px; font-size: 13px;
  border-bottom: 1px solid var(--sh-line);
}
.shop-area-opt:hover { background: var(--sh-blush); }
.shop-rate-empty { font-size: 13px; color: var(--sh-ink-soft); }
.shop-rate-list { display: flex; flex-direction: column; gap: 8px; }
.shop-rate-opt {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--sh-line);
  border-radius: 12px;
  padding: 12px 13px;
  cursor: pointer;
  transition: all .15s;
}
.shop-rate-opt:hover { border-color: var(--sh-brand); }
.shop-rate-opt:has(input:checked) { border-color: var(--sh-brand); background: var(--sh-blush); }
.shop-rate-opt input { accent-color: var(--sh-brand); }
.shop-rate-main { flex: 1; display: flex; flex-direction: column; }
.shop-rate-main small { color: var(--sh-ink-soft); font-size: 12px; }
.shop-rate-main strong { font-size: 13px; }
.shop-rate-badge {
  display: inline-block; margin-top: 2px; align-self: flex-start;
  background: var(--sh-gold-soft); color: #8a6c2e;
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--sh-pill); padding: 2px 8px;
}
.shop-rate-price { font-size: 14px; font-weight: 700; color: var(--sh-brand); }
.shop-pay-info { display: flex; gap: 12px; font-size: 13px; align-items: flex-start; }
.shop-pay-info > i { color: var(--sh-gold); font-size: 20px; margin-top: 2px; }
.shop-pay-note { color: var(--sh-ink-soft); font-size: 12px; margin-top: 4px; }
.shop-side-item { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 5px 0; }
.shop-side-item small { display: block; color: var(--sh-ink-soft); }
.shop-secure-note { text-align: center; font-size: 11px; color: var(--sh-ink-soft); margin-top: 10px; }

/* ── Halaman order ── */
.shop-pay-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--sh-shadow);
  margin-bottom: 14px;
}
.shop-pay-head { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.shop-pay-head i { color: var(--sh-gold); }
.shop-countdown {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 600; color: var(--sh-brand);
  font-variant-numeric: tabular-nums; line-height: 1.1;
}
.shop-pay-sub { font-size: 13px; color: var(--sh-ink-soft); margin: 8px 0 16px; }
.shop-timeline { display: flex; align-items: flex-start; justify-content: center; margin: 22px 0 26px; }
.shop-step { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 74px; }
.shop-step-dot {
  width: 42px; height: 42px; border-radius: var(--sh-pill);
  background: var(--sh-surface); border: 2px solid var(--sh-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--sh-ink-soft); font-size: 15px;
}
.shop-step.done .shop-step-dot { background: var(--sh-brand); border-color: var(--sh-brand); color: #fff; }
.shop-step-label { font-size: 11px; font-weight: 600; color: var(--sh-ink-soft); }
.shop-step.done .shop-step-label { color: var(--sh-brand-deep); }
.shop-step-line { flex: 1; max-width: 60px; height: 2px; background: var(--sh-line); margin-top: 20px; }
.shop-step-line.done { background: var(--sh-brand); }
.shop-resi-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  background: var(--sh-blush);
  border-radius: var(--sh-radius);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.shop-resi-label { display: block; font-size: 12px; color: var(--sh-ink-soft); }
.shop-resi-no { font-size: 16px; letter-spacing: .05em; }
.shop-addr { font-size: 14px; line-height: 1.65; }

/* ── Trust strip (bawah hero) ── */
.shop-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
  padding: 13px 10px;
  margin: 0 0 22px;
  font-size: 12.5px; font-weight: 500;
  color: var(--sh-ink-soft);
}
.shop-trust i { color: var(--sh-gold); margin-right: 6px; }

/* ── Footer butik ── */
.shop-footer2 {
  border-top: 1px solid var(--sh-line);
  background: var(--sh-surface);
  margin-top: 30px;
}
.shop-footer2-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 34px 20px 24px;
  display: grid; gap: 28px;
}
@media (min-width: 780px) { .shop-footer2-inner { grid-template-columns: 6fr 3fr 3fr; align-items: start; gap: 36px; } }
.shop-footer2-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.shop-footer2-brand p { font-size: 13px; color: var(--sh-ink-soft); max-width: 380px; margin: 0 0 4px; }
.shop-footer2-brand .shop-footer2-tag {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 21px; line-height: 1.2; color: var(--sh-brand);
  margin: 0 0 6px;
}
.shop-footer2-reach { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.shop-footer2-reach span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--sh-brand-deep);
  border: 1px solid var(--sh-gold); background: var(--sh-gold-soft);
  border-radius: 999px; padding: 6px 12px;
}
.shop-footer2-reach i { color: var(--sh-gold); }
.shop-footer2-col a, .shop-footer2-col span { display: block; font-size: 13px; padding: 3px 0; color: var(--sh-ink-soft); }
.shop-footer2-col a:hover { color: var(--sh-brand); }
.shop-footer2-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sh-brand);
  margin-bottom: 10px;
}
/* Baris 2: strip logo pembayaran & pengiriman */
.shop-footer2-logos {
  max-width: 1080px; margin: 0 auto;
  padding: 20px 20px 26px;
  border-top: 1px dashed var(--sh-line);
  display: grid; gap: 22px;
}
@media (min-width: 780px) { .shop-footer2-logos { grid-template-columns: auto auto; justify-content: space-between; } }
.shop-footer2-chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.shop-logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: 10px;
  padding: 6px 10px;
  min-height: 32px;
}
.shop-logo-chip img { height: 16px; width: auto; max-width: 74px; display: block; }
.shop-logo-chip.is-text { font-size: 11px; font-weight: 700; color: var(--sh-ink-soft); letter-spacing: .03em; }
.shop-footer2-note { font-size: 10px; color: var(--sh-ink-soft); font-weight: 500; letter-spacing: .02em; text-transform: none; margin-left: 8px; }
.shop-footer2-note i { color: var(--sh-gold); margin-right: 3px; }
.shop-footer2-bottom {
  border-top: 1px solid var(--sh-line);
  text-align: center;
  font-size: 12px; color: var(--sh-ink-soft);
  padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
}
.shop-footer2-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ── Sentuhan editorial: judul seksi pakai serif italic ── */
.shop-co-title, .shop-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px; font-weight: 600;
  letter-spacing: .02em; text-transform: none;
  color: var(--sh-ink);
}

/* ── Warna lain (seri) di halaman produk ── */
.shop-sibs { margin-top: 22px; border-top: 1px solid var(--sh-line); padding-top: 16px; }
.shop-sibs-row {
  display: flex; gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  -webkit-overflow-scrolling: touch;
}
.shop-sib { flex: 0 0 92px; text-align: center; }
.shop-sib.soldout { opacity: .5; }
.shop-sib-img {
  display: block; width: 92px; aspect-ratio: 3/4;
  border-radius: 12px; overflow: hidden;
  background: var(--sh-blush);
  border: 1.5px solid var(--sh-line);
  transition: border-color .15s, transform .15s;
}
.shop-sib:hover .shop-sib-img { border-color: var(--sh-brand); transform: translateY(-2px); }
.shop-sib-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.shop-sib-name { display: block; font-size: 12px; font-weight: 600; margin-top: 6px; line-height: 1.3; }
.shop-sib-sub { display: block; font-size: 11px; color: var(--sh-ink-soft); }

/* ── Accordion info produk ── */
.shop-acc { margin-top: 22px; border-top: 1px solid var(--sh-line); }
.shop-acc-item { border-bottom: 1px solid var(--sh-line); }
.shop-acc-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 2px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 19px; font-weight: 600;
}
.shop-acc-item summary::-webkit-details-marker { display: none; }
.shop-acc-item summary i { font-size: 12px; color: var(--sh-ink-soft); transition: transform .2s; }
.shop-acc-item[open] summary i { transform: rotate(180deg); }
.shop-acc-body { padding: 0 2px 16px; }

/* ── CTA sticky mobile (halaman produk) ── */
.shop-sticky-cta { display: none; }
@media (max-width: 819px) {
  .shop-sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    background: rgba(255, 253, 252, .96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--sh-line);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  }
  .shop-sticky-price { font-size: 17px; font-weight: 700; color: var(--sh-brand); }
  .shop-sticky-cta .shop-btn { padding: 11px 26px; }
}

/* ── Kartu grid: penanda seri warna ── */
.shop-card-variants { font-size: 11px; color: var(--sh-ink-soft); margin-top: 3px; }

/* ── P3: motion halus ── */
@media (prefers-reduced-motion: no-preference) {
  /* grid katalog muncul ber-stagger */
  .shop-grid .shop-card { animation: shopRise .5s cubic-bezier(.2,.7,.3,1) both; }
  .shop-grid .shop-card:nth-child(1)  { animation-delay: .02s; }
  .shop-grid .shop-card:nth-child(2)  { animation-delay: .06s; }
  .shop-grid .shop-card:nth-child(3)  { animation-delay: .10s; }
  .shop-grid .shop-card:nth-child(4)  { animation-delay: .14s; }
  .shop-grid .shop-card:nth-child(5)  { animation-delay: .18s; }
  .shop-grid .shop-card:nth-child(6)  { animation-delay: .22s; }
  .shop-grid .shop-card:nth-child(7)  { animation-delay: .26s; }
  .shop-grid .shop-card:nth-child(8)  { animation-delay: .30s; }
  .shop-grid .shop-card:nth-child(n+9){ animation-delay: .34s; }
  /* harga ber-transisi saat ganti varian */
  .shop-product-price.pop, .shop-sticky-price.pop { animation: shopPricePop .35s ease-out; }
  @keyframes shopPricePop { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
}
/* banner rotasi: fade lembut saat ganti pesan */
.shop-banner-msg { display: inline-block; transition: opacity .32s ease; }
.shop-banner-msg.fade { opacity: 0; }
