/* ─────────────────────────────────────────────────────────────────────────
 * adjust-vape.com · core.css — Problem Solver DNA
 * Component primitives: header, footer, buttons, cards, hero, article body
 * 2026-05-21 · v1.0 (Adjust Vape · av-* namespace)
 * ───────────────────────────────────────────────────────────────────────── */

/* ════════ HEADER ════════════════════════════════════════════════════════ */
.av-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--av-hair);
}
.av-header-inner {
  max-width: var(--av-container);
  margin: 0 auto;
  padding: 16px var(--av-pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.av-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--av-blue);
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.av-logo-mark { width: 36px; height: 36px; flex: none; }
.av-logo-text { display: flex; flex-direction: column; line-height: 1; color: var(--av-ink); }
.av-logo-sub { font: 500 10px/1 var(--av-font-body); color: var(--av-ink-3); letter-spacing: 0.12em; margin-top: 4px; text-transform: uppercase; }
.av-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: var(--av-font-body);
  font-weight: 500;
  font-size: 15px;
}
.av-nav a {
  color: var(--av-ink-2);
  padding: 6px 0;
  position: relative;
  transition: color var(--av-t) var(--av-ease);
}
.av-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--av-blue); transform: scaleX(0);
  transform-origin: left; transition: transform var(--av-t) var(--av-ease);
}
.av-nav a:hover { color: var(--av-blue); }
.av-nav a:hover::after { transform: scaleX(1); }

.av-header-actions { display: flex; align-items: center; gap: 16px; }
.av-cart-link {
  position: relative; color: var(--av-ink); padding: 8px;
}
.av-cart-link:hover { color: var(--av-blue); }
.av-cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--av-blue); color: #fff;
  font: 700 11px/1 var(--av-font-body);
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}

.av-burger {
  display: none; width: 28px; height: 22px; position: relative;
  padding: 0; background: none;
}
.av-burger span { display: block; height: 2px; background: var(--av-ink); margin: 4px 0; border-radius: 1px; transition: transform var(--av-t) var(--av-ease); }

.av-mobile-drawer {
  display: none; flex-direction: column; padding: 16px var(--av-pad-x);
  background: #fff; border-top: 1px solid var(--av-hair);
}
.av-mobile-drawer a { padding: 12px 0; color: var(--av-ink); border-bottom: 1px solid var(--av-hair); font-weight: 500; }
.av-mobile-drawer a:last-child { border-bottom: 0; }

@media (max-width: 960px) {
  .av-nav { display: none; }
  .av-burger { display: block; }
  .av-mobile-drawer { display: flex; }
  .av-header-actions { margin-left: auto; }
}

/* ════════ MAIN ══════════════════════════════════════════════════════════ */
.av-main { min-height: 60vh; }

/* ════════ BUTTONS ═══════════════════════════════════════════════════════ */
.av-btn {
  display: inline-flex;
  align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  background: var(--av-blue); color: #fff;
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--av-r-sm);
  box-shadow: var(--av-shadow-blue);
  transition: background var(--av-t) var(--av-ease), transform var(--av-t) var(--av-ease);
}
.av-btn:hover { background: var(--av-blue-deep); color: #fff; transform: translateY(-1px); }
.av-btn:active { transform: translateY(0); }
.av-btn[disabled] { background: var(--av-ink-4); cursor: not-allowed; box-shadow: none; }
.av-btn-ghost {
  background: transparent; color: var(--av-blue);
  border: 2px solid var(--av-blue); box-shadow: none;
}
.av-btn-ghost:hover { background: var(--av-blue); color: #fff; }
.av-btn-launch::before { content: "▶"; font-size: 12px; margin-right: 4px; }

/* ════════ HERO ══════════════════════════════════════════════════════════ */
.av-hero {
  background: var(--av-grad-galaxy);
  color: var(--av-on-dark);
  padding: 80px var(--av-pad-x);
  position: relative;
  overflow: hidden;
}
.av-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
  opacity: 0.7;
}
.av-hero-inner {
  max-width: var(--av-container);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.av-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.av-hero-tagline {
  display: inline-block;
  font: 500 12px/1 var(--av-font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-blue-bright);
  padding: 6px 14px;
  border: 1px solid rgba(77, 133, 255, 0.4);
  border-radius: var(--av-r-pill);
  margin-bottom: 24px;
}
.av-hero-lede {
  color: var(--av-on-dark-2);
  font-size: 17px;
  line-height: 1.6;
  margin: 24px 0 36px;
  max-width: 540px;
}
.av-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.av-hero-image { position: relative; }
.av-hero-image img { width: 100%; max-width: 480px; margin: 0 auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6)); }
@media (max-width: 880px) {
  .av-hero { padding: 60px var(--av-pad-x); }
  .av-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .av-hero-image { order: -1; }
}

