/* ═══════════════════════════════════════════════════════════════════
   Lost Mary — page component styles (sits on top of tokens + core)
   2026-05-23 — written from scratch for the new lm-* classes used in
   home / shop / about-us / faq / contact / wholesale / instructions /
   ingredients / price / flavors-hub njk templates. These classes are
   NOT in core.css (tokens + utilities that core.css does not cover
   namespace rename — lostmary-only utility helpers).
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Top announce bar (already in base.njk) ─────────────────── */
.lm-announce {
  background: var(--lm-ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 8px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.lm-announce-warning { opacity: 0.85; }
.lm-announce-promo { font-weight: 600; }
.lm-emph-purple { color: var(--lm-accent-pale); }
.lm-emph-yellow {
  background: var(--lm-yellow);
  color: var(--lm-ink);
  padding: 1px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ─── Container ──────────────────────────────────────────────── */
.lm-container {
  max-width: var(--lm-max-w);
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}
.lm-container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}

/* ─── Section ────────────────────────────────────────────────── */
.lm-section {
  padding: 72px 0;
  background: var(--lm-paper);
}
.lm-section-soft {
  background: var(--lm-paper-2);
}
.lm-section-lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--lm-ink-muted);
  max-width: 720px;
  margin: 12px 0 32px;
}
.lm-section-cta {
  margin-top: 36px;
  text-align: center;
}

/* ─── Eyebrow (above H1) ─────────────────────────────────────── */
.lm-eyebrow {
  display: inline-block;
  font-family: var(--lm-font-nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lm-accent);
  background: var(--lm-accent-tint);
  padding: 5px 12px;
  border-radius: var(--lm-r-pill);
  margin-bottom: 16px;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.lm-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--lm-paper-2) 0%, var(--lm-paper) 100%);
  border-bottom: 1px solid var(--lm-rule);
}
.lm-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lm-hero-text h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 20px;
}
.lm-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lm-ink-2);
  margin: 0 0 28px;
}
.lm-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lm-hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: var(--lm-ink-muted);
}
.lm-hero-trust li::before {
  content: "✓";
  color: var(--lm-accent);
  font-weight: 700;
  margin-right: 6px;
}
.lm-hero-art img {
  width: 100%;
  border-radius: var(--lm-r-lg);
  box-shadow: var(--lm-shadow-elev);
}
@media (max-width: 880px) {
  .lm-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .lm-hero-text h1 { font-size: 40px; }
}

/* ─── Button ─────────────────────────────────────────────────── */
.lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lm-font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--lm-r-md);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.18s ease;
}
.lm-btn-purple {
  background: linear-gradient(180deg, var(--lm-accent-2) 0%, var(--lm-accent) 100%);
  color: #fff !important;
}
.lm-btn-purple:hover {
  background: linear-gradient(180deg, var(--lm-accent) 0%, #5e3f96 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(122, 86, 187, 0.30);
}
.lm-btn-ghost {
  background: transparent;
  color: var(--lm-accent) !important;
  border: 1.5px solid var(--lm-accent);
}
.lm-btn-ghost:hover {
  background: var(--lm-accent);
  color: #fff !important;
}
.lm-btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--lm-r-lg);
}
.lm-btn-red { /* legacy alias used in base.njk cart panel */
  background: linear-gradient(180deg, var(--lm-accent-2) 0%, var(--lm-accent) 100%);
  color: #fff !important;
}

/* ─── Product grid (home + shop) ─────────────────────────────── */
.lm-product-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}
.lm-grid-2 { grid-template-columns: repeat(2, 1fr); }
.lm-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .lm-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lm-grid-3, .lm-grid-2 { grid-template-columns: 1fr; }
}

.lm-product-card {
  display: block;
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-lg);
  padding: 20px;
  text-decoration: none;
  color: var(--lm-ink);
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lm-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lm-shadow-elev);
  border-color: var(--lm-accent);
  color: var(--lm-ink);
}
.lm-product-card img {
  width: 100%;
  border-radius: var(--lm-r-md);
  margin-bottom: 16px;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.lm-product-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  padding-bottom: 0;
}
.lm-product-card h3::after { display: none; }
.lm-card-feature {
  border-color: var(--lm-accent);
  background: linear-gradient(180deg, var(--lm-accent-tint) 0%, var(--lm-paper) 60%);
}
.lm-card-tagline {
  font-size: 14px;
  color: var(--lm-ink-muted);
  line-height: 1.5;
  margin: 0 0 12px;
}
.lm-card-price {
  font-size: 18px;
  color: var(--lm-accent);
  margin: 0;
  font-weight: 600;
}

/* ─── Tags / badges ──────────────────────────────────────────── */
.lm-tag {
  display: inline-block;
  font-family: var(--lm-font-nav);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--lm-r-pill);
  margin-bottom: 12px;
}
.lm-tag--purple {
  background: var(--lm-accent);
  color: #fff;
}
.lm-tag--pale {
  background: var(--lm-accent-tint);
  color: var(--lm-accent);
}
.lm-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--lm-r-sm);
  font-size: 12px;
  font-weight: 600;
}
.lm-badge--purple {
  background: var(--lm-accent);
  color: #fff;
}
.lm-badge--pale {
  background: var(--lm-accent-tint);
  color: var(--lm-accent);
}

