/**
 * Prism Labs — main styles
 */

:root {
  --pl-navy: #0f172a;
  --pl-blue: #3b5bdb;
  --pl-white: #ffffff;
  --pl-grey: #f8fafc;
  --pl-grey-2: #f1f5f9;
  --pl-border: #e2e8f0;
  --pl-text: #334155;
  --pl-text-muted: #64748b;
  --pl-green: #22c55e;
  --pl-radius: 12px;
  --pl-radius-sm: 8px;
  --pl-radius-pill: 100px;
  --pl-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --pl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --pl-container: 1200px;
  --pl-transition: 0.2s ease;
}

body.prism-labs-theme {
  font-family: var(--pl-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pl-text);
  background: var(--pl-white);
  -webkit-font-smoothing: antialiased;
}

body.pl-age-locked {
  overflow: hidden;
}

.pl-container {
  width: min(100% - 40px, var(--pl-container));
  margin-inline: auto;
}

/* Buttons */
.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--pl-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--pl-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--pl-transition), border-color var(--pl-transition), background var(--pl-transition), color var(--pl-transition);
}

.pl-btn:hover {
  transform: translateY(-2px);
}

.pl-btn--dark {
  background: var(--pl-navy);
  color: var(--pl-white);
  border-color: var(--pl-navy);
}

.pl-btn--dark:hover {
  border-color: var(--pl-blue);
  background: #1e293b;
}

.pl-btn--primary {
  background: var(--pl-blue);
  color: var(--pl-white);
  border-color: var(--pl-blue);
}

.pl-btn--primary:hover {
  background: #2f4ac4;
  border-color: #2f4ac4;
}

.pl-btn--outline {
  background: transparent;
  color: var(--pl-navy);
  border-color: var(--pl-border);
}

.pl-btn--outline:hover {
  border-color: var(--pl-blue);
  color: var(--pl-blue);
}

.pl-btn--white {
  background: var(--pl-white);
  color: var(--pl-blue);
  border-color: var(--pl-white);
}

.pl-btn--white-outline {
  background: transparent;
  color: var(--pl-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.pl-btn--white-outline:hover {
  border-color: var(--pl-white);
  background: rgba(255, 255, 255, 0.1);
}

.pl-btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* Labels & badges */
.pl-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pl-blue);
  margin-bottom: 12px;
}

.pl-label--center {
  text-align: center;
}

.pl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--pl-radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.pl-badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
}

.pl-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pl-green);
  flex-shrink: 0;
}

.pl-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--pl-navy);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.pl-section-title--center {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.pl-section--grey {
  background: var(--pl-grey);
  padding: 80px 0;
}

.pl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.pl-link-arrow {
  font-weight: 600;
  color: var(--pl-blue);
  text-decoration: none;
  white-space: nowrap;
}

.pl-link-arrow:hover {
  text-decoration: underline;
}

.pl-link-coa {
  font-weight: 600;
  color: var(--pl-blue);
  text-decoration: none;
}

.pl-link-coa:hover {
  text-decoration: underline;
}

/* Age gate */
.pl-age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pl-age-gate[hidden] {
  display: none !important;
}

.pl-age-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.pl-age-gate__modal {
  position: relative;
  background: var(--pl-white);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--pl-shadow);
}

.pl-age-gate__logo {
  margin: 0 auto 20px;
}

.pl-age-gate__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pl-navy);
  margin: 0 0 12px;
}

.pl-age-gate__text {
  color: var(--pl-text-muted);
  margin: 0 0 28px;
  font-size: 15px;
}

.pl-age-gate__confirm {
  width: 100%;
  margin-bottom: 16px;
}

.pl-age-gate__deny {
  background: none;
  border: none;
  color: var(--pl-text-muted);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

/* Ticker */
.pl-ticker {
  background: var(--pl-navy);
  color: var(--pl-white);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.pl-ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: pl-ticker 40s linear infinite;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pl-ticker__track span {
  flex-shrink: 0;
}

@keyframes pl-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.pl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--pl-white);
  border-bottom: 1px solid var(--pl-border);
  transition: box-shadow var(--pl-transition);
}

.pl-header.is-scrolled {
  box-shadow: var(--pl-shadow);
}

.pl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 0;
}

.pl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pl-navy);
  flex-shrink: 0;
}

.pl-brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.pl-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pl-brand__name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.pl-brand__tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--pl-text-muted);
  letter-spacing: 0.08em;
}

.pl-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-nav__list a {
  text-decoration: none;
  color: var(--pl-navy);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--pl-transition);
}

.pl-nav__list a:hover {
  color: var(--pl-blue);
}