/* ════════ CONTAINER + SECTION ═══════════════════════════════════════════ */
.av-section {
  padding: 72px var(--av-pad-x);
}
.av-section-inner {
  max-width: var(--av-container);
  margin: 0 auto;
}
.av-section-dark {
  background: var(--av-space);
  color: var(--av-on-dark);
}
.av-section-dark h2, .av-section-dark h3 { color: #fff; }
.av-section-light { background: var(--av-ice-2); }

/* ════════ H2 with star marker ══════════════════════════════════════════ */
.av-article h2,
.av-section h2 {
  font-family: var(--av-font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.av-article h2::before,
.av-section h2::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--av-blue);
  flex: none;
  box-shadow: 0 0 12px rgba(27,100,246,0.5);
}

/* ════════ PRODUCT CARD GRID ═════════════════════════════════════════════ */
.av-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.av-product-card {
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-sm);
  padding: 24px;
  transition: transform var(--av-t) var(--av-ease), box-shadow var(--av-t) var(--av-ease);
  display: flex; flex-direction: column;
}
.av-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--av-shadow-lg);
  border-color: var(--av-blue);
}
.av-product-card img { aspect-ratio: 1 / 1; object-fit: contain; width: 100%; margin-bottom: 16px; }
.av-product-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.av-product-card p { color: var(--av-ink-3); font-size: 14px; margin: 0 0 20px; }
.av-product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.av-price-sale { color: var(--av-blue); font: 700 22px/1 var(--av-font-display); }
.av-price-strike { color: var(--av-strike); text-decoration: line-through; font-size: 15px; }
.av-product-card .av-btn { margin-top: auto; }

/* ════════ FEATURE GRID ══════════════════════════════════════════════════ */
.av-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.av-feature {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-sm);
  border-top: 3px solid var(--av-blue);
}
.av-feature h3 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--av-blue); margin-bottom: 10px; }
.av-feature p { color: var(--av-ink-2); line-height: 1.55; font-size: 15px; margin: 0; }