/* ─── USP grid + cards (home, about, wholesale) ──────────────── */
.lm-usp-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}
.lm-usp-card {
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-left: 4px solid var(--lm-accent);
  border-radius: var(--lm-r-md);
  padding: 24px;
}
.lm-usp-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  padding-bottom: 0;
}
.lm-usp-card h3::after { display: none; }
.lm-usp-card p {
  margin: 0;
  color: var(--lm-ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Flavor preview chips (home) ────────────────────────────── */
.lm-flavor-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.lm-flavor-chip {
  display: inline-block;
  padding: 8px 16px;
  background: var(--lm-paper);
  color: var(--lm-ink);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-pill);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s ease;
}
.lm-flavor-chip:hover {
  background: var(--lm-accent);
  color: #fff !important;
  border-color: var(--lm-accent);
  transform: translateY(-2px);
}

/* ─── Flavor grid (collections/lost-mary-vape-flavors) ───────── */
.lm-flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.lm-flavor-card {
  display: block;
  padding: 18px 20px;
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-left: 4px solid var(--lm-accent-pale);
  border-radius: var(--lm-r-md);
  text-decoration: none;
  color: var(--lm-ink);
  transition: all 0.15s ease;
}
.lm-flavor-card:hover {
  background: var(--lm-accent-tint);
  border-left-color: var(--lm-accent);
  transform: translateY(-2px);
  color: var(--lm-ink);
}
.lm-flavor-card h3 {
  font-family: var(--lm-font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  padding-bottom: 0;
}
.lm-flavor-card h3::after { display: none; }
.lm-flavor-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* ─── Guide cards (home) ─────────────────────────────────────── */
.lm-guide-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.lm-guide-card {
  display: block;
  padding: 24px;
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md);
  text-decoration: none;
  color: var(--lm-ink);
  transition: all 0.15s ease;
}
.lm-guide-card:hover {
  border-color: var(--lm-accent);
  background: var(--lm-accent-tint);
  color: var(--lm-ink);
  transform: translateY(-2px);
}
.lm-guide-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  padding-bottom: 0;
}
.lm-guide-card h3::after { display: none; }
.lm-guide-card p {
  margin: 0;
  color: var(--lm-ink-2);
  line-height: 1.55;
}

/* ─── FAQ (details/summary) ──────────────────────────────────── */
.lm-faq {
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md);
  padding: 0;
  margin-bottom: 12px;
}
.lm-faq summary {
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-family: var(--lm-font-display);
  font-size: 17px;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.lm-faq summary::-webkit-details-marker { display: none; }
.lm-faq summary::after {
  content: "▼";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lm-accent);
  font-size: 12px;
  transition: transform 0.18s ease;
}
.lm-faq[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.lm-faq p,
.lm-faq ul {
  padding: 0 24px 18px;
  margin: 0 0 6px;
  color: var(--lm-ink-2);
  line-height: 1.6;
}
.lm-faq ul { padding-left: 48px; }
.lm-faq li { margin-bottom: 4px; }

/* ─── Feature list (bullets with bold lead) ──────────────────── */
.lm-feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.lm-feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--lm-rule-lite);
}
.lm-feature-list li::before {
  content: "→";
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--lm-accent);
  font-weight: 600;
}
.lm-feature-list li:last-child { border-bottom: 0; }

/* ─── Step list (ordered, numbered chips) ────────────────────── */
.lm-step-list {
  list-style: none;
  counter-reset: lmstep;
  padding: 0;
  margin: 16px 0;
}
.lm-step-list li {
  counter-increment: lmstep;
  padding: 12px 0 12px 48px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--lm-rule-lite);
}
.lm-step-list li::before {
  content: counter(lmstep);
  position: absolute;
  left: 4px;
  top: 12px;
  width: 32px;
  height: 32px;
  background: var(--lm-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* ─── Link list (about, wholesale, etc) ──────────────────────── */
.lm-link-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.lm-link-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--lm-rule-lite);
  line-height: 1.55;
}
.lm-link-list li:last-child { border-bottom: 0; }
.lm-link-list a {
  color: var(--lm-accent);
  text-decoration: none;
  font-weight: 500;
}
.lm-link-list a:hover { text-decoration: underline; }

.lm-link-purple {
  color: var(--lm-accent) !important;
  font-weight: 500;
}
.lm-link-purple:hover { text-decoration: underline; }