.pl-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pl-header__signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--pl-navy);
  text-decoration: none;
}

.pl-header__signin:hover {
  color: var(--pl-blue);
}

.pl-mini-cart {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--pl-navy);
  text-decoration: none;
  position: relative;
}

.pl-mini-cart__count {
  font-size: 12px;
  font-weight: 700;
  background: var(--pl-blue);
  color: var(--pl-white);
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.pl-nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--pl-navy);
  border-radius: 2px;
}

/* Footer */
.pl-footer {
  background: var(--pl-navy);
  color: #94a3b8;
  margin-top: 0;
}

.pl-footer__main {
  padding: 64px 0 48px;
}

.pl-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.pl-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pl-white);
  margin-bottom: 16px;
}

.pl-footer__logo-text {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.pl-footer__desc {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pl-footer__email {
  color: var(--pl-blue);
  font-weight: 600;
  text-decoration: none;
}

.pl-footer__heading {
  color: var(--pl-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.pl-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pl-footer__links li {
  margin-bottom: 10px;
}

.pl-footer__links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}

.pl-footer__links a:hover {
  color: var(--pl-white);
}

.pl-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.pl-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pl-footer__copy {
  margin: 0;
  font-size: 13px;
}

.pl-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: #cbd5e1;
}

.pl-footer__disclaimer {
  padding: 24px 0 40px;
  font-size: 11px;
  line-height: 1.7;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pl-footer__disclaimer strong {
  color: #94a3b8;
}

/* Scroll reveal */
.pl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.pl-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.pl-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 80px);
  background: var(--pl-white);
}

.pl-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--pl-navy);
  margin: 20px 0;
  letter-spacing: -0.03em;
}

.pl-hero__sub {
  font-size: 17px;
  color: var(--pl-text-muted);
  max-width: 520px;
  margin: 0 0 32px;
}

.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pl-hero__right {
  position: relative;
  background: var(--pl-grey-2);
  overflow: hidden;
  min-height: 480px;
}

.pl-hero__vials {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.pl-vial {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.15));
  transition: transform 0.4s ease;
}

.pl-vial--1 { top: 8%; left: 18%; transform: rotate(-12deg); width: 120px; }
.pl-vial--2 { top: 6%; right: 22%; transform: rotate(8deg); width: 100px; }
.pl-vial--3 { top: 28%; left: 32%; transform: rotate(-4deg); width: 160px; z-index: 2; }
.pl-vial--4 { bottom: 18%; left: 20%; transform: rotate(14deg); width: 100px; }
.pl-vial--5 { bottom: 14%; right: 20%; transform: rotate(-10deg); width: 120px; }

.pl-hero__checks {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.pl-check-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pl-navy);
  box-shadow: var(--pl-shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pl-check-card::before {
  content: '✓';
  color: var(--pl-green);
  font-weight: 800;
}

/* Stats strip */
.pl-stats-strip {
  background: var(--pl-navy);
  padding: 40px 0;
}

.pl-stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.pl-stat-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.pl-stat-item:last-child {
  border-right: none;
}

.pl-stat-item__num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--pl-white);
  margin-bottom: 6px;
}

.pl-stat-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Standards */
.pl-standards {
  padding: 80px 0;
}

.pl-standards__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.pl-standards__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pl-feature-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 24px;
  transition: transform var(--pl-transition), border-color var(--pl-transition);
}

.pl-feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-blue);
}

.pl-feature-card__icon {
  display: block;
  color: var(--pl-blue);
  font-size: 20px;
  margin-bottom: 12px;
}

.pl-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pl-navy);
  margin: 0 0 8px;
}

.pl-feature-card p {
  font-size: 14px;
  color: var(--pl-text-muted);
  margin: 0;
}

.pl-standards__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pl-stat-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--pl-transition), border-color var(--pl-transition);
}

.pl-stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-blue);
}

.pl-stat-card__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pl-blue);
}

.pl-stat-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pl-navy);
}

/* Quality */
.pl-quality {
  padding: 80px 0;
}

.pl-quality__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.pl-accordion__item {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--pl-grey);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  padding: 16px 20px;
  margin-bottom: 8px;
  font-family: var(--pl-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--pl-navy);
  cursor: pointer;
  transition: border-color var(--pl-transition), background var(--pl-transition);
}

.pl-accordion__item.is-active,
.pl-accordion__item:hover {
  border-color: var(--pl-blue);
  background: var(--pl-white);
}

.pl-accordion__panel {
  display: none;
  padding: 0 4px 16px;
  font-size: 14px;
  color: var(--pl-text-muted);
}

.pl-accordion__panel.is-open {
  display: block;
}