/* ════════ FAQ ═══════════════════════════════════════════════════════════ */
.av-faq { border-top: 1px solid var(--av-hair); margin-top: 24px; }
.av-faq details {
  border-bottom: 1px solid var(--av-hair);
  padding: 18px 0;
}
.av-faq summary {
  cursor: pointer;
  font-family: var(--av-font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--av-ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.av-faq summary::-webkit-details-marker { display: none; }
.av-faq summary::after {
  content: "✦";
  color: var(--av-blue);
  font-size: 18px;
  transition: transform var(--av-t) var(--av-ease);
}
.av-faq details[open] summary::after { content: "✧"; transform: rotate(180deg); }
.av-faq-a { padding-top: 12px; color: var(--av-ink-2); line-height: 1.6; font-size: 15px; }

/* ════════ ARTICLE BODY (info pages, blog) ═══════════════════════════════ */
.av-article {
  max-width: 970px;
  margin: 0 auto;
  padding: 60px var(--av-pad-x);
  font-family: var(--av-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--av-ink-2);
}
.av-article h1 {
  font-family: var(--av-font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--av-ink);
  margin-bottom: 24px;
}
.av-article h3 {
  font-size: 20px;
  color: var(--av-ink);
  margin: 32px 0 12px;
}
.av-article p { margin: 0 0 16px; }
.av-article ul, .av-article ol { padding-left: 24px; margin: 16px 0; }
.av-article li { margin-bottom: 6px; }
.av-article li::marker { color: var(--av-blue); }
.av-article a { color: var(--av-blue); border-bottom: 1px solid currentColor; }
.av-article a:hover { color: var(--av-blue-deep); }
.av-article blockquote {
  border-left: 4px solid var(--av-blue);
  background: var(--av-ice);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--av-r-sm) var(--av-r-sm) 0;
}
.av-article table {
  width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px;
}
.av-article th { background: var(--av-space); color: #fff; padding: 12px; text-align: left; font-family: var(--av-font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 13px; }
.av-article td { padding: 12px; border-bottom: 1px solid var(--av-hair); }
.av-article tr:nth-child(even) td { background: var(--av-ice-2); }

/* ════════ TIP / CTA BOX ═════════════════════════════════════════════════ */
.av-tip {
  background: var(--av-space);
  color: var(--av-on-dark);
  padding: 24px 28px;
  border-top: 3px solid var(--av-blue);
  border-radius: var(--av-r-sm);
  margin: 28px 0;
}
.av-tip-label {
  display: inline-block;
  font: 700 11px/1 var(--av-font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--av-blue-bright);
  margin-bottom: 8px;
}
.av-tip p { margin: 0; color: var(--av-on-dark); line-height: 1.6; }

.av-cta-block {
  background: var(--av-space);
  border: 2px solid var(--av-blue);
  border-radius: var(--av-r-sm);
  padding: 40px 32px;
  text-align: center;
  color: var(--av-on-dark);
  margin: 48px 0;
}
.av-cta-block h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.av-cta-block p { color: var(--av-on-dark-2); margin-bottom: 24px; }

/* ════════ FOOTER ════════════════════════════════════════════════════════ */
.av-footer {
  background: var(--av-space);
  color: var(--av-on-dark-2);
  padding: 60px var(--av-pad-x) 32px;
  margin-top: 80px;
}
.av-footer-inner {
  max-width: var(--av-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.av-footer-brand { display: flex; align-items: center; gap: 12px; color: var(--av-blue-bright); margin-bottom: 16px; font-family: var(--av-font-display); font-size: 20px; }
.av-footer-brand strong { color: #fff; }
.av-footer-col p, .av-footer-col address { font-size: 14px; line-height: 1.65; color: var(--av-on-dark-3); font-style: normal; }
.av-footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.av-footer-col a { display: block; padding: 5px 0; color: var(--av-on-dark-2); font-size: 14px; }
.av-footer-col a:hover { color: var(--av-blue-bright); }
.av-footer-bottom {
  max-width: var(--av-container);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: var(--av-on-dark-3);
}
.av-footer-bottom p { margin: 6px 0; }
@media (max-width: 760px) {
  .av-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .av-footer-inner { grid-template-columns: 1fr; }
}

/* ════════ PDP ═══════════════════════════════════════════════════════════ */
.av-pdp {
  max-width: var(--av-container);
  margin: 40px auto;
  padding: 0 var(--av-pad-x);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
.av-pdp-gallery img { width: 100%; max-width: 540px; margin: 0 auto; border-radius: var(--av-r-sm); background: var(--av-ice-2); }
.av-pdp-info h1 {
  font-family: var(--av-font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--av-ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.av-pdp-meta { color: var(--av-ink-3); font-size: 14px; margin-bottom: 24px; }
.av-pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 20px 0; }
.av-pdp-price .av-price-sale { font-size: 36px; }
.av-pdp-price .av-price-strike { font-size: 18px; }
.av-pdp-flavors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
  margin: 20px 0;
}
.av-flavor-pick {
  padding: 10px 12px;
  border: 1.5px solid var(--av-hair-2);
  border-radius: var(--av-r-sm);
  background: #fff;
  font: 500 14px/1.3 var(--av-font-body);
  color: var(--av-ink);
  cursor: pointer;
  text-align: center;
  transition: border-color var(--av-t) var(--av-ease), background var(--av-t) var(--av-ease);
}
.av-flavor-pick[data-stock="outofstock"] {
  color: var(--av-ink-4);
  text-decoration: line-through;
  cursor: not-allowed;
  background: var(--av-ice);
}
.av-flavor-pick:not([data-stock="outofstock"]):hover { border-color: var(--av-blue); background: var(--av-ice-2); }
.av-flavor-pick.is-selected { border-color: var(--av-blue); background: var(--av-blue); color: #fff; }
.av-pdp-qty { display: inline-flex; align-items: center; gap: 12px; margin: 16px 0 24px; }
.av-pdp-qty button { width: 36px; height: 36px; border: 1px solid var(--av-hair-2); border-radius: var(--av-r-sm); background: #fff; font-size: 18px; color: var(--av-ink); }
.av-pdp-qty input { width: 56px; height: 36px; text-align: center; border: 1px solid var(--av-hair-2); border-radius: var(--av-r-sm); font: 600 16px/1 var(--av-font-body); }
@media (max-width: 880px) {
  .av-pdp { grid-template-columns: 1fr; gap: 32px; }
}

/* ════════ UTIL ══════════════════════════════════════════════════════════ */
.av-container { max-width: var(--av-container); margin: 0 auto; padding: 0 var(--av-pad-x); }
.av-eyebrow { display: inline-block; font: 500 12px/1 var(--av-font-display); letter-spacing: 0.16em; text-transform: uppercase; color: var(--av-blue); margin-bottom: 12px; }
.av-lede { color: var(--av-ink-3); font-size: 18px; line-height: 1.6; max-width: 720px; }

/* ════════ IMPORTED LAYOUT (raw 1:1 from adjust-vape.com WP) ═══════════════ */
.av-imported {
  background: #fff;
  padding: 32px 16px 64px;
}
.av-article-head {
  max-width: var(--av-container);
  margin: 0 auto 32px;
  padding: 0 var(--av-pad-x);
}
.av-article-crumb {
  font: 500 13px/1.3 var(--av-font-body);
  color: var(--av-ink-3);
  margin-bottom: 16px;
  padding-top: 8px;
}
.av-article-crumb a {
  color: var(--av-ink-3);
  text-decoration: none;
}
.av-article-crumb a:hover { color: var(--av-blue); }
.av-article-crumb .sep {
  margin: 0 8px;
  color: var(--av-ink-4);
}
.av-article-crumb .current {
  color: var(--av-ink);
  font-weight: 500;
}
.av-article-body {
  /* Tame raw WP/Astra/Elementor inheritance */
  font: 400 17px/1.7 var(--av-font-body);
  color: var(--av-ink);
}
.av-article-body :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--av-font-display);
  color: var(--av-ink);
}
.av-article-body :where(figure, img) {
  max-width: 100%;
  height: auto;
  border-radius: var(--av-r-sm, 6px);
}
.av-article-body :where(table) {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
}
.av-article-body :where(table th, table td) {
  border: 1px solid var(--av-hair);
  padding: 10px 12px;
  text-align: left;
}
.av-article-body :where(table th) {
  background: var(--av-ice);
  font-weight: 600;
}
.av-article-body :where(details) {
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-sm, 6px);
  padding: 12px 16px;
  margin: 12px 0;
  background: var(--av-ice-2);
}
.av-article-body :where(details summary) {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.av-article-body :where(details summary::-webkit-details-marker) { display: none; }
.av-article-body :where(blockquote) {
  border-left: 4px solid var(--av-green);
  background: var(--av-ice-2);
  padding: 16px 20px;
  margin: 16px 0;
  font-style: italic;
  color: var(--av-ink-2);
  border-radius: 0 var(--av-r-sm, 6px) var(--av-r-sm, 6px) 0;
}
.av-article-body :where(button, .add_to_cart_button, .wc-block-components-button, input[type="submit"]) {
  /* Suppress raw WC/Astra buttons — until P5d hand-built add-to-cart wires up */
  display: none;
}
.av-article-body :where(.elementor-section, .elementor-container, .elementor-row, .elementor-column-wrap, .elementor-element) {
  /* Neutralize Elementor structural wrappers so layout is dictated by our typography */
  margin: 0;
  padding: 0;
}
.av-article-body :where(.elementor-widget-image, .elementor-widget-container) {
  margin: 16px 0;
}

.av-article-foot {
  max-width: var(--av-container);
  margin: 48px auto 0;
  padding: 32px var(--av-pad-x) 0;
  border-top: 1px solid var(--av-hair);
  text-align: center;
}
.av-btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  border: 1.5px solid var(--av-ink);
  border-radius: var(--av-r-sm, 6px);
  font: 600 14px/1 var(--av-font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--av-ink);
  text-decoration: none;
  transition: all .15s;
}
.av-btn-ghost:hover { background: var(--av-ink); color: #fff; }

@media (max-width: 880px) {
  .av-imported { padding: 24px 8px 48px; }
  .av-article-body { font-size: 16px; }
}

/* ════════ v2 HOME SECTIONS (handwritten, 2026-05-21) ═══════════════════ */

/* Hero (extends the existing .av-hero / .av-hero-inner) */
.av-hero-copy { max-width: 600px; }
.av-hero-h1 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 16px 0 0;
}
.av-hero-accent { color: var(--av-blue-bright); }
.av-hero-art img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.av-hero-meta {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  font: 500 13px/1.4 var(--av-font-body);
  color: var(--av-on-dark-2);
}
.av-hero-meta li {
  position: relative; padding-left: 18px;
}
.av-hero-meta li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--av-blue-bright);
}

/* Generic section headings */
.av-section-h2 {
  font-family: var(--av-font-display);
  font-size: clamp(26px, 3vw, 34px);
  color: var(--av-ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.av-section-head { margin-bottom: 36px; }
.av-section-head .av-section-h2 { margin-bottom: 8px; }
.av-section-sub {
  color: var(--av-ink-3);
  font-size: 17px;
  margin: 0 0 24px;
  max-width: 680px;
}

/* Button variants */
.av-btn-primary {
  background: var(--av-blue);
  color: #fff;
  border: 0;
}
.av-btn-primary:hover { background: var(--av-blue-deep); color: #fff; }
.av-btn-sm { padding: 10px 18px; font-size: 13px; }
.av-btn-lg { padding: 16px 32px; font-size: 16px; }

/* Pillars */
.av-pillars { padding: 72px 0; background: var(--av-ice-2); }
.av-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.av-pillar {
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-lg);
  padding: 28px 24px;
  box-shadow: var(--av-shadow-sm);
}
.av-pillar h3 {
  font-family: var(--av-font-display);
  font-size: 19px;
  color: var(--av-ink);
  margin: 12px 0 8px;
}
.av-pillar p { color: var(--av-ink-2); font-size: 15px; line-height: 1.6; margin: 0; }
.av-pillar-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--av-ice); color: var(--av-blue-deep);
  border-radius: var(--av-r-md);
  font-size: 24px; font-weight: 700;
}
@media (max-width: 880px) { .av-pillar-grid { grid-template-columns: 1fr; } }

/* Shop grid */
.av-shop { padding: 72px 0; background: #fff; }
.av-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.av-card {
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--av-t) var(--av-ease), box-shadow var(--av-t) var(--av-ease);
}
.av-card:hover { transform: translateY(-3px); box-shadow: var(--av-shadow-md); }
.av-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  background: var(--av-ice-2);
  overflow: hidden;
}
.av-card-media img { width: 100%; height: 100%; object-fit: cover; }
.av-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--av-sale); color: #fff;
  font: 700 11px/1 var(--av-font-display);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: var(--av-r-sm);
}
.av-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.av-card-title {
  font-family: var(--av-font-display);
  font-size: 19px;
  margin: 0 0 8px;
  line-height: 1.25;
}
.av-card-title a { color: var(--av-ink); }
.av-card-title a:hover { color: var(--av-blue); }
.av-card-pitch { color: var(--av-ink-2); font-size: 14px; line-height: 1.55; margin: 0 0 14px; flex: 1; }
.av-card-meta {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; gap: 14px;
  font: 500 12px/1 var(--av-font-body);
  color: var(--av-ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.av-card-meta strong { color: var(--av-ink); font-weight: 700; }
.av-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 14px; border-top: 1px solid var(--av-hair);
}
.av-card-price { display: flex; flex-direction: column; gap: 2px; }
.av-card-price .av-price-sale { font: 700 22px/1 var(--av-font-display); color: var(--av-sale); }
.av-card-price .av-price-was { font: 500 13px/1 var(--av-font-body); color: var(--av-strike); text-decoration: line-through; }
@media (max-width: 880px) { .av-shop-grid { grid-template-columns: 1fr; } }

/* OOS strip */
.av-oos-strip {
  background: var(--av-ice-2);
  border: 1px dashed var(--av-hair-2);
  border-radius: var(--av-r-lg);
  padding: 20px 24px;
}
.av-oos-strip-h {
  font: 700 12px/1 var(--av-font-display);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--av-ink-3); margin: 0 0 12px;
}
.av-oos-strip ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.av-oos-strip li { font-size: 14px; }
.av-oos-strip a { color: var(--av-ink); border-bottom: 1px dotted var(--av-ink-3); }
.av-oos-strip a:hover { color: var(--av-blue); border-bottom-color: var(--av-blue); }
.av-oos-tag { color: var(--av-ink-4); font-size: 12px; margin-left: 6px; }