/* ─── Body anchor default — keep inline content links visible ─────
   Section paragraphs / FAQ answers / list items: any <a> without a
   custom class inherits the purple style so internal links don't
   disappear into body text. Scoped to .lm-section + .lm-faq + .lm-pdp-
   so footer / nav / cart / button-class anchors stay unaffected.
*/
.lm-section a:not([class]):not([role]),
.lm-faq a:not([class]),
.lm-pdp-section a:not([class]),
.lm-feature-card a:not([class]),
.lm-feature-list a:not([class]),
.lm-policy-bullets a:not([class]),
.lm-puff-tier a:not([class]) {
  color: var(--lm-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lm-section a:not([class]):not([role]):hover,
.lm-faq a:not([class]):hover,
.lm-pdp-section a:not([class]):hover,
.lm-feature-card a:not([class]):hover,
.lm-feature-list a:not([class]):hover,
.lm-policy-bullets a:not([class]):hover,
.lm-puff-tier a:not([class]):hover {
  text-decoration-thickness: 2px;
}

/* ─── Feature grid (ingredients page 2x2 cards) ──────────────── */
.lm-feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}
.lm-feature-card {
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-top: 4px solid var(--lm-accent);
  border-radius: var(--lm-r-md);
  padding: 24px;
}
.lm-feature-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  padding-bottom: 0;
}
.lm-feature-card h3::after { display: none; }
.lm-feature-card p {
  margin: 0;
  color: var(--lm-ink-2);
  line-height: 1.6;
}

/* ─── Contact grid (2-col cards on /contact/) ────────────────── */
.lm-contact-grid {
  display: grid;
  gap: 20px;
  margin: 24px 0 40px;
}
.lm-contact-card {
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-lg);
  padding: 28px;
  box-shadow: var(--lm-shadow-card);
}
.lm-contact-card h2 {
  font-size: 22px;
  margin: 0 0 12px;
  padding-bottom: 8px;
}
.lm-contact-card p {
  margin: 0 0 12px;
  line-height: 1.6;
}

/* ─── Price table ────────────────────────────────────────────── */
.lm-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}
.lm-price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--lm-paper);
  border-radius: var(--lm-r-md);
  overflow: hidden;
  box-shadow: var(--lm-shadow-card);
}
.lm-price-table th {
  background: var(--lm-accent);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  font-family: var(--lm-font-display);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.lm-price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--lm-rule);
  font-size: 14px;
  line-height: 1.5;
}
.lm-price-table tbody tr:nth-child(even) { background: var(--lm-accent-tint); }
.lm-price-table tbody tr:hover { background: var(--lm-paper-4); }
.lm-price-table td:first-child { font-weight: 600; }
.lm-price-table a { color: var(--lm-accent); }
.lm-price-table a:hover { text-decoration: underline; }

/* ─── Muted text ─────────────────────────────────────────────── */
.lm-muted {
  color: var(--lm-ink-muted);
  font-size: 14px;
}
.lm-fs-sm { font-size: 13px; }

/* ─── Visually-hidden ────────────────────────────────────────── */
.lm-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   Header / nav (light theme override — base.njk uses these)
   The .lm-topnav from core.css was sized for dark cosmic-retail theme;
   here we override to light + purple for Community Purple DNA.
   ═══════════════════════════════════════════════════════════════════ */

.lm-topnav {
  background: var(--lm-paper);
  border-bottom: 1px solid var(--lm-rule);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--lm-max-w);
  margin: 0 auto;
  position: relative;
}
.lm-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--lm-ink);
}
.lm-brand-logo {
  height: 50px;
  width: auto;
}
.lm-nav-primary {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.lm-nav-primary > li > a,
.lm-nav-primary > li > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--lm-font-nav);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--lm-ink);
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: var(--lm-r-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.lm-nav-primary > li > a:hover,
.lm-nav-primary > li > button:hover {
  color: var(--lm-accent);
  background: var(--lm-accent-tint);
}
.lm-nav-caret { font-size: 10px; opacity: 0.6; }
.lm-nav-has-sub { position: relative; }
.lm-nav-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md);
  box-shadow: var(--lm-shadow-elev);
  padding: 14px;
  min-width: 320px;
  z-index: 50;
  margin-top: 4px;
}
.lm-nav-sub-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lm-nav-sub-col a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--lm-ink-2);
  text-decoration: none;
  border-radius: var(--lm-r-sm);
  white-space: nowrap;
}
.lm-nav-sub-col a:hover { background: var(--lm-accent-tint); color: var(--lm-accent); }
.lm-nav-sub-heading {
  font-family: var(--lm-font-nav);
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lm-ink-muted) !important;
  margin-bottom: 6px;
  pointer-events: none;
}
.lm-nav-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--lm-accent);
  margin-left: 6px;
  letter-spacing: 0.06em;
}

.lm-nav-search {
  display: flex;
  align-items: center;
  background: var(--lm-paper-2);
  border-radius: var(--lm-r-pill);
  padding: 4px 4px 4px 14px;
  width: 200px;
}
.lm-nav-search input {
  border: 0;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 13px;
  color: var(--lm-ink);
}
.lm-nav-search button {
  background: var(--lm-accent);
  color: #fff;
  border: 0;
  border-radius: var(--lm-r-pill);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lm-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--lm-rule);
  color: var(--lm-ink);
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.lm-nav-icon:hover { border-color: var(--lm-accent); color: var(--lm-accent); }
.lm-cart-trigger { background: transparent; }
.lm-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--lm-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.lm-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.lm-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--lm-ink);
  border-radius: 2px;
}

