/* ============================================================
   ASMON — PDP (Single product) — luxury commerce layout
   ============================================================ */

.pdp { padding: 40px 0 80px; background: var(--ivory); }
.pdp-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: flex-start;
}
.pdp-info, .pdp-gallery { min-width: 0; width: 100%; }
@media (max-width: 960px) {
  .pdp-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Kill any leftover Woo float CSS on PDP */
.pdp .woocommerce div.product div.images,
.pdp .woocommerce div.product div.summary,
.pdp div.product div.images,
.pdp div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* ─── Info column (RIGHT in RTL = first in source) ──────── */
.pdp-info { order: 0; }
.pdp-gallery { order: 1; }
@media (max-width: 960px) {
  .pdp-info { order: 1; }
  .pdp-gallery { order: 0; }
}

.pdp-collection {
  display: inline-flex; align-items: center;
  font-size: .9rem; font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 14px;
  letter-spacing: -.005em;
}

.pdp-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}
.pdp-tagline {
  color: var(--ink-3);
  font-size: 1rem;
  margin: 0 0 22px;
  line-height: 1.75;
}

.pdp-pills {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.pdp-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper);
  color: var(--ink-2);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 500;
  border: 1px solid var(--line);
}
.pdp-pill .asmon-icon { color: var(--gold-2); }
.pdp-pill span { color: var(--ink-3); font-weight: 400; margin-left: 2px; }

.pdp-price-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 0 0 22px;
}
.pdp-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.pdp-price ins { color: var(--ink); text-decoration: none; }
.pdp-price del {
  font-size: 1.05rem;
  color: var(--muted);
  opacity: .6;
  margin-right: 10px;
  font-weight: 500;
}
.pdp-price .woocommerce-Price-amount { color: inherit; }
.pdp-discount-badge {
  display: inline-flex; align-items: center;
  background: var(--danger);
  color: #fff;
  font-weight: 700; font-size: .78rem;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: -.01em;
}

/* Plain description text (no panel) */
.pdp-desc {
  color: var(--ink-3);
  line-height: 1.95;
  font-size: .95rem;
  margin: 0 0 28px;
}

/* ─── Option groups (size / finish) ─────────────────────── */
.pdp-option-group { margin-bottom: 22px; }
.pdp-option-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.pdp-option-head strong { font-size: .95rem; color: var(--ink); font-weight: 600; }
.pdp-option-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .82rem;
  color: var(--gold-2);
  font-weight: 500;
}
.pdp-option-link:hover { color: var(--bronze); }
.pdp-option-link .asmon-icon { color: var(--gold-2); }

.pdp-option-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pdp-pill-btn {
  min-width: 48px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t);
}
.pdp-pill-btn:hover { border-color: var(--gold); color: var(--gold-2); }
.pdp-pill-btn.is-active {
  background: var(--midnight);
  color: var(--gold-soft);
  border-color: var(--midnight);
}

/* ─── Quantity ──────────────────────────────────────────── */
.pdp-qty-row {
  display: flex; align-items: center; gap: 18px;
  margin: 22px 0 16px;
}
.pdp-qty-row > label { font-weight: 600; color: var(--ink); margin: 0; font-size: .92rem; }
.pdp-qty {
  display: inline-flex; align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.pdp-qty-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: transparent;
  color: var(--ink-2);
  font-size: 1.3rem; font-weight: 600;
  transition: background var(--t), color var(--t);
}
.pdp-qty-btn:hover { background: var(--ivory-2); color: var(--gold-2); }
.pdp-qty input {
  width: 50px; height: 42px;
  border: 0; background: transparent;
  text-align: center;
  font-weight: 600; font-size: 1rem;
  padding: 0;
  -moz-appearance: textfield;
}
.pdp-qty input::-webkit-outer-spin-button,
.pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ─── Actions (green CTA + wishlist) ────────────────────── */
.pdp-actions {
  display: flex; align-items: stretch; gap: 12px;
  margin-bottom: 28px;
}
.pdp-add-cart {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #1f7a5a 0%, #16634a 100%);
  color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--r);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22, 99, 74, .25);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.pdp-add-cart:hover {
  background: linear-gradient(135deg, #16634a 0%, #0f4a37 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(22, 99, 74, .32);
}
.pdp-wishlist {
  width: 56px;
  display: grid; place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--t);
}
.pdp-wishlist:hover { border-color: var(--danger); color: var(--danger); }
.pdp-wishlist.is-active { background: var(--danger); border-color: var(--danger); color: #fff; }

.pdp-stock-out {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(178,59,59,.08);
  color: var(--danger);
  padding: 12px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(178,59,59,.2);
  font-weight: 500;
  margin: 20px 0;
}

/* ─── Info-column trust (2x2 horizontal) ────────────────── */
.pdp-info-trust {
  list-style: none; margin: 22px 0 0; padding: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  border-top: 1px solid var(--line);
}
@media (max-width: 540px) { .pdp-info-trust { grid-template-columns: minmax(0, 1fr); } }

.pdp-info-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem;
  color: var(--ink-2);
}
.pdp-info-trust-icon {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ivory-2);
  color: var(--gold-2);
  flex: none;
}
.pdp-info-trust-label { font-weight: 500; }