/* Flavor CTA band */
.av-flavor-cta { padding: 64px 0; background: var(--av-space); color: var(--av-on-dark); }
.av-flavor-cta .av-section-h2 { color: #fff; margin-bottom: 12px; }
.av-flavor-cta p { color: var(--av-on-dark-2); margin: 0; max-width: 640px; font-size: 16px; line-height: 1.6; }
.av-flavor-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.av-flavor-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
@media (max-width: 880px) { .av-flavor-cta-inner { grid-template-columns: 1fr; } }

/* Trust grid */
.av-trust { padding: 72px 0; background: #fff; }
.av-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.av-trust-item {
  background: var(--av-trust-bg);
  border: 1px solid var(--av-trust-bd);
  border-radius: var(--av-r-lg);
  padding: 22px;
}
.av-trust-item h3 {
  font-family: var(--av-font-display);
  font-size: 17px;
  color: var(--av-ink);
  margin: 0 0 8px;
}
.av-trust-item p { color: var(--av-ink-2); font-size: 14px; line-height: 1.6; margin: 0; }
.av-trust-item a { color: var(--av-blue-deep); border-bottom: 1px solid currentColor; }
@media (max-width: 980px) { .av-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .av-trust-grid { grid-template-columns: 1fr; } }

/* FAQ home */
.av-faq-home { padding: 64px 0; background: var(--av-ice-2); }
.av-faq-q {
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-md);
  margin-bottom: 10px;
  padding: 14px 18px;
}
.av-faq-q[open] { border-color: var(--av-blue); }
.av-faq-q summary {
  cursor: pointer;
  font-family: var(--av-font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--av-ink);
  list-style: none;
}
.av-faq-q summary::-webkit-details-marker { display: none; }
.av-faq-q summary::after { content: "+"; float: right; color: var(--av-blue); font-size: 18px; }
.av-faq-q[open] summary::after { content: "−"; }
.av-faq-a { color: var(--av-ink-2); font-size: 15px; line-height: 1.65; padding-top: 10px; }
.av-faq-a p { margin: 0 0 8px; }
.av-faq-a a { color: var(--av-blue-deep); border-bottom: 1px solid currentColor; }
.av-faq-more { margin: 18px 0 0; }
.av-faq-more a { color: var(--av-blue-deep); font-weight: 600; border-bottom: 1px solid currentColor; }

/* Final CTA */
.av-final-cta { padding: 72px 0; background: var(--av-grad-galaxy); color: #fff; text-align: center; }
.av-final-cta h2 {
  font-family: var(--av-font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin: 0 0 24px;
}
.av-final-cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.av-final-cta-note { color: var(--av-on-dark-3); font-size: 13px; margin: 24px 0 0; }

/* ════════ v2 PDP LAYOUT (handwritten, 2026-05-21) ══════════════════════ */

/* Breadcrumb (used by PDP layout instead of the legacy .av-article-crumb) */
.av-crumb {
  background: #fff;
  border-bottom: 1px solid var(--av-hair);
  padding: 14px 0;
  font: 500 13px/1.3 var(--av-font-body);
  color: var(--av-ink-3);
}
.av-crumb a { color: var(--av-ink-3); }
.av-crumb a:hover { color: var(--av-blue); }
.av-crumb .sep { margin: 0 8px; color: var(--av-ink-4); }
.av-crumb .current { color: var(--av-ink); font-weight: 500; }

/* PDP hero */
.av-pdp-hero { background: #fff; padding: 40px 0 56px; }
.av-pdp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.av-pdp-media {
  background: var(--av-ice-2);
  border-radius: var(--av-r-lg);
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
}
.av-pdp-media img { max-width: 100%; height: auto; }
.av-pdp-summary { max-width: 560px; }
.av-pdp-h1 {
  font-family: var(--av-font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--av-ink);
  line-height: 1.15;
  margin: 14px 0 14px;
}
.av-pdp-tagline {
  color: var(--av-ink-2);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.av-pdp-bullets {
  list-style: none; padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--av-hair);
}
.av-pdp-bullets li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--av-hair);
  color: var(--av-ink-2);
  font-size: 14px;
  line-height: 1.5;
}
.av-pdp-bullets li::before {
  content: "✓";
  position: absolute; left: 4px; top: 10px;
  color: var(--av-blue);
  font-weight: 700;
}
@media (max-width: 880px) { .av-pdp-hero-grid { grid-template-columns: 1fr; gap: 32px; } }

/* PDP buy widget (price + flavors + qty + CTA + trust) */
.av-pdp-buy {
  border: 1px solid var(--av-hair-2);
  border-radius: var(--av-r-lg);
  padding: 22px;
  background: #fff;
}
.av-pdp-buy .av-pdp-price {
  display: flex; align-items: baseline; gap: 12px; margin: 0 0 18px;
  flex-wrap: wrap;
}
.av-pdp-sale {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--av-sale);
}
.av-pdp-reg {
  font: 500 16px/1 var(--av-font-body);
  color: var(--av-strike);
  text-decoration: line-through;
}
.av-pdp-save {
  font: 600 12px/1 var(--av-font-body);
  background: var(--av-trust-bg);
  color: var(--av-blue-deep);
  padding: 4px 10px;
  border-radius: var(--av-r-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.av-pdp-oos {
  font-family: var(--av-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--av-ink-3);
}
.av-pdp-label {
  display: block;
  font: 600 13px/1 var(--av-font-body);
  letter-spacing: 0.04em;
  color: var(--av-ink);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.av-pdp-flavors .av-flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}
.av-pdp-add {
  display: block;
  width: 100%;
  padding: 16px;
  font: 700 15px/1 var(--av-font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--av-blue);
  color: #fff;
  border: 0;
  border-radius: var(--av-r-sm);
  cursor: pointer;
  transition: background var(--av-t) var(--av-ease);
}
.av-pdp-add:hover { background: var(--av-blue-deep); }
.av-pdp-add[disabled] { background: var(--av-ink-4); cursor: not-allowed; }
.av-pdp-err { color: var(--av-err); font-size: 13px; margin: 8px 0 0; }
.av-pdp-notify {
  background: var(--av-ice-2);
  border: 1px dashed var(--av-hair-2);
  border-radius: var(--av-r-sm);
  padding: 14px 16px;
}
.av-pdp-notify p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--av-ink-2); }
.av-pdp-notify a { color: var(--av-blue-deep); border-bottom: 1px solid currentColor; }
.av-pdp-trust {
  list-style: none; padding: 18px 0 0; margin: 16px 0 0;
  border-top: 1px solid var(--av-hair);
  display: grid; gap: 6px;
  font-size: 13px; color: var(--av-ink-2);
}

/* Quick spec table */
.av-pdp-spec { padding: 56px 0; background: var(--av-ice-2); }
.av-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 0;
}
.av-spec-row {
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-md);
  padding: 14px 18px;
}
.av-spec-row dt {
  font: 600 11px/1 var(--av-font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--av-ink-3);
  margin-bottom: 6px;
}
.av-spec-row dd {
  margin: 0;
  font: 600 16px/1.3 var(--av-font-body);
  color: var(--av-ink);
}