@media (max-width: 960px) {
  .lm-nav-primary, .lm-nav-search, .lm-nav-icon[href="/my-account/"] { display: none; }
  .lm-nav-toggle { display: flex; }
  .lm-topnav { padding: 12px 16px; gap: 12px; }
}

.lm-mobile-dialog {
  border: 0;
  padding: 0;
  width: 90vw;
  max-width: 420px;
  border-radius: var(--lm-r-lg);
  background: var(--lm-paper);
  box-shadow: var(--lm-shadow-elev);
}
.lm-mobile-dialog::backdrop { background: rgba(0,0,0,0.4); }
.lm-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  color: var(--lm-ink-muted);
}
.lm-mobile-list {
  list-style: none;
  padding: 24px;
  margin: 0;
}
.lm-mobile-item { padding: 8px 0; border-bottom: 1px solid var(--lm-rule-lite); }
.lm-mobile-item a { color: var(--lm-ink); text-decoration: none; font-size: 16px; font-weight: 500; display: block; padding: 4px 0; }
.lm-mobile-item a:hover { color: var(--lm-accent); }
.lm-mobile-item details summary { font-weight: 700; padding: 6px 0; cursor: pointer; list-style: none; }
.lm-mobile-item details ul { list-style: none; padding-left: 12px; margin: 6px 0 0; }
.lm-mobile-item details ul a { padding: 6px 0; font-size: 14px; font-weight: 400; color: var(--lm-ink-2); }
.lm-mobile-divider { border-top: 2px solid var(--lm-accent-tint); margin: 12px 0; }

/* ═══════════════════════════════════════════════════════════════════
   Footer (light theme — overrides core.css dark theme)
   ═══════════════════════════════════════════════════════════════════ */

.lm-footer {
  background: var(--lm-paper-2);
  color: var(--lm-ink-2);
  padding: 64px 0 24px;
  margin-top: 80px;
  border-top: 4px solid var(--lm-accent);
}
.lm-footer-inner {
  max-width: var(--lm-max-w);
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}
.lm-footer-top-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lm-rule);
}
@media (max-width: 880px) { .lm-footer-top-row { grid-template-columns: 1fr; gap: 32px; } }

.lm-footer-subscribe {}
.lm-footer-sub-hook { font-size: 14px; color: var(--lm-ink-muted); margin: 0 0 6px; }
.lm-footer-sub-heading { font-size: 22px; margin: 0 0 8px; padding-bottom: 0; }
.lm-footer-sub-heading::after { display: none; }
.lm-footer-sub-desc { font-size: 14px; color: var(--lm-ink-2); margin: 0 0 16px; }
.lm-footer-sub-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
}
.lm-footer-sub-form input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--lm-bd);
  border-radius: var(--lm-r-md);
  font-size: 14px;
  font-family: inherit;
  background: var(--lm-paper);
  color: var(--lm-ink);
}
.lm-footer-sub-msg { font-size: 13px; margin-top: 8px; }
.lm-footer-sub-msg.is-ok { color: var(--lm-ok); }
.lm-footer-sub-msg.is-err { color: var(--lm-err); }

.lm-footer-about {}
.lm-footer-about-heading {
  font-size: 18px;
  margin: 0 0 12px;
  padding-bottom: 6px;
}
.lm-footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--lm-ink-2);
}

.lm-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--lm-rule);
}
@media (max-width: 880px) { .lm-footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px) { .lm-footer-links { grid-template-columns: 1fr; gap: 20px; } }

.lm-footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lm-footer-link-label {
  font-family: var(--lm-font-nav);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--lm-accent);
  margin-bottom: 6px;
}
.lm-footer-link-group a {
  font-size: 14px;
  color: var(--lm-ink-2);
  text-decoration: none;
  padding: 3px 0;
}
.lm-footer-link-group a:hover { color: var(--lm-accent); }

.lm-footer-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--lm-rule);
  align-items: center;
}
.lm-footer-meta-info {}
.lm-footer-warehouse {
  font-size: 13px;
  color: var(--lm-ink-2);
  line-height: 1.6;
  margin: 0;
}
.lm-footer-warehouse a { color: var(--lm-accent); }
.lm-footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.lm-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lm-paper);
  color: var(--lm-ink-2);
  border: 1px solid var(--lm-rule);
  text-decoration: none;
  transition: all 0.15s ease;
}
.lm-footer-social a:hover {
  background: var(--lm-accent);
  color: #fff;
  border-color: var(--lm-accent);
}

.lm-footer-legal { padding: 20px 0 0; }
.lm-footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--lm-ink-muted);
}
.lm-footer-warning { font-weight: 500; }
.lm-footer-disclaimer {
  font-size: 12px;
  color: var(--lm-ink-muted);
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 1000px;
}
.lm-footer-disclaimer strong { color: var(--lm-ink-2); }

/* ═══════════════════════════════════════════════════════════════════
   PDP layout (Community Purple light theme)
   Used by src/products/{slug}/index.njk + components/product-cart.njk
   Authored 2026-05-23 to replace dark cosmic-retail fork CSS.
   ═══════════════════════════════════════════════════════════════════ */