.pl-quality__box {
  background: var(--pl-blue);
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--pl-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pl-quality__big {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pl-quality__sub {
  font-size: 16px;
  opacity: 0.9;
  margin: 16px 0 28px;
}

.pl-quality__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.pl-quality__badges span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--pl-radius-pill);
}

/* Fulfillment */
.pl-fulfillment {
  padding: 80px 0;
}

.pl-fulfillment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pl-fulfillment-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 32px;
  transition: transform var(--pl-transition), border-color var(--pl-transition);
}

.pl-fulfillment-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-blue);
}

.pl-fulfillment-card__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pl-blue);
  display: block;
  margin-bottom: 12px;
}

.pl-fulfillment-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pl-navy);
  margin: 0 0 10px;
}

.pl-fulfillment-card p {
  font-size: 14px;
  color: var(--pl-text-muted);
  margin: 0;
}

/* Catalog / product cards */
.pl-catalog {
  padding: 80px 0;
}

.pl-product-grid {
  display: grid;
  gap: 24px;
}

.pl-product-grid--home {
  grid-template-columns: repeat(5, 1fr);
}

.pl-product-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 20px;
  transition: transform var(--pl-transition), border-color var(--pl-transition);
}

.pl-product-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-blue);
}

.pl-product-card__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pl-text-muted);
}

.pl-product-card__image {
  display: block;
  margin: 12px 0;
}

.pl-product-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pl-product-card__name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
}

.pl-product-card__name a {
  color: var(--pl-navy);
  text-decoration: none;
}

.pl-product-card__dosage {
  font-size: 13px;
  color: var(--pl-text-muted);
  margin: 0 0 8px;
}

.pl-product-card__price {
  font-weight: 700;
  color: var(--pl-navy);
  margin: 0 0 12px;
}

.pl-product-card__checks {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 12px;
  color: var(--pl-text-muted);
}

.pl-product-card__checks li {
  margin-bottom: 4px;
}

.pl-product-card__placeholder {
  height: 140px;
  background: var(--pl-grey);
  border-radius: var(--pl-radius-sm);
  margin: 12px 0;
}

/* Features rows */
.pl-features {
  padding: 40px 0 80px;
}

.pl-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
}

.pl-feature-row__media img {
  width: 100%;
  height: auto;
  border-radius: var(--pl-radius);
}

/* Process */
.pl-process {
  padding: 80px 0;
}

.pl-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.pl-process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--pl-border);
  z-index: 0;
}

.pl-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.pl-process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--pl-white);
  border: 2px solid var(--pl-blue);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  color: var(--pl-blue);
  margin-bottom: 16px;
}

.pl-process-step h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--pl-navy);
  margin: 0 0 8px;
}

.pl-process-step p {
  font-size: 13px;
  color: var(--pl-text-muted);
  margin: 0;
}

/* CTA */
.pl-cta {
  background: linear-gradient(135deg, var(--pl-blue) 0%, #2f4ac4 100%);
  padding: 72px 0;
  text-align: center;
}

.pl-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--pl-white);
  margin: 0 0 12px;
}

.pl-cta__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin: 0 0 32px;
}

.pl-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* FAQ */
.pl-faq {
  padding: 80px 0;
}

.pl-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 960px;
  margin-inline: auto;
}

.pl-faq-item {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  overflow: hidden;
  transition: border-color var(--pl-transition);
}

.pl-faq-item.is-open {
  border-color: var(--pl-blue);
}

.pl-faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--pl-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--pl-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pl-faq-item__q::after {
  content: '+';
  font-size: 20px;
  color: var(--pl-blue);
  transition: transform var(--pl-transition);
}

.pl-faq-item.is-open .pl-faq-item__q::after {
  content: '−';
}

.pl-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pl-faq-item.is-open .pl-faq-item__a {
  max-height: 300px;
}

.pl-faq-item__a p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  color: var(--pl-text-muted);
}

/* Pages */
.pl-page {
  padding: 48px 0 80px;
}

.pl-page__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--pl-navy);
  margin: 0 0 16px;
}

.pl-page__desc {
  color: var(--pl-text-muted);
  margin: 0 0 32px;
}

.pl-content {
  max-width: 760px;
}

.pl-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pl-post-card {
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  overflow: hidden;
  transition: transform var(--pl-transition), border-color var(--pl-transition);
}

.pl-post-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-blue);
}

.pl-post-card__body {
  padding: 20px;
}

.pl-post-card__date {
  font-size: 12px;
  color: var(--pl-text-muted);
}

.pl-post-card__title {
  font-size: 18px;
  margin: 8px 0;
}

.pl-post-card__title a {
  color: var(--pl-navy);
  text-decoration: none;
}