/* Why this model */
.av-pdp-why { padding: 56px 0; background: #fff; }
.av-pdp-why-inner { max-width: 760px; }
.av-pdp-why p {
  color: var(--av-ink-2);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.av-pdp-why a { color: var(--av-blue-deep); border-bottom: 1px solid currentColor; }

/* Flavor vibes */
.av-pdp-vibes { padding: 56px 0; background: var(--av-ice-2); }
.av-vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.av-vibe-card {
  background: #fff;
  border: 1px solid var(--av-hair);
  border-radius: var(--av-r-md);
  padding: 18px 20px;
}
.av-vibe-card h3 {
  font-family: var(--av-font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--av-blue-deep);
  margin: 0 0 10px;
}
.av-vibe-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.av-vibe-card li {
  background: var(--av-ice);
  color: var(--av-ink);
  font: 500 13px/1 var(--av-font-body);
  padding: 6px 10px;
  border-radius: var(--av-r-pill);
}

/* Raw imported body — demoted to "more about" details */
.av-pdp-detail { padding: 32px 0 56px; background: #fff; }
.av-pdp-detail-block {
  border-top: 1px solid var(--av-hair);
  padding-top: 24px;
}
.av-pdp-detail-block > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.av-pdp-detail-block > summary::-webkit-details-marker { display: none; }
.av-pdp-detail-block > summary::after {
  content: "▾ expand";
  margin-left: auto;
  font: 500 13px/1 var(--av-font-body);
  color: var(--av-blue-deep);
  letter-spacing: 0.04em;
}
.av-pdp-detail-block[open] > summary::after { content: "▴ collapse"; }
.av-pdp-detail-block > summary h2 { margin: 0; }
.av-pdp-detail-hint { color: var(--av-ink-3); font-size: 13px; }
.av-pdp-detail-body {
  margin-top: 24px;
  border-top: 1px dashed var(--av-hair);
  padding-top: 24px;
}

/* PDP foot CTAs */
.av-pdp-foot { padding: 32px 0 64px; background: var(--av-ice-2); }
.av-pdp-foot-inner {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