/* Hero (image | info two-column) */
.lm-pdp-hero {
  background: var(--lm-paper);
  padding: 40px 0 32px;
}
.lm-pdp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: flex-start;
  max-width: var(--lm-max-w);
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}
@media (max-width: 900px) {
  .lm-pdp-hero-grid { grid-template-columns: 1fr; gap: 24px; }
}
.lm-pdp-media {
  background: var(--lm-paper-3);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md, 12px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lm-pdp-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}
.lm-pdp-info { display: flex; flex-direction: column; gap: 14px; }
.lm-pdp-eyebrow {
  font-family: var(--lm-font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lm-accent);
  margin: 0;
}
.lm-pdp-title {
  font-family: var(--lm-font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--lm-ink);
  margin: 0;
}
@media (max-width: 768px) {
  .lm-pdp-title { font-size: 26px; }
}
.lm-pdp-tagline {
  font-size: 15px;
  color: var(--lm-ink-2);
  line-height: 1.5;
  margin: 0;
}

/* Price block */
.lm-pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--lm-rule);
  border-bottom: 1px solid var(--lm-rule);
}
.lm-pdp-price-now {
  font-family: var(--lm-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--lm-ink);
}
.lm-pdp-price-was {
  font-size: 16px;
  color: var(--lm-ink-muted);
  text-decoration: line-through;
}
.lm-pdp-price-rewards {
  margin-left: auto;
  font-size: 12px;
  color: var(--lm-accent);
  font-weight: 600;
  background: var(--lm-accent-tint);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Flavor selector grid */
.lm-pdp-flavor-block { display: flex; flex-direction: column; gap: 10px; }
.lm-pdp-flavor-label {
  font-size: 14px;
  color: var(--lm-ink-2);
  margin: 0;
}
.lm-pdp-flavor-label strong { color: var(--lm-ink); font-weight: 600; }
.lm-pdp-flavor-count { color: var(--lm-ink-muted); margin-left: 6px; font-size: 13px; }
.lm-pdp-flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.lm-pdp-flavor-swatch {
  background: var(--lm-paper);
  border: 1.5px solid var(--lm-rule);
  border-radius: var(--lm-r-sm, 8px);
  padding: 8px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  font: inherit;
  position: relative;
}
.lm-pdp-flavor-swatch img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.lm-pdp-flavor-swatch .lm-pdp-flavor-name {
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
  color: var(--lm-ink-2);
  font-weight: 500;
}
.lm-pdp-flavor-swatch:hover:not(:disabled) {
  border-color: var(--lm-accent);
  background: var(--lm-accent-tint);
}
.lm-pdp-flavor-swatch.is-selected {
  border-color: var(--lm-accent);
  background: var(--lm-accent-tint);
  box-shadow: 0 0 0 2px var(--lm-accent-pale);
}
.lm-pdp-flavor-swatch.is-oos {
  opacity: 0.45;
  cursor: not-allowed;
}
.lm-pdp-flavor-swatch.is-oos img { filter: grayscale(100%); }
.lm-pdp-flavor-oos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  color: var(--lm-ink-2);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: inherit;
}

/* Action row — qty + add to cart */
.lm-pdp-action-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 8px;
}
.lm-pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--lm-rule);
  border-radius: var(--lm-r-sm, 8px);
  overflow: hidden;
  background: var(--lm-paper);
}
.lm-qty-btn {
  width: 38px;
  height: 100%;
  background: var(--lm-paper-3);
  border: 0;
  color: var(--lm-ink);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
.lm-qty-btn:hover { background: var(--lm-paper-4); }
.lm-pdp-qty input {
  width: 48px;
  height: 100%;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--lm-ink);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.lm-pdp-qty input::-webkit-outer-spin-button,
.lm-pdp-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.lm-pdp-add {
  flex: 1;
  min-height: 48px;
}
.lm-pdp-msg {
  margin: 4px 0 0;
  padding: 8px 12px;
  background: var(--lm-accent-tint);
  color: var(--lm-accent);
  border-radius: var(--lm-r-sm, 8px);
  font-size: 13px;
}
.lm-pdp-trust {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--lm-rule);
}
.lm-pdp-trust li {
  font-size: 13px;
  color: var(--lm-ink-2);
  line-height: 1.5;
}

/* PDP body sections (Why / Features / Spec / Flavors / FAQ) */
.lm-pdp-section { padding: 40px 0; }
.lm-pdp-section-soft { padding: 40px 0; background: var(--lm-paper-3); }
.lm-pdp-section h2 {
  font-family: var(--lm-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--lm-ink);
  margin: 0 0 16px;
  line-height: 1.2;
}
.lm-pdp-section h3 {
  font-family: var(--lm-font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--lm-ink);
  margin: 0 0 8px;
}
.lm-pdp-section p {
  color: var(--lm-ink-2);
  line-height: 1.6;
  font-size: 15px;
  margin: 0 0 12px;
}
.lm-spec-table {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 24px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lm-rule);
  padding-top: 12px;
}
.lm-spec-table dt {
  font-weight: 600;
  color: var(--lm-ink-2);
  font-size: 14px;
  padding: 6px 0;
}
.lm-spec-table dd {
  color: var(--lm-ink);
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--lm-rule);
}
.lm-spec-table dt:last-of-type + dd { border-bottom: 0; }
.lm-flavor-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.lm-flavor-list li {
  padding: 10px 14px;
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-sm, 8px);
  font-size: 14px;
  line-height: 1.5;
  color: var(--lm-ink-2);
}
.lm-flavor-list strong { color: var(--lm-ink); }
@media (min-width: 768px) {
  .lm-flavor-list { grid-template-columns: repeat(2, 1fr); }
}