/* Breadcrumbs */
.pl-breadcrumbs {
  margin-bottom: 20px;
}

.pl-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.pl-breadcrumbs__list a {
  color: var(--pl-text-muted);
  text-decoration: none;
}

.pl-breadcrumbs__list a:hover {
  color: var(--pl-blue);
}

.pl-breadcrumbs__sep {
  color: var(--pl-border);
}

/* Shop hero */
.pl-shop-hero {
  padding: 40px 0 32px;
}

.pl-shop-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--pl-navy);
  margin: 16px 0;
}

.pl-shop-hero__desc {
  max-width: 640px;
  color: var(--pl-text-muted);
  margin: 0 0 24px;
}

.pl-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--pl-navy);
}

/* Shop filter bar */
.pl-shop-filter-bar {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: var(--pl-white);
  border-bottom: 1px solid var(--pl-border);
  padding: 16px 0;
}

.pl-shop-filter-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pl-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pl-filter-pill {
  padding: 8px 16px;
  border-radius: var(--pl-radius-pill);
  border: 1px solid var(--pl-border);
  background: var(--pl-white);
  font-family: var(--pl-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--pl-navy);
  cursor: pointer;
  transition: transform var(--pl-transition), border-color var(--pl-transition), background var(--pl-transition);
}

.pl-filter-pill.is-active,
.pl-filter-pill:hover {
  border-color: var(--pl-blue);
  background: rgba(59, 91, 219, 0.08);
  transform: translateY(-2px);
}

.pl-filter-controls {
  display: flex;
  gap: 12px;
}

.pl-filter-search,
.pl-filter-sort {
  font-family: var(--pl-font);
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius-sm);
  background: var(--pl-white);
}

.pl-filter-search {
  min-width: 200px;
}

/* Shop cards */
.pl-shop-grid-section {
  padding: 40px 0 60px;
}

.pl-product-grid--shop {
  grid-template-columns: repeat(3, 1fr);
}

.pl-shop-card {
  background: var(--pl-white);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 20px;
  position: relative;
  transition: transform var(--pl-transition), border-color var(--pl-transition);
}

.pl-shop-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-blue);
}

.pl-shop-card__badges {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pl-purity-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--pl-radius-pill);
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.pl-purity-badge--lg {
  font-size: 13px;
  padding: 6px 14px;
  display: inline-block;
  margin: 8px 0;
}

.pl-bestseller-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--pl-radius-pill);
  background: var(--pl-navy);
  color: var(--pl-white);
}

.pl-shop-card__image img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.pl-shop-card__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pl-text-muted);
}

.pl-shop-card__title {
  font-size: 18px;
  font-weight: 800;
  margin: 8px 0;
}

.pl-shop-card__title a {
  color: var(--pl-navy);
  text-decoration: none;
}

.pl-shop-card__dosage {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--pl-text-muted);
}

.pl-shop-card__cas {
  font-size: 12px;
  color: var(--pl-blue);
  font-weight: 600;
  margin: 4px 0 8px;
}

.pl-shop-card__desc {
  font-size: 13px;
  color: var(--pl-text-muted);
  margin: 0 0 8px;
}

.pl-shop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--pl-border);
}

.pl-shop-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--pl-navy);
}

.pl-shop-trust {
  background: var(--pl-grey);
  padding: 24px 0;
}

.pl-shop-trust__inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pl-navy);
}

.pl-compliance {
  padding: 48px 0 80px;
}

.pl-compliance__box {
  background: var(--pl-grey);
  border: 1px solid var(--pl-border);
  border-radius: var(--pl-radius);
  padding: 40px;
}

.pl-compliance__box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pl-navy);
  margin: 12px 0 16px;
}

.pl-compliance__box p {
  font-size: 14px;
  color: var(--pl-text-muted);
  margin: 0;
  line-height: 1.7;
}

.pl-shop-empty {
  text-align: center;
  padding: 48px;
  color: var(--pl-text-muted);
}

/* Single product */
.pl-single-product {
  padding: 40px 0;
}

.pl-single-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pl-single-product__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--pl-navy);
  margin: 8px 0;
}

.pl-single-product__cas {
  font-weight: 600;
  color: var(--pl-blue);
  font-size: 14px;
}

.pl-single-product__purchase {
  margin: 24px 0;
}

.pl-single-product__tabs {
  margin-top: 48px;
}

.pl-related {
  padding: 48px 0 80px;
  background: var(--pl-grey);
}

.pl-check-list {
  margin: 16px 0 24px;
  padding-left: 20px;
}

.pl-notice-inline {
  font-size: 13px;
  color: var(--pl-text-muted);
}
