/* ════════════════════════════════════════════════════════════════════════
   pdp-base.css — shared Hyper Drop styling for the PDP buy box (pdp/_buy.njk),
   FAQ, and nicotine warning. Per-brand PDP partials add accent overrides in
   their own pdp-<brand>.css (scoped under a .pdp-<brand> wrapper). Cart 禁区:
   structure/bindings live in _buy.njk; this is visual only.
   ════════════════════════════════════════════════════════════════════════ */
.pdp-buy { display: flex; flex-direction: column; gap: 16px; }
.pdp-buy-pricecard { background: var(--fl-acid); border: 2px solid var(--fl-ink); border-radius: 16px; box-shadow: 5px 5px 0 var(--fl-ink); padding: 18px 22px; }
.pdp-buy-pricekm { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--fl-ink); margin: 0 0 4px; opacity: .8; }
.pdp-buy-price { display: flex; align-items: baseline; gap: 12px; }
.pdp-buy-now { font-size: clamp(38px,6vw,56px); font-weight: 900; line-height: 0.9; letter-spacing: -0.03em; color: var(--fl-ink); }
.pdp-buy-was { font-size: 20px; font-weight: 700; color: var(--fl-ink2); text-decoration: line-through; }
.pdp-buy-ship { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--fl-ink); margin: 8px 0 0; }
.pdp-buy-flav-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--fl-ink2); margin-bottom: 12px; }
.pdp-buy-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; color: var(--fl-ink); border: 2px solid var(--fl-ink); border-radius: 999px; padding: 7px 15px; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 2px 2px 0 var(--fl-ink); transition: transform .1s, box-shadow .1s, background .1s, color .1s; user-select: none; }
.pdp-chip:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--fl-ink); }
.pdp-chip.is-active { background: var(--fl-purple); color: #fff; }
.pdp-chip.is-oos { opacity: .5; cursor: not-allowed; box-shadow: none; text-decoration: line-through; }
.pdp-chip.is-oos .fl-mono { font-size: 9px; text-decoration: none; }
/* flavor groups (SKU classification via groupFlavors filter) */
.pdp-flav-group { margin-bottom: 14px; }
.pdp-flav-group:last-child { margin-bottom: 0; }
.pdp-flav-group-label { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fl-ink2); margin: 0 0 8px; }
.pdp-flav-group-n { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 16px; padding: 0 5px; background: var(--fl-ink); color: #fff; border-radius: 999px; font-size: 9px; }
.pdp-buy-actions { display: flex; gap: 12px; align-items: stretch; }
.pdp-qty { display: inline-flex; align-items: center; gap: 4px; background: #fff; border: 2px solid var(--fl-ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--fl-ink); padding: 4px; }
.pdp-qty button { width: 38px; height: 38px; border: 0; background: transparent; font-size: 22px; font-weight: 700; cursor: pointer; border-radius: 999px; color: var(--fl-ink); }
.pdp-qty button:hover:not(:disabled) { background: var(--fl-cream2); }
.pdp-qty button:disabled { opacity: .3; cursor: default; }
.pdp-qty-num { font-family: var(--fl-font-mono); font-weight: 700; min-width: 26px; text-align: center; }
.pdp-add { flex: 1; background: var(--fl-purple); color: #fff; border: 2px solid var(--fl-ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--fl-ink); font-family: var(--fl-font-body); font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .1s, box-shadow .1s; }
.pdp-add:hover:not(:disabled) { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--fl-ink); }
.pdp-add:active:not(:disabled) { transform: translate(2px,2px); box-shadow: 0 0 0 var(--fl-ink); }
.pdp-add:disabled { opacity: .55; cursor: default; }
.pdp-buy-err { color: var(--fl-hot); font-weight: 700; font-size: 13px; margin: 0; }
.pdp-buy-stamps { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.pdp-buy-stamps > div { display: flex; flex-direction: column; gap: 2px; border: 1.5px solid rgba(14,10,20,.18); border-radius: 10px; padding: 9px 12px; }
.pdp-buy-stamps .fl-mono { font-size: 9px; letter-spacing: 0.1em; color: var(--fl-ink2); }
.pdp-buy-stamps > div > span:last-child { font-size: 12px; font-weight: 700; }

/* FAQ (shared) */
.pdp-faq-sec { padding-top: 8px; }
.pdp-faq-h2 { font-size: clamp(30px,5vw,48px); font-weight: 900; letter-spacing: -0.03em; margin: 14px 0 22px; }
.pdp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pdp-faq-item { border: 2px solid var(--fl-ink); border-radius: 14px; box-shadow: 4px 4px 0 var(--fl-ink); background: #fff; padding: 4px 18px; }
.pdp-faq-item summary { font-family: var(--fl-font-display); font-weight: 700; font-size: 16px; cursor: pointer; padding: 14px 0; list-style: none; }
.pdp-faq-item summary::-webkit-details-marker { display: none; }
.pdp-faq-item summary::after { content: "+"; float: right; font-weight: 800; color: var(--fl-purple); }
.pdp-faq-item[open] summary::after { content: "\2013"; }
.pdp-faq-a { font-size: 14px; line-height: 1.6; color: var(--fl-ink2); padding-bottom: 14px; }

/* nicotine warning (compliance) */
.pdp-nic-warning { font-size: 12px; background: rgba(255,61,110,.08); border: 2px solid var(--fl-ink); border-left: 6px solid var(--fl-hot); border-radius: 12px; box-shadow: 3px 3px 0 var(--fl-ink); padding: 14px 18px; max-width: 880px; margin: 0 auto; }

@media (max-width: 560px) { .pdp-buy-actions { flex-direction: column; } .pdp-qty { align-self: flex-start; } }

/* ═══════════════════════════════════════════════════════════════════════
   .oh-prose — generic PDP long-description (Foger + 20 brands). The lifted
   descriptionHtml ships 4 fixed section H2s (What Makes This… / Available
   Flavors / Key Specifications / Who Should Get This). Was unstyled → give it
   the Hyper Drop prose treatment (Bricolage italic H2 + ink underline accent).
   ═══════════════════════════════════════════════════════════════════════ */
.oh-prose { max-width: 820px; font-size: 16px; line-height: 1.7; color: var(--fl-ink); }
.oh-prose .fl-product-desc { display: block; }
.oh-prose h2 {
  font-family: var(--fl-font-display); font-weight: 800; font-style: italic;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.06; letter-spacing: -0.01em;
  color: var(--fl-ink); margin: 36px 0 16px; padding-bottom: 10px;
  border-bottom: 3px solid var(--fl-ink);
}
.oh-prose h2:first-child { margin-top: 0; }
.oh-prose h3 {
  font-family: var(--fl-font-display); font-weight: 800; font-size: 20px;
  color: var(--fl-purple); margin: 26px 0 10px;
}
.oh-prose p { margin: 0 0 14px; }
.oh-prose ul, .oh-prose ol { margin: 0 0 16px; padding-left: 22px; }
.oh-prose li { margin: 0 0 8px; }
.oh-prose li::marker { color: var(--fl-purple); }
.oh-prose strong { font-weight: 800; color: var(--fl-ink); }
.oh-prose a {
  color: var(--fl-purple); font-weight: 600; text-decoration: underline;
  text-decoration-thickness: 2px; text-underline-offset: 2px;
}
.oh-prose a:hover { color: var(--fl-hot); }