/* Reviews block */
.lm-pdp-reviews { padding: 48px 0; background: var(--lm-paper); }
.lm-pdp-reviews h2 {
  font-family: var(--lm-font-display);
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--lm-ink);
}
.lm-reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--lm-rule);
  margin-bottom: 16px;
}
.lm-reviews-avg {
  font-family: var(--lm-font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--lm-ink);
}
.lm-reviews-stars, .lm-review-stars { color: var(--lm-rule); font-size: 16px; letter-spacing: 1px; }
.lm-reviews-stars .lm-star.is-on,
.lm-review-stars .lm-star.is-on { color: #f5a623; }
.lm-reviews-count { color: var(--lm-ink-muted); font-size: 14px; }
.lm-reviews-empty, .lm-reviews-loading {
  color: var(--lm-ink-muted);
  font-size: 14px;
  padding: 16px 0;
}
.lm-reviews-list { display: flex; flex-direction: column; gap: 16px; }
.lm-review-card {
  background: var(--lm-paper-3);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md, 12px);
  padding: 16px 18px;
}
.lm-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--lm-ink-muted);
}
.lm-review-author { font-weight: 600; color: var(--lm-ink-2); }
.lm-review-body {
  color: var(--lm-ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.lm-review-photos { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.lm-review-photos img {
  width: 80px; height: 80px; object-fit: cover;
  border-radius: var(--lm-r-sm, 8px); border: 1px solid var(--lm-rule);
}
.lm-reviews-more { margin-top: 16px; text-align: center; }

/* PDP section helper sub-containers (overlap with .lm-container etc) */
.lm-pdp-section .lm-container,
.lm-pdp-section .lm-container-narrow,
.lm-pdp-reviews .lm-container {
  max-width: var(--lm-max-w);
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}
.lm-pdp-section .lm-container-narrow,
.lm-pdp-reviews .lm-container-narrow { max-width: 760px; }

/* ═══════════════════════════════════════════════════════════════════
   Flavor hub + flavor card grid (Community Purple light)
   ═══════════════════════════════════════════════════════════════════ */
.lm-flavor-cat-products { padding: 40px 0; background: var(--lm-paper-3); }
.lm-flavor-cat-products .lm-container { max-width: var(--lm-max-w); margin: 0 auto; padding: 0 var(--lm-pad-x); }
.lm-flavor-cat-products h2 {
  font-family: var(--lm-font-display);
  font-size: 24px;
  color: var(--lm-ink);
  margin: 0 0 8px;
}
.lm-flavor-cat-products .lm-section-lead {
  color: var(--lm-ink-2);
  font-size: 15px;
  margin: 0 0 20px;
}
.lm-flavor-spec dt:last-of-type + dd { border-bottom: 0; }
.lm-card-oos { opacity: 0.55; }

/* ═══════════════════════════════════════════════════════════════════
   Policy pages (shipping/return/privacy/terms)
   ═══════════════════════════════════════════════════════════════════ */
.lm-policy-bullets {
  margin: 0 0 12px;
  padding-left: 24px;
  color: var(--lm-ink-2);
  line-height: 1.6;
}
.lm-policy-bullets li { margin-bottom: 6px; }
.lm-policy-table dt:last-of-type + dd { border-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════════
   Generic .lm-section helpers used across info pages
   ═══════════════════════════════════════════════════════════════════ */
.lm-section { padding: 40px 0; background: var(--lm-paper); }
.lm-section-soft { background: var(--lm-paper-3); }
.lm-section .lm-container,
.lm-section .lm-container-narrow {
  max-width: var(--lm-max-w);
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}
.lm-section .lm-container-narrow { max-width: 760px; }
.lm-section h1 {
  font-family: var(--lm-font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--lm-ink);
  margin: 0 0 16px;
}
.lm-section h2 {
  font-family: var(--lm-font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--lm-ink);
  margin: 24px 0 12px;
}
.lm-section h3 {
  font-family: var(--lm-font-display);
  font-size: 18px;
  color: var(--lm-ink);
  margin: 16px 0 8px;
}
.lm-section p {
  color: var(--lm-ink-2);
  line-height: 1.65;
  font-size: 16px;
  margin: 0 0 12px;
}
.lm-section ul, .lm-section ol { color: var(--lm-ink-2); line-height: 1.65; }
.lm-section-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--lm-ink-2);
  margin: 0 0 16px;
}
.lm-section-cta { margin-top: 20px; }
.lm-muted { color: var(--lm-ink-muted); }
.lm-link-purple { color: var(--lm-accent); text-decoration: none; }
.lm-link-purple:hover { text-decoration: underline; }
.lm-byline-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lm-ink-muted); margin-bottom: 12px; }
.lm-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 4px 4px 0;
}
.lm-tag--purple { background: var(--lm-accent); color: #fff; }
.lm-tag--pale { background: var(--lm-accent-tint); color: var(--lm-accent); }

/* Product card grid (used by shop, near-me, related, flavor-products) */
.lm-product-grid { display: grid; gap: 20px; margin: 24px 0; }
.lm-grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.lm-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.lm-product-card {
  display: flex;
  flex-direction: column;
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md, 12px);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.lm-product-card:hover {
  border-color: var(--lm-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(122, 86, 187, 0.12);
}
.lm-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--lm-paper-3);
  border-radius: var(--lm-r-sm, 8px);
  margin-bottom: 12px;
}
.lm-product-card h3 {
  font-family: var(--lm-font-display);
  font-size: 17px;
  color: var(--lm-ink);
  margin: 0 0 6px;
  line-height: 1.25;
}
.lm-card-tagline {
  font-size: 13px;
  color: var(--lm-ink-muted);
  margin: 0 0 8px;
  line-height: 1.4;
}
.lm-card-price { font-size: 15px; margin: auto 0 0; color: var(--lm-ink); }
.lm-card-feature { border-color: var(--lm-accent); }

