/* NAFUME Artisan Luxe — Launch Page CSS
   Lightweight styles used only by index.html (launch page).
   Full-site styles remain in css/style.css (archived pages).
*/

/* ── Local fonts ────────────────────────────────────────────── */
@font-face {
  font-family: 'Acumin Pro Wide';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/fonnts.com-Acumin_Pro_Wide_Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Stevie Sans';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Thin.woff2') format('woff2'),
       url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Thin.ttf') format('truetype');
}
@font-face {
  font-family: 'Stevie Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Light.woff2') format('woff2'),
       url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Stevie Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans.woff2') format('woff2'),
       url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans.ttf') format('truetype');
}
@font-face {
  font-family: 'Stevie Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Medium.woff2') format('woff2'),
       url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Stevie Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Bold.woff2') format('woff2'),
       url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Stevie Sans';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Black.woff2') format('woff2'),
       url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Black.ttf') format('truetype');
}

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --color-surface:    #F9F5F0;
  --color-bronze:     #C5A059;
  --color-primary:    #000000;
  --color-text-muted: #666666;
  --color-border:     #e8e8e8;
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Stevie Sans', sans-serif;
  background: #fff;
  color: #000;
  overflow-x: hidden;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-weight: 500;
}

/* ── Material Symbols ──────────────────────────────────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}

/* ── Hide scrollbar (used by cart drawer) ──────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── Display font helper ───────────────────────────────────── */
.font-serif { font-family: 'Acumin Pro Wide', sans-serif; font-weight: 500; }

/* ── NEW LAUNCH badge ──────────────────────────────────────── */
.nl-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #FF5533;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 2;
}

/* ── Product card ──────────────────────────────────────────── */
.prod-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.prod-card:hover .prod-img { transform: scale(1.04); }