/* ─── Gallery ───────────────────────────────────────────── */
.pdp-main-image {
  position: relative;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--sh-2);
}
.pdp-main-image img,
.pdp-main-image .pdp-main-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: opacity var(--t);
}
.pdp-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--bronze);
}

.pdp-sale-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--midnight);
  font-weight: 700; font-size: .82rem;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-gold);
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.pdp-thumb {
  aspect-ratio: 1/1;
  background: var(--ivory-2);
  border: 2px solid transparent;
  border-radius: var(--r);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t);
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover { transform: translateY(-2px); }
.pdp-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,100,.18);
}

/* ─── Tabs ──────────────────────────────────────────────── */
.pdp-tabs-section { background: var(--ivory); padding-top: clamp(40px, 5vw, 70px); }
.pdp-tabs {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pdp-tabs-nav {
  display: flex; flex-wrap: wrap;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0;
  gap: 0;
}
.pdp-tab {
  position: relative;
  padding: 18px 24px;
  background: transparent;
  border: 0;
  color: var(--ink-3);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--t);
}
.pdp-tab::after {
  content:""; position: absolute;
  bottom: -1px; right: 24px; left: 24px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: center;
}
.pdp-tab:hover { color: var(--ink); }
.pdp-tab.is-active { color: var(--gold-2); }
.pdp-tab.is-active::after { transform: scaleX(1); }

.pdp-tab-panels { padding: clamp(24px, 4vw, 40px); }
.pdp-tab-panel { display: none; }
.pdp-tab-panel.is-active { display: block; animation: fadePanel .35s ease; }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pdp-tab-panel .prose { max-width: none; margin: 0; }
.pdp-tab-panel .shop_attributes {
  width: 100%; border-collapse: collapse;
}
.pdp-tab-panel .shop_attributes th,
.pdp-tab-panel .shop_attributes td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}
.pdp-tab-panel .shop_attributes th { width: 30%; background: var(--ivory-2); font-weight: 600; }

/* ─── PDP "Why Asmon" — 6 items light theme ─────────────── */
.pdp-why { background: var(--ivory); }
.pdp-why .section-head { margin-bottom: 36px; }
.pdp-why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1100px) { .pdp-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 540px)  { .pdp-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.pdp-why-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 18px 22px;
  text-align: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.pdp-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--sh-2);
}
.pdp-why-icon {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--ivory-2), var(--linen));
  color: var(--gold-2);
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 1px solid var(--line-2);
}
.pdp-why-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  margin: 0 0 6px;
}
.pdp-why-text {
  font-size: .82rem;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0;
}

/* ─── Custom Design CTA ────────────────────────────────── */
.pdp-custom-cta {
  background: linear-gradient(135deg, var(--ivory-2) 0%, var(--linen) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pdp-custom-cta::before {
  content:""; position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(200,164,100,.25), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.pdp-custom-cta-icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  background: var(--midnight);
  color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: var(--sh-gold);
  position: relative;
}
.pdp-custom-cta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0 0 12px;
  color: var(--ink);
  position: relative;
}
.pdp-custom-cta p {
  max-width: 580px;
  margin: 0 auto 24px;
  color: var(--ink-3);
  line-height: 1.85;
  position: relative;
}
.pdp-custom-cta-actions {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  position: relative;
}

/* ─── PDP FAQ — single column ───────────────────────────── */
.pdp-faq-section { background: var(--ivory); }
.pdp-faq-section .section-head { margin-bottom: 32px; }
.pdp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pdp-faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.pdp-faq-item[open] {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200,164,100,.12);
}
.pdp-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}
.pdp-faq-item summary::-webkit-details-marker { display: none; }
.pdp-faq-q { font-weight: 600; color: var(--ink); font-size: .98rem; }
.pdp-faq-icon {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  color: var(--ink-3);
  transition: transform var(--t), color var(--t);
}
.pdp-faq-item[open] .pdp-faq-icon {
  transform: rotate(180deg);
  color: var(--gold-2);
}
.pdp-faq-answer {
  padding: 0 22px 20px;
  color: var(--ink-2);
  font-size: .94rem;
  line-height: 1.85;
}