/* Blog grid */
.lm-blog-grid { display: grid; gap: 16px; }
.lm-blog-card {
  display: block;
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md, 12px);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.lm-blog-card:hover { border-color: var(--lm-accent); }
.lm-blog-card h3 {
  font-family: var(--lm-font-display);
  font-size: 18px;
  color: var(--lm-ink);
  margin: 8px 0 6px;
  line-height: 1.3;
}
.lm-blog-list { list-style: none; padding: 0; margin: 0; }
.lm-blog-list li { padding: 8px 0; border-bottom: 1px solid var(--lm-rule); }

/* Hero section (home) */
.lm-hero { background: linear-gradient(135deg, var(--lm-accent-tint) 0%, var(--lm-paper) 60%); padding: 56px 0; }
.lm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--lm-max-w);
  margin: 0 auto;
  padding: 0 var(--lm-pad-x);
}
@media (max-width: 900px) {
  .lm-hero-inner { grid-template-columns: 1fr; }
}
.lm-hero h1 {
  font-family: var(--lm-font-display);
  font-size: 44px;
  color: var(--lm-ink);
  margin: 8px 0 16px;
  line-height: 1.1;
}
@media (max-width: 768px) { .lm-hero h1 { font-size: 32px; } }
.lm-hero-sub { font-size: 17px; color: var(--lm-ink-2); line-height: 1.5; margin: 0 0 20px; }
.lm-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.lm-hero-trust {
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--lm-rule);
  font-size: 13px;
  color: var(--lm-ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.lm-hero-trust li::before { content: "✓"; color: var(--lm-accent); margin-right: 4px; font-weight: 700; }
.lm-hero-img img { width: 100%; height: auto; border-radius: var(--lm-r-md, 12px); }
.lm-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lm-accent);
  background: var(--lm-accent-tint);
  padding: 4px 12px;
  border-radius: 999px;
}