.prod-img-wrap {
  overflow: hidden;
  position: relative;
  background: #F9F5F0;
  aspect-ratio: 3/4;
  width: 100%;
}
.prod-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.prod-info {
  padding: 16px 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

/* ── Card info lines ───────────────────────────────────────── */
.card-name {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
  margin: 0;
}
.card-name-link { color: inherit; text-decoration: none; }
.card-name-link:hover { text-decoration: underline; }
.card-family {
  font-family: 'Stevie Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.02em;
  margin: 0;
}
.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 4px 0 0;
  flex-wrap: wrap;
}
.card-price {
  font-family: 'Stevie Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.card-mrp {
  font-family: 'Stevie Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}
.card-atc-btn {
  width: 100%;
  padding: 11px 0;
  background: transparent;
  border: 1px solid #111;
  color: #111;
  font-family: 'Stevie Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  margin-top: 14px;
  text-align: center;
}
.card-atc-btn:hover { background: #111; color: #fff; }
.card-atc-btn.added { background: #2a6e2a; border-color: #2a6e2a; color: #fff; pointer-events: none; }


/* ── Size selector ─────────────────────────────────────────── */
.size-tabs { display: flex; gap: 6px; margin: 4px 0; }
.size-tab {
  padding: 5px 12px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.18s ease;
  border-radius: 2px;
  white-space: nowrap;
}
.size-tab.active,
.size-tab:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

/* ── Quantity row (card) ───────────────────────────────────── */
.qty-row { display: flex; align-items: center; gap: 0; }
.q-btn {
  width: 32px; height: 32px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  user-select: none;
  flex-shrink: 0;
  transition: border-color 0.15s;
}
.q-btn:hover { border-color: #000; }
.q-val {
  width: 38px; height: 32px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

/* ── Add to Cart button ────────────────────────────────────── */
.atc-btn {
  width: 100%;
  padding: 11px 0;
  background: #fff;
  border: 1.5px solid #111;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-top: auto;
}
.atc-btn:hover { background: #111; color: #fff; }
.atc-btn.added { background: #2a6e2a; border-color: #2a6e2a; color: #fff; pointer-events: none; }

/* ── Price lines ───────────────────────────────────────────── */
.price-sale { font-size: 15px; font-weight: 800; color: #111; }
.price-mrp  { font-size: 12px; color: #999; text-decoration: line-through; margin-left: 6px; }

/* ── Section heading ───────────────────────────────────────── */
.section-title {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
}
.section-divider {
  width: 48px; height: 3px;
  background: #000;
  margin: 14px auto 0;
}

/* ── Cart drawer ───────────────────────────────────────────── */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
  border-left: 1px solid #e8e8e8;
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

/* ── Overlay ───────────────────────────────────────────────── */
.lp-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 250;
  opacity: 0; visibility: hidden;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}
.lp-overlay.active { opacity: 1; visibility: visible; }

/* ── WhatsApp CTA button ───────────────────────────────────── */
.wa-btn {
  width: 100%; padding: 15px;
  background: #25D366; color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s ease;
}
.wa-btn:hover { background: #1ab254; }

/* ── Sticky bottom bar (mobile only) ──────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  align-items: stretch;
  height: 56px;
}
.sticky-bar.visible { display: flex; }
@media (min-width: 768px) { .sticky-bar { display: none !important; } }
body.has-bar { padding-bottom: 56px; }

/* ── Cart item qty controls (in drawer) ────────────────────── */
.cq-btn {
  width: 28px; height: 28px;
  border: 1px solid #ddd; background: #fff;
  font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  user-select: none; flex-shrink: 0;
}
.cq-btn:hover { border-color: #000; }
.cq-val {
  width: 34px; height: 28px;
  border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  background: #fff; flex-shrink: 0;
}

/* ── Free shipping progress bar ────────────────────────────── */
.ship-bar  { height: 3px; background: #eee; border-radius: 2px; overflow: hidden; margin-top: 6px; }
.ship-fill { height: 100%; background: var(--color-bronze); border-radius: 2px; transition: width 0.4s ease; }

/* ── Toast notification ────────────────────────────────────── */
.lp-toast {
  position: fixed; bottom: 68px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #111; color: #fff;
  padding: 9px 18px; font-size: 12px; font-weight: 600;
  border-radius: 3px; z-index: 500;
  white-space: nowrap; opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.lp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 768px) { .lp-toast { bottom: 24px; } }

/* ── Scroll anchor ─────────────────────────────────────────── */
#products-section { scroll-margin-top: 64px; }

/* ─────────────────────────────────────────────────────────────
   SHIPPING PAGE STYLES
   ───────────────────────────────────────────────────────────── */

/* Continue-to-shipping button in cart drawer */
.continue-btn {
  width: 100%; padding: 15px;
  background: #111; color: #fff;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.continue-btn:hover { background: #333; }

/* Page layout */
.ship-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .ship-page-inner {
    grid-template-columns: 1fr;
    padding: 24px 16px 120px;
    gap: 28px;
  }
}

/* Form sections */
.ship-section {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 24px;
  margin-bottom: 20px;
}
.ship-section:last-child { margin-bottom: 0; }
.ship-section-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
}

/* Form fields */
.ship-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.ship-field:last-child { margin-bottom: 0; }
.ship-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}
.ship-input {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #ddd;
  background: #fff;
  font-family: 'Stevie Sans', sans-serif;
  font-size: 13px;
  color: #111;
  transition: border-color 0.2s ease;
  outline: none;
}
.ship-input:focus   { border-color: #111; }
.ship-input-error   { border-color: #e44 !important; }
.ship-field-error {
  font-size: 10px;
  font-weight: 600;
  color: #e44;
  display: none;
  margin-top: 2px;
}
.ship-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) { .ship-row-2 { grid-template-columns: 1fr; } }

/* Payment cards */
.pay-card {
  border: 1.5px solid #e0e0e0;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
  user-select: none;
}
.pay-card:last-child { margin-bottom: 0; }
.pay-card:hover { border-color: #aaa; }
.pay-selected {
  border-color: #111 !important;
  background: #f9f9f9;
}
.pay-radio-circle {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.pay-selected .pay-radio-circle { border-color: #111; }
.pay-radio-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #111;
  display: none;
}
.pay-selected .pay-radio-dot { display: block; }
.pay-card-body { flex: 1; }
.pay-card-title {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}
.pay-card-desc {
  font-size: 10px;
  color: #888;
  margin-top: 3px;
  line-height: 1.5;
}
.pay-recommended {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C5A059;
  background: #fdf7e9;
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Order summary sidebar */
.ship-summary-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  position: sticky;
  top: 76px;
}
.ship-summary-header {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ship-summary-items { padding: 0 20px; }

/* Summary item row */
.ship-item-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.ship-item-row:last-child { border-bottom: none; }
.ship-item-img-wrap {
  width: 52px; height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
}
.ship-item-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  padding: 4px;
}
.ship-item-details { flex: 1; min-width: 0; }
.ship-item-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.ship-item-meta {
  font-size: 10px;
  color: #888;
  margin-top: 3px;
  letter-spacing: 0.04em;
}
.ship-item-price {
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Summary totals */
.ship-summary-totals {
  padding: 14px 20px;
  border-top: 1px solid #e8e8e8;
  margin-top: 4px;
}
.ship-total-line {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 4px 0;
  color: #666;
}
.ship-grand-total {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1.5px solid #111;
}
.ship-tbd-label { color: #C5A059; font-weight: 700; font-size: 10px; }
.ship-gst-note {
  font-size: 10px;
  color: #aaa;
  margin-top: 10px;
  line-height: 1.5;
}

/* Submit button */
.ship-submit-btn {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: #fff;
  font-family: 'Stevie Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease;
  margin-top: 20px;
}
.ship-submit-btn:hover { background: #1ab254; }

/* Desktop-only submit wrapper (replaces Tailwind md:block) */
.ship-desktop-submit { display: none; }
@media (min-width: 768px) { .ship-desktop-submit { display: block; } }

/* Error alert under payment */
#err-payment {
  font-size: 11px;
  font-weight: 600;
  color: #e44;
  display: none;
  margin-top: 8px;
}

/* Mobile sticky bottom bar on shipping page */
.ship-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #25D366;
  z-index: 200;
  padding: 0;
  display: none;
}
@media (max-width: 767px) { .ship-sticky-bar { display: flex; } }
.ship-sticky-btn {
  width: 100%;
  padding: 17px;
  background: #25D366;
  color: #fff;
  font-family: 'Stevie Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ship-sticky-btn:hover { background: #1ab254; }

/* Order success banner */
.order-success-banner {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 60vh;
}
.success-checkmark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #2a6e2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
}

/* Empty cart state on shipping page */
.ship-empty-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
}

/* Ship toast */
.ship-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #111; color: #fff;
  padding: 9px 18px; font-size: 12px; font-weight: 600;
  border-radius: 3px; z-index: 600;
  white-space: nowrap; opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.ship-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─────────────────────────────────────────────────────────────
   PRODUCT DETAIL PAGE STYLES
   ───────────────────────────────────────────────────────────── */

/* View Details link on index.html cards */
.view-details-link {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C5A059;
  text-decoration: none;
}
.view-details-link:hover { color: #b08842; text-decoration: underline; }

/* Image links on cards */
.prod-img-link { display: block; text-decoration: none; }

/* ── PDP Announcement strip ── */
.pdp-announce {
  background: #111;
  color: #C5A059;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
}

/* ── PDP Breadcrumb ── */
.pdp-crumb {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  max-width: 1400px;
  margin: 0 auto;
}
.pdp-crumb a { color: #aaa; text-decoration: none; }
.pdp-crumb a:hover { color: #C5A059; }
@media (max-width: 640px) { .pdp-crumb { padding: 10px 20px; } }

/* ── PDP 2-col product section ── */
.pdp-product-wrap {
  display: grid;
  grid-template-columns: 55% 45%;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .pdp-product-wrap { grid-template-columns: 1fr; }
}

/* ── Gallery (image column) ── */
.pdp-gallery {
  background: #F9F5F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 48px;
  min-height: 600px;
  position: sticky;
  top: 60px;
  align-self: start;
  max-height: calc(100vh - 60px);
}
@media (max-width: 860px) {
  .pdp-gallery {
    min-height: 320px;
    padding: 28px;
    position: static;
    max-height: none;
  }
}
.pdp-gallery-img {
  width: 100%;
  max-width: 420px;
  max-height: 580px;
  object-fit: contain;
  display: block;
}

/* ── Buy panel (right column) ── */
.pdp-buy-panel {
  padding: 40px 48px 40px 40px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid #f0f0f0;
  position: sticky;
  top: 60px;
  align-self: start;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
@media (max-width: 860px) {
  .pdp-buy-panel {
    padding: 28px 20px 80px;
    position: static;
    max-height: none;
    border-left: none;
    border-top: 1px solid #f0f0f0;
  }
}

/* ── Chip row (badges) ── */
.pdp-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.pdp-chip {
  display: inline-block;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #ddd;
  color: #555;
}
.pdp-chip-accent {
  background: #C5A059;
  border-color: #C5A059;
  color: #fff;
}

.pdp-family-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C5A059;
  margin-bottom: 8px;
}
.pdp-prod-title {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pdp-tagline {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  font-style: italic;
}

/* ── Star rating ── */
.pdp-stars-row {
  font-size: 14px;
  color: #C5A059;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pdp-stars-row span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #aaa;
  text-transform: uppercase;
}

/* ── Top notes preview pills ── */
.pdp-top-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.pdp-note-pill {
  padding: 5px 13px;
  background: #F9F5F0;
  font-size: 10px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.05em;
  border: 1px solid #e8e3dc;
}

/* ── Price area ── */
.pdp-price-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.pdp-price {
  font-size: 34px;
  font-weight: 900;
  color: #111;
  line-height: 1;
}
.pdp-mrp {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}
.pdp-save-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #2a6e2a;
  background: #e8f5e9;
  padding: 4px 9px;
}

/* ── PDP sale chips ── */
.pdp-sale-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.pdp-sale-chip {
  font-family: 'Stevie Sans', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C5A059;
  background: #fdf7e9;
  padding: 4px 10px;
  border: 1px solid #f0ddb5;
}
.pdp-discount-chip {
  font-family: 'Stevie Sans', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2a6e2a;
  background: #e8f5e9;
  padding: 4px 10px;
  border: 1px solid #b8ddb9;
}

.pdp-tax-note {
  font-size: 10px;
  color: #aaa;
  margin-top: 4px;
  margin-bottom: 22px;
}

/* ── Size section ── */
.pdp-size-section { margin-bottom: 18px; }
.pdp-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}
.pdp-size-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.pdp-size-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11px 24px;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: all 0.18s ease;
  min-width: 90px;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.05em;
  font-family: 'Stevie Sans', sans-serif;
}
.pdp-size-tab.active {
  background: #111;
  border-color: #111;
  color: #fff;
}
.pdp-size-tab:hover:not(.active) { border-color: #999; }
.pdp-tab-price {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}
.pdp-size-tab.active .pdp-tab-price { color: #fff; }

/* ── Promo strip ── */
.pdp-promo {
  background: #FFF8EE;
  border: 1px solid #f0ddb5;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #b08842;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

/* ── Action row (qty + ATC) ── */
.pdp-action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pdp-qty-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  flex-shrink: 0;
}
.pdp-qty-wrap .q-btn {
  width: 38px;
  height: 46px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #333;
  font-family: 'Stevie Sans', sans-serif;
  line-height: 1;
}
.pdp-qty-wrap .q-val {
  width: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  font-family: 'Stevie Sans', sans-serif;
}
.pdp-atc-btn {
  flex: 1;
  height: 46px;
  background: #C5A059;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Stevie Sans', sans-serif;
  transition: background 0.2s ease;
}
.pdp-atc-btn:hover { background: #b08842; }
.pdp-atc-btn.added { background: #2a6e2a; }

/* ── Continue to Shipping ── */
.pdp-cts-btn {
  width: 100%;
  padding: 15px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  font-family: 'Stevie Sans', sans-serif;
  margin-bottom: 14px;
}
.pdp-cts-btn:hover { background: #333; }

/* ── Reassurance text ── */
.pdp-reassurance {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

/* ── Features row ── */
.pdp-features {
  display: flex;
  gap: 0;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
  flex-wrap: wrap;
}
.pdp-feat {
  flex: 1;
  min-width: 80px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #777;
  text-transform: uppercase;
  padding: 4px 6px;
}

/* ── Page content sections ── */
.pdp-sec {
  padding: 52px 32px;
}
@media (max-width: 600px) { .pdp-sec { padding: 36px 20px; } }
.pdp-sec-alt { background: #F9F5F0; }
.pdp-sec-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pdp-sec-title {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  text-align: center;
  color: #000;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Description paragraphs ── */
.pdp-desc-para {
  font-size: 13px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.pdp-desc-para:last-child { margin-bottom: 0; }

/* ── Fragrance notes grid ── */
.pdp-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .pdp-notes-grid { grid-template-columns: 1fr; }
}
.pdp-notes-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pdp-notes-icon { font-size: 28px; margin-bottom: 4px; }
.pdp-notes-tier {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C5A059;
}
.pdp-notes-items {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  line-height: 1.8;
  margin: 4px 0;
}
.pdp-notes-hint {
  font-size: 10px;
  color: #aaa;
  font-style: italic;
  line-height: 1.5;
}

/* ── Feeling / occasion pills ── */
.pdp-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pdp-pill {
  padding: 9px 20px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.pdp-pill-outline {
  background: transparent;
  border: 1.5px solid #111;
  color: #111;
}

/* ── Behind the perfume ── */
.pdp-behind-quote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.95;
  color: #333;
  border-left: 4px solid #C5A059;
  padding: 20px 28px;
  background: #fff;
  margin: 0 auto;
  max-width: 760px;
}
@media (max-width: 600px) { .pdp-behind-quote { padding: 16px 18px; } }

/* ── Why you'll love it ── */
.pdp-why-list {
  list-style: none;
  padding: 0;
  max-width: 640px;
  margin: 0 auto;
}
.pdp-why-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  border-bottom: 1px solid #e0d8d0;
}
.pdp-why-list li:last-child { border-bottom: none; }
.pdp-why-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 14px;
  color: #C5A059;
  font-size: 11px;
}
.pdp-closing-line {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-size: 17px;
  font-style: italic;
  text-align: center;
  color: #C5A059;
  margin-top: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Info & Care accordion ── */
.pdp-accordion {
  max-width: 760px;
  margin: 0 auto;
}
.pdp-acc-item {
  border-bottom: 1px solid #e8e8e8;
}
.pdp-acc-item:first-child { border-top: 1px solid #e8e8e8; }
.pdp-acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  font-family: 'Stevie Sans', sans-serif;
  text-align: left;
  gap: 12px;
}
.pdp-acc-btn:hover { color: #C5A059; }
.pdp-acc-icon {
  font-size: 22px;
  font-weight: 300;
  color: #aaa;
  transition: transform 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
}
.pdp-acc-item.open .pdp-acc-icon { transform: rotate(45deg); }
.pdp-acc-body {
  display: none;
  padding: 0 0 20px;
  font-size: 12px;
  line-height: 1.9;
  color: #555;
}
.pdp-acc-item.open .pdp-acc-body { display: block; }

/* ── Other products grid ── */
.pdp-other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .pdp-other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pdp-other-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.pdp-other-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pdp-other-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.pdp-other-img-wrap {
  aspect-ratio: 1;
  background: #F9F5F0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.pdp-other-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pdp-other-info {
  padding: 12px;
  border-top: 1px solid #f0f0f0;
}
.pdp-other-family {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C5A059;
  margin-bottom: 4px;
}
.pdp-other-name {
  font-family: 'Acumin Pro Wide', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  margin-bottom: 4px;
}
.pdp-other-price {
  font-size: 11px;
  font-weight: 800;
  color: #333;
}

/* ── Mobile sticky bar ── */
.pdp-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  height: 56px;
  z-index: 200;
}
@media (min-width: 768px) { .pdp-sticky-bar { display: none !important; } }
.pdp-sticky-atc {
  flex: 1;
  background: #C5A059; color: #fff;
  border: none; cursor: pointer;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Stevie Sans', sans-serif;
}
.pdp-sticky-atc:hover { background: #b08842; }
.pdp-sticky-atc.added { background: #2a6e2a; }
.pdp-sticky-ship {
  flex: 1;
  background: #111; color: #fff;
  border: none; cursor: pointer;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-family: 'Stevie Sans', sans-serif;
}
.pdp-sticky-ship:hover { background: #333; }

/* product pages need bottom padding for sticky bar */
body[data-product] { padding-bottom: 56px; }
@media (min-width: 768px) { body[data-product] { padding-bottom: 0; } }