/* ─── Related products grid ─────────────────────────────── */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 1024px) { .pdp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .pdp-related-grid { grid-template-columns: minmax(0, 1fr); } }

/* ─── Variable product native form fallback ──────────────── */
.pdp-variations form.cart {
  margin: 24px 0;
  background: var(--paper);
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--line);
}

/* ============================================================
   Custom packaging option (PDP)
   ============================================================ */
.pdp-pack-option {
  margin: 4px 0 22px;
}
.pdp-pack-label {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fdfaf3, #f7efde);
  border: 1px solid var(--line-2, #e7d9b4);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.pdp-pack-label:hover { border-color: var(--gold); }
.pdp-pack-label input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-pack-check {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  background: #fff;
  border: 2px solid var(--line-2, #d9c89c);
  border-radius: 6px;
  color: transparent;
  transition: all var(--t);
}
.pdp-pack-check .asmon-icon { width: 14px; height: 14px; }
.pdp-pack-option.is-checked .pdp-pack-label {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fff7e2, #f7e4b8);
  box-shadow: 0 4px 18px rgba(200,164,100,.18);
}
.pdp-pack-option.is-checked .pdp-pack-check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--midnight);
}
.pdp-pack-icon {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid var(--line);
}
.pdp-pack-body { display: flex; flex-direction: column; gap: 2px; }
.pdp-pack-title { font-weight: 600; color: var(--ink); font-size: .95rem; }
.pdp-pack-sub   { font-size: .78rem; color: var(--ink-3); }
.pdp-pack-price {
  font-weight: 700;
  color: var(--gold-2);
  font-size: .9rem;
  white-space: nowrap;
}
@media (max-width: 540px) {
  .pdp-pack-label { grid-template-columns: auto 1fr; row-gap: 6px; }
  .pdp-pack-icon { display: none; }
  .pdp-pack-price { grid-column: 1 / -1; text-align: left; }
}

/* ============================================================
   Gallery zoom + lightbox
   ============================================================ */
.pdp-main-image { cursor: zoom-in; }
.pdp-main-video {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.pdp-zoom-btn {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 4;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  box-shadow: var(--sh-2);
}
.pdp-zoom-btn:hover { background: #fff; transform: scale(1.06); }

.pdp-thumb { position: relative; }
.pdp-thumb-play {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 0;
}
.pdp-thumb-play .asmon-icon { color: #fff; }
.pdp-thumb.is-video::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 22px;
  color: #fff;
  background: rgba(0,0,0,.42);
  pointer-events: none;
}

.pdp-lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 56px 20px 110px;
}
.pdp-lightbox[hidden] { display: none !important; }
.pdp-lightbox::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(13,15,22,.94);
  backdrop-filter: blur(6px);
  z-index: -1;
}
.pdp-lightbox-close {
  position: absolute;
  top: 18px; left: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.14);
  transition: background var(--t);
}
.pdp-lightbox-close:hover { background: rgba(255,255,255,.18); }
.pdp-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.14);
  transition: background var(--t);
  z-index: 2;
}
.pdp-lightbox-nav:hover { background: rgba(255,255,255,.2); }
.pdp-lightbox-prev { right: 28px; }
.pdp-lightbox-next { left: 28px; }
.pdp-lightbox-stage {
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 220px);
  display: flex; align-items: center; justify-content: center;
}
.pdp-lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 220px);
  width: auto; height: auto;
  border-radius: var(--r);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.pdp-lightbox-thumbs {
  position: absolute;
  bottom: 18px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  padding: 0 20px;
  overflow-x: auto;
}
.pdp-lightbox-thumb {
  width: 64px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  border: 2px solid rgba(255,255,255,.2);
  padding: 0;
  cursor: pointer;
  flex: none;
  transition: border-color var(--t), transform var(--t);
}
.pdp-lightbox-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-lightbox-thumb.is-active {
  border-color: var(--gold);
  transform: translateY(-3px);
}

body.pdp-lightbox-open { overflow: hidden; }

/* ============================================================
   Modal (size guide and others)
   ============================================================ */
.asmon-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.asmon-modal[hidden] { display: none !important; }
.asmon-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,15,22,.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.asmon-modal-panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  animation: asmonModalIn .25s ease;
}
@keyframes asmonModalIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.asmon-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ivory-2), var(--linen));
}
.asmon-modal-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0;
}
.asmon-modal-title .asmon-icon { color: var(--gold-2); }
.asmon-modal-close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: transparent;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--t);
}
.asmon-modal-close:hover { color: var(--ink); border-color: var(--gold); }
.asmon-modal-body {
  padding: 22px;
  overflow-y: auto;
}
body.asmon-modal-open { overflow: hidden; }