/* Feature grid (about, ingredients pages) */
.lm-feature-grid { display: grid; gap: 16px; }
.lm-feature-card {
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-md, 12px);
  padding: 18px;
}
.lm-feature-card h3 {
  font-family: var(--lm-font-display);
  font-size: 17px;
  color: var(--lm-ink);
  margin: 0 0 8px;
}
.lm-feature-card p {
  color: var(--lm-ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* Buttons */
.lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--lm-r-sm, 8px);
  font-family: var(--lm-font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  background: var(--lm-ink);
  color: var(--lm-paper);
}
.lm-btn-purple { background: var(--lm-accent); color: #fff; border-color: var(--lm-accent); }
.lm-btn-purple:hover { background: var(--lm-accent-2); border-color: var(--lm-accent-2); }
.lm-btn-ghost {
  background: transparent;
  color: var(--lm-ink);
  border-color: var(--lm-bd);
}
.lm-btn-ghost:hover { border-color: var(--lm-accent); color: var(--lm-accent); }
.lm-btn-red { background: #e11d48; color: #fff; border-color: #e11d48; }
.lm-btn-large { padding: 14px 24px; font-size: 15px; }

/* FAQ details/summary */
.lm-faq {
  background: var(--lm-paper);
  border: 1px solid var(--lm-rule);
  border-radius: var(--lm-r-sm, 8px);
  padding: 14px 16px;
  margin: 0 0 10px;
}
.lm-faq[open] { border-color: var(--lm-accent-pale); }
.lm-faq summary {
  font-family: var(--lm-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--lm-ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.lm-faq summary::-webkit-details-marker { display: none; }
.lm-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--lm-accent);
}
.lm-faq[open] summary::after { content: "−"; }
.lm-faq p {
  margin: 10px 0 0;
  color: var(--lm-ink-2);
  font-size: 14px;
  line-height: 1.6;
}

/* Quick spec inline summary (used on info pages) */
.lm-spec-summary {
  background: var(--lm-paper-3);
  border-left: 4px solid var(--lm-accent);
  padding: 12px 16px;
  margin: 0 0 16px;
  border-radius: 0 var(--lm-r-sm, 8px) var(--lm-r-sm, 8px) 0;
}
.lm-spec-summary summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--lm-accent);
  list-style: none;
}
.lm-spec-summary[open] summary { margin-bottom: 8px; }
.lm-summary-block {
  background: var(--lm-accent-tint);
  border-radius: var(--lm-r-md, 12px);
  padding: 14px 16px;
  margin: 0 0 16px;
}
.lm-summary-block .lm-label { font-weight: 700; }

/* x-cloak shim */
[x-cloak] { display: none !important; }

/* "Save $X" pill next to regular/sale prices */
.lm-pdp-price-save {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #e11d48;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Edition heading inside the flavor selector (Lemonade Edition / Weekly Edition / Super Edition etc) */
.lm-pdp-flavor-edition { margin-bottom: 16px; }
.lm-pdp-flavor-edition:last-child { margin-bottom: 0; }
.lm-pdp-edition-heading {
  font-family: var(--lm-font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lm-accent);
  margin: 12px 0 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lm-rule);
}
.lm-pdp-flavor-edition:first-of-type .lm-pdp-edition-heading { margin-top: 0; }

/* Edition flavor tables — flavor / profile / category */
.lm-flavor-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
  border-radius: var(--lm-r-md, 12px);
  border: 1px solid var(--lm-rule);
}
.lm-flavor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--lm-paper);
}
.lm-flavor-table th {
  background: var(--lm-accent-tint);
  color: var(--lm-accent);
  font-family: var(--lm-font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--lm-rule);
}
.lm-flavor-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--lm-rule);
  color: var(--lm-ink-2);
  line-height: 1.45;
  vertical-align: top;
}
.lm-flavor-table tbody tr:last-child td { border-bottom: 0; }
.lm-flavor-table tbody tr:hover td { background: var(--lm-paper-3); }
.lm-flavor-table td:first-child { color: var(--lm-ink); min-width: 140px; }
.lm-flavor-table td:last-child { white-space: nowrap; }
.lm-spec-table-wide dt { min-width: 160px; }

@media (max-width: 640px) {
  .lm-flavor-table th, .lm-flavor-table td { padding: 10px 12px; font-size: 13px; }
  .lm-flavor-table td:first-child { min-width: 120px; }
}

/* Text-only flavor chips (user request: no images, text label only) */
.lm-pdp-flavor-chip {
  background: var(--lm-paper);
  border: 1.5px solid var(--lm-rule);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--lm-ink-2);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.lm-pdp-flavor-chip:hover {
  border-color: var(--lm-accent);
  background: var(--lm-accent-tint);
  color: var(--lm-accent);
}
.lm-pdp-flavor-chip.is-selected {
  border-color: var(--lm-accent);
  background: var(--lm-accent);
  color: #fff;
  font-weight: 600;
}
/* Swap the grid layout for chips — flow horizontally, wrap as needed */
.lm-pdp-flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   Added 2026-05-23 — PDP content depth components
   ═══════════════════════════════════════════════════════════════════ */

/* Marketing bullet list — feature callouts in long-form sections */
.lm-marketing-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.lm-marketing-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--lm-rule-lite);
  color: var(--lm-ink-2);
  line-height: 1.7;
}
.lm-marketing-list li:last-child { border-bottom: 0; }
.lm-marketing-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lm-accent);
}
.lm-marketing-list strong { color: var(--lm-ink); }

/* Pod color list — color-coded swatch + label */
.lm-pod-color-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.lm-pod-color-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--lm-rule-lite);
  border-radius: 10px;
  background: var(--lm-paper);
  color: var(--lm-ink-2);
  line-height: 1.5;
}
.lm-pod-color-list strong { color: var(--lm-ink); margin-right: 6px; }
.lm-pod-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08) inset;
}
@media (min-width: 640px) {
  .lm-pod-color-list { grid-template-columns: 1fr 1fr; }
}

/* Compatibility list — clean labeled bullets */
.lm-compat-list,
.lm-kit-contents-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.lm-compat-list li,
.lm-kit-contents-list li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--lm-rule-lite);
  color: var(--lm-ink-2);
  line-height: 1.65;
}
.lm-compat-list li:last-child,
.lm-kit-contents-list li:last-child { border-bottom: 0; }
.lm-compat-list li::before,
.lm-kit-contents-list li::before {
  content: "›";
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--lm-accent);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.lm-compat-list strong,
.lm-kit-contents-list strong { color: var(--lm-ink); }

/* Soft note callout — for "note:" / disclaimer style messages */
.lm-note-soft {
  margin: 16px 0 0;
  padding: 12px 14px;
  background: rgba(167, 139, 250, 0.08);
  border-left: 3px solid var(--lm-accent);
  border-radius: 0 8px 8px 0;
  color: var(--lm-ink-2);
  font-size: 0.94em;
  line-height: 1.6;
}
.lm-note-soft strong { color: var(--lm-ink); }