/* ============================================================
   Ring guide tabs + content
   ============================================================ */
.ring-guide-tabs {
  display: flex; gap: 6px;
  margin-bottom: 18px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 4px;
}
.ring-guide-tab {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: calc(var(--r) - 4px);
  color: var(--ink-3);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.ring-guide-tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.ring-guide-tab .asmon-icon { color: var(--gold-2); }

.ring-guide-panel[hidden] { display: none; }

/* Method panel */
.rg-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.rg-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: .92rem;
  line-height: 1.85;
  color: var(--ink-2);
}
.rg-step-num {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--midnight);
  color: var(--gold);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}
.rg-tip {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 16px;
  padding: 14px;
  background: linear-gradient(135deg, #fdf6e3, #f6e5b9);
  border: 1px solid var(--line-2, #e7d9b4);
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: .9rem;
  line-height: 1.85;
}
.rg-tip-icon { flex: none; color: var(--gold-2); margin-top: 2px; }
.rg-tip p { margin: 0; }

/* Ring sizer tool */
.rg-sizer-intro { font-size: .92rem; color: var(--ink-2); margin: 0 0 14px; line-height: 1.85; }
.rg-sizer-stage {
  position: relative;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.rg-sizer-svg {
  width: 100%; height: auto;
  max-width: 280px;
  max-height: 280px;
  margin: 0 auto;
  display: block;
}
.rg-sizer-readout {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: var(--midnight);
  color: #fff;
  border-radius: var(--r);
  min-width: 180px;
  text-align: center;
}
.rg-sizer-mm { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rg-sizer-mm-label { font-size: .78rem; color: rgba(255,255,255,.6); }
.rg-sizer-size { margin-top: 8px; font-size: .9rem; color: rgba(255,255,255,.85); }
.rg-sizer-size strong { color: var(--gold); font-size: 1.2rem; font-weight: 700; margin-right: 4px; }

.rg-sizer-control { margin-top: 16px; }
.rg-sizer-control label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.rg-sizer-control input[type="range"] {
  width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  outline: none;
}
.rg-sizer-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  background: var(--gold);
  border: 2px solid var(--midnight);
  border-radius: 50%;
  cursor: pointer;
}
.rg-sizer-control input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--gold);
  border: 2px solid var(--midnight);
  border-radius: 50%;
  cursor: pointer;
}
.rg-sizer-hints {
  display: flex; justify-content: space-between;
  font-size: .76rem;
  color: var(--ink-3);
  margin-top: 4px;
}
.rg-sizer-note {
  margin-top: 14px;
  font-size: .82rem;
  color: var(--ink-3);
  padding: 10px 14px;
  background: rgba(178,59,59,.06);
  border-right: 3px solid var(--danger);
  border-radius: 6px;
}

@media (max-width: 540px) {
  .rg-sizer-stage { grid-template-columns: minmax(0, 1fr); }
  .rg-sizer-readout { min-width: 0; }
}

/* Size table */
.rg-table-wrap { overflow-x: auto; }
.rg-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.rg-table th, .rg-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.rg-table th { background: var(--ivory-2); font-weight: 700; color: var(--ink); }
.rg-table tr:last-child td { border-bottom: 0; }
.rg-table tr:hover td { background: rgba(200,164,100,.06); }
.rg-table-cta { margin: 14px 0 0; font-size: .9rem; color: var(--ink-2); text-align: center; }
.rg-pick-link {
  background: transparent; border: 0;
  color: var(--gold-2);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rg-pick-link:hover { color: var(--bronze); }

/* PDP tabs: size-table styling */
.pdp-size-table {
  width: 100%; border-collapse: collapse;
  margin: 14px 0;
}
.pdp-size-table th, .pdp-size-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.pdp-size-table th { background: var(--ivory-2); font-weight: 700; }

/* ============================================================
   Why Asmon — luxury 6-up strip, matches reference design
   ============================================================ */
.pdp-why { background: var(--ivory); padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.pdp-why-head { text-align: center; margin: 0 auto 32px; }
.pdp-why-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}

.pdp-why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1100px) { .pdp-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 600px)  { .pdp-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.pdp-why-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 16px 20px;
  text-align: center;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pdp-why-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}
.pdp-why-icon {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--ivory-2), var(--linen));
  color: var(--gold-2);
  border-radius: 50%;
  margin: 0 auto 4px;
  border: 1px solid var(--line-2, #e7d9b4);
}
.pdp-why-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  margin: 0;
}
.pdp-why-text {
  font-size: .8rem;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0;
}
