:root {
  --bg-muted: #eff0f5;
  --bg-white: #ffffff;
  --navy: #0e1b4d;
  --blue: #4770db;
  --accent-red: #e32402;
  --teal: #2dabb8;
  --radius-pill: 40px;
  --radius-card: 18px;
  --page-width: 1200px;
  --font-heading: "Archivo", system-ui, sans-serif;
  --font-body: "Questrial", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--navy);
  background: var(--bg-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  z-index: 10000;
  border-radius: 8px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: rgba(14, 27, 77, 0.88);
}

a {
  color: var(--blue);
}

a:hover {
  text-decoration: underline;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 750px) {
  .page-width {
    padding: 0 3rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 240, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 27, 77, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
  overflow: visible;
}

.logo {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Header logo — force visible size (asset intrinsic dims are small; object-fit scales display). */
.site-header .logo img {
  display: block;
  width: auto;
  height: clamp(76px, 9vw, 108px);
  max-width: min(480px, 92vw);
  object-fit: contain;
}

/* Non-footer logos outside .site-header (rare). */
.logo img {
  display: block;
  height: clamp(64px, 7vw, 96px);
  width: auto;
  max-width: min(420px, 88vw);
  object-fit: contain;
}

.logo--footer img {
  height: clamp(44px, 4.2vw, 58px);
  max-width: min(260px, 70vw);
  filter: brightness(0) invert(1);
}

.logo:hover {
  text-decoration: none;
  color: var(--blue);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: var(--navy);
  text-decoration: none;
  font-size: 1rem;
}

.nav-desktop a:hover {
  color: var(--blue);
  text-decoration: none;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
  }

  .nav-toggle {
    display: none;
  }
}

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: min-content;
}

.site-header__shop-desktop {
  display: none;
}

@media (min-width: 900px) {
  .site-header__shop-desktop {
    display: inline-flex;
    flex-shrink: 0;
    position: relative;
    z-index: 0;
  }
}

.site-header__cart {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  min-width: max-content;
  margin-inline-end: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(14, 27, 77, 0.12);
  background: rgba(255, 255, 255, 0.65);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-header__cart:hover {
  color: var(--blue);
  text-decoration: none;
  background: #fff;
  border-color: rgba(71, 112, 219, 0.35);
}

.site-header__cart-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: inherit;
}

.site-header__cart-icon .icon-bag {
  width: 1.125rem;
  height: 1.125rem;
}

.icon-bag {
  display: block;
  flex-shrink: 0;
}

.site-header__cart-label {
  letter-spacing: -0.02em;
}

.site-header__cart-badge {
  position: absolute;
  top: -0.32rem;
  right: -0.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-red);
  border-radius: 999px;
  line-height: 1;
  border: 2px solid rgba(239, 240, 245, 0.95);
}

.nav-toggle {
  border: 2px solid var(--navy);
  background: transparent;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(14, 27, 77, 0.08);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--blue);
  color: var(--bg-muted);
  border-color: var(--blue);
  box-shadow: -6px 4px 5px rgba(14, 27, 77, 0.08);
}

.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  text-decoration: none;
}

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

.btn--outline:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: rgba(14, 27, 77, 0.78);
  border-color: transparent;
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
}

.btn--ghost:hover {
  color: var(--accent-red);
  text-decoration: none;
  background: rgba(227, 36, 2, 0.08);
}

.btn--compact {
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: clamp(460px, 78vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 3rem;
  background: #eff0f5;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero--splash::before {
  content: none;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: block;
  max-width: none;
  margin: 0;
  padding-left: clamp(1.25rem, 5vw, 4rem);
  padding-right: 1.25rem;
  text-align: left;
}

.hero__content {
  max-width: 30rem;
  margin: 0;
  text-align: left;
}

.hero__content .research-tag,
.hero__actions {
  justify-content: flex-start;
}

.hero__content h1 {
  margin-bottom: 0.9rem;
  line-height: 1.15;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
}

.hero__sub {
  font-size: 1rem;
  margin-bottom: 1.35rem;
  max-width: 28rem;
  color: rgba(14, 27, 77, 0.82);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (max-width: 700px) {
  .hero--splash::before {
    content: none;
  }
}

.section {
  padding: 3.5rem 0;
}

.pen-spotlight {
  position: relative;
  background: radial-gradient(ellipse 80% 70% at 18% 20%, rgba(71, 112, 219, 0.35), transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 85%, rgba(227, 36, 2, 0.18), transparent 55%),
    linear-gradient(135deg, #0b1640 0%, #14245c 60%, #0e1b4d 100%);
  color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}

.pen-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.05), transparent 40%);
  pointer-events: none;
}

.pen-spotlight__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .pen-spotlight__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.pen-spotlight__media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  background: #000;
}

.pen-spotlight__media img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.02);
}

.pen-spotlight__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(71, 112, 219, 0.45), transparent 55%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.pen-spotlight__content {
  position: relative;
  z-index: 1;
}

.pen-spotlight__eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pen-spotlight__title {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 1rem;
}

.pen-spotlight__lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin: 0 0 1.75rem;
}

.pen-spotlight__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 500px) {
  .pen-spotlight__features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
}

.pen-spotlight__features li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding-left: 1rem;
  border-left: 2px solid rgba(159, 181, 255, 0.35);
}

.pen-spotlight__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #9fb5ff;
  letter-spacing: 0.12em;
  padding-top: 0.1rem;
  min-width: 1.5rem;
}

.pen-spotlight__features strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
  font-size: 0.98rem;
}

.pen-spotlight__features span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.4;
}

.pen-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.pen-spotlight__fine {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.04em;
}

.section--white {
  background: var(--bg-white);
}

.section--muted {
  background: var(--bg-muted);
}

.section__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.media-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(14, 27, 77, 0.1);
}

.media-placeholder--soft {
  background: linear-gradient(160deg, #e8ebf4 0%, #d4dcf0 100%);
  color: var(--navy);
}

.split__media {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(14, 27, 77, 0.1);
  box-shadow: 0 12px 32px rgba(14, 27, 77, 0.1);
}

.split__media img {
  width: 100%;
  height: auto;
  display: block;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: var(--bg-muted);
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section--white .card {
  background: var(--bg-white);
}

.card__img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #cfd8ea, #eff0f5);
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card__body h3 {
  margin-bottom: 0.35rem;
}

.card__meta {
  font-size: 0.95rem;
  color: rgba(14, 27, 77, 0.65);
  margin-bottom: 1rem;
}

.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid rgba(14, 27, 77, 0.12);
  padding: 1rem 0;
}

.faq summary {
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--blue);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "–";
}

.faq .answer {
  padding-top: 0.75rem;
  padding-right: 2rem;
}

.columns {
  display: grid;
  gap: 2rem;
}

@media (min-width: 750px) {
  .columns--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.column-card {
  text-align: center;
  padding: 1.5rem;
}

.column-card h3 {
  margin-bottom: 0.5rem;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0;
  margin-top: 0;
}

.site-footer a {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.bundle-promo {
  background: linear-gradient(105deg, #0a1028 0%, #0e1b4d 42%, #2a4ba8 88%, #4770db 100%);
  color: #fff;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bundle-promo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.bundle-promo__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin: 0 0 0.35rem;
  color: #fff;
}

.bundle-promo__headline {
  margin: 0;
  font-size: clamp(0.98rem, 2.5vw, 1.12rem);
  max-width: 48rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
}

.bundle-promo__headline strong {
  color: #fff;
  font-weight: 700;
}

.bundle-promo__amp {
  font-size: 0.95em;
}

.btn--promo {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  flex-shrink: 0;
}

.btn--promo:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn--nav {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}

/* Header primary: avoid left-offset shadow overlapping the cart pill */
.site-header__shop-desktop.btn--primary {
  box-shadow: 0 4px 8px rgba(14, 27, 77, 0.1);
}

.page-hero {
  padding: 2.5rem 0 2rem;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(14, 27, 77, 0.08);
}

.page-hero--bundle {
  background: linear-gradient(180deg, #fff 0%, #eef2fc 100%);
}

.page-hero__crumbs {
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  color: rgba(14, 27, 77, 0.65);
}

.page-hero__crumbs a {
  color: var(--blue);
  text-decoration: none;
}

.page-hero__crumbs a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero .lede {
  max-width: 40rem;
  margin: 0;
  color: rgba(14, 27, 77, 0.88);
}

.page-hero--catalog .page-width {
  text-align: center;
}

.page-hero--catalog .lede {
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
}

.page-hero__note {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(14, 27, 77, 0.55);
}

.research-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(14, 27, 77, 0.08);
  color: var(--navy);
  margin-bottom: 1rem;
}

.product-detail {
  padding: 2.5rem 0 3.5rem;
  background: var(--bg-muted);
}

.product-detail > .page-width {
  max-width: 1440px;
}

.product-detail__grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .product-detail__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .product-detail__grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 3rem;
  }
}

.product-detail__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(14, 27, 77, 0.1);
  background: #fff;
  box-shadow: 0 12px 36px rgba(14, 27, 77, 0.08);
  position: relative;
  min-height: 520px;
}

.product-detail__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#bundle-details {
  scroll-margin-top: 5.75rem;
}

.product-detail__offer-title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--navy);
  line-height: 1.2;
}

.product-detail__body {
  background: #fff;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.1);
}

@media (min-width: 1200px) {
  .product-detail__body {
    padding: 2.5rem 2.75rem;
  }
}

.product-detail__body p:last-child {
  margin-bottom: 0;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.category-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
}

.category-card {
  background: var(--bg-muted);
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.section--white .category-card {
  background: var(--bg-white);
}

.category-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(14, 27, 77, 0.1);
}

.category-card__img {
  flex-shrink: 0;
  height: 220px;
  min-height: 220px;
  background: linear-gradient(145deg, #e8ebf4, #f4f6fb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.category-card__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.category-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.category-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.category-card__meta {
  font-size: 0.95rem;
  color: rgba(14, 27, 77, 0.68);
  margin: 0;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
  margin-top: auto;
  padding-top: 0.75rem;
  display: inline-block;
}

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

.section--tight-top {
  padding-top: 0;
}

.category-card__price-wrap {
  margin: 0.35rem 0 0;
  flex-shrink: 0;
}

.category-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue);
}

.category-card__img--empty {
  background: linear-gradient(145deg, #cfd8ea, #eff0f5);
}

.product-price {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.product-variants-title {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: rgba(14, 27, 77, 0.7);
  margin: 1.5rem 0 0.75rem;
}

.variant-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.variant-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 1.1rem 0.85rem 0.95rem;
  border: 2px solid rgba(14, 27, 77, 0.15);
  border-radius: var(--radius-card);
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}

.variant-option__thumb {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  background: #f3f3f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 0.3rem;
}

.variant-option__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.variant-option__thumb--empty {
  background: linear-gradient(145deg, #cfd8ea, #eff0f5);
}

.variant-option__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
}

.variant-option:hover {
  border-color: rgba(71, 112, 219, 0.55);
}

.variant-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-option.is-selected {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14, 27, 77, 0.08);
}

.variant-option--bundle.is-selected {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(227, 36, 2, 0.1);
}

.variant-option__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
}

.variant-option__sub {
  font-size: 0.78rem;
  color: rgba(14, 27, 77, 0.6);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.variant-option__save {
  color: var(--accent-red);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.variant-option__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  white-space: nowrap;
  margin-top: 0.15rem;
}

.variant-option__badge {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.65rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--accent-red);
  border-radius: 999px;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.variant-option__badge--best {
  background: var(--accent-red);
}

.dosage-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 0.25rem;
}

.dosage-row__label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.dosage-row__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.payment-methods--inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
  margin: 0.75rem 0 0;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(14, 27, 77, 0.08);
}

.payment-methods--inline .payment-methods__label {
  font-size: 0.82rem;
  color: rgba(14, 27, 77, 0.6);
  font-family: var(--font-heading);
}

.payment-methods--inline .payment-methods__icons {
  display: inline-flex;
  gap: 0.4rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.25rem 0 1rem;
}

.product-price strong {
  font-weight: 700;
}

.product-price__unit {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(14, 27, 77, 0.6);
  margin-left: 0.25rem;
}

.btn--wide {
  min-width: 14rem;
}

.product-disclaimer {
  font-size: 0.95rem;
  margin-top: 1.25rem;
  color: rgba(14, 27, 77, 0.75);
}

.product-detail__noimg {
  padding: 2rem;
  text-align: center;
  color: rgba(14, 27, 77, 0.6);
}

.rte {
  font-size: 1rem;
  line-height: 1.55;
}

.rte p:last-child {
  margin-bottom: 0;
}

.rte p {
  margin-top: 0;
}

.rte div {
  max-width: 100%;
}

.bundle-nudge {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bundle-nudge.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.bundle-nudge__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 40, 0.45);
  backdrop-filter: blur(4px);
}

.bundle-nudge__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.65rem;
  box-shadow: 0 22px 60px rgba(14, 27, 77, 0.22);
  border: 1px solid rgba(14, 27, 77, 0.1);
  text-align: center;
}

.bundle-nudge__figure {
  margin: 0 auto 1rem;
  max-width: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, #e8ebf4, #f4f6fb);
  border: 1px solid rgba(14, 27, 77, 0.08);
  box-shadow: 0 8px 24px rgba(14, 27, 77, 0.08);
}

.bundle-nudge__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.bundle-nudge__panel[hidden] {
  display: none !important;
}

.bundle-nudge__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 27, 77, 0.55);
  margin: 0 0 0.5rem;
}

.bundle-nudge__title {
  font-size: 1.45rem;
  margin: 0 0 0.75rem;
}

.bundle-nudge__copy {
  margin: 0 0 0.65rem;
  color: rgba(14, 27, 77, 0.88);
  line-height: 1.5;
}

.bundle-nudge__sub {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  color: rgba(14, 27, 77, 0.78);
}

.bundle-nudge__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bundle-nudge__actions .btn {
  width: 100%;
}

body.bundle-nudge-open {
  overflow: hidden;
}

.prepeps-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: 1900;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(14, 27, 77, 0.25);
  transition: transform 0.28s ease;
  max-width: calc(100vw - 2rem);
  text-align: center;
}

.prepeps-toast.is-visible {
  transform: translate(-50%, 0);
}

.home-categories .category-grid {
  align-items: stretch;
}

.cart-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.cart-page__width {
  max-width: 920px;
}

.cart-page__head {
  margin-bottom: 2rem;
}

.cart-page__head h1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cart-page__head-icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--navy);
}

.cart-page__head-icon .icon-bag {
  width: 2rem;
  height: 2rem;
}

.cart-page__lede {
  max-width: 36rem;
  margin: 0.5rem 0 0;
  color: rgba(14, 27, 77, 0.82);
  font-size: 1.05rem;
}

.cart-empty {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.1);
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(14, 27, 77, 0.06);
}

.cart-empty__icon {
  display: flex;
  justify-content: center;
  line-height: 0;
  margin-bottom: 1rem;
  color: rgba(14, 27, 77, 0.45);
}

.cart-empty__icon .icon-bag {
  width: 3rem;
  height: 3rem;
}

.cart-empty__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.cart-empty__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.cart-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .cart-split {
    grid-template-columns: 1fr minmax(260px, 300px);
    gap: 2rem;
  }
}

.cart-panel {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.1);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: 0 12px 32px rgba(14, 27, 77, 0.06);
}

.cart-panel--sticky {
  position: sticky;
  top: 5.5rem;
}

.cart-panel__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0 0 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(14, 27, 77, 0.1);
}

.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-line {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(14, 27, 77, 0.08);
}

.cart-line:first-child {
  padding-top: 0;
}

.cart-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-line__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cart-line__lead {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1;
}

.cart-line__thumb {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(14, 27, 77, 0.06);
  border: 1px solid rgba(14, 27, 77, 0.08);
}

.cart-line__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line__thumb--empty {
  background: linear-gradient(135deg, rgba(14, 27, 77, 0.05), rgba(71, 112, 219, 0.08));
}

.cart-line__main {
  min-width: 0;
}

.cart-line__main strong {
  font-size: 1.05rem;
  display: block;
  word-wrap: break-word;
}

.cart-line__sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(14, 27, 77, 0.55);
}

.cart-line__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  flex-shrink: 0;
}

.cart-line__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-line__tag--free {
  color: #0c6f3e;
  background: rgba(33, 176, 105, 0.14);
  border: 1px solid rgba(33, 176, 105, 0.26);
}

.cart-line__tag--pen {
  color: var(--navy);
  background: rgba(71, 112, 219, 0.14);
  border: 1px solid rgba(71, 112, 219, 0.28);
}

.cart-line__tag-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #21b069;
}

.cart-line--free .cart-line__thumb {
  box-shadow: 0 0 0 2px rgba(33, 176, 105, 0.35);
  border-color: rgba(33, 176, 105, 0.4);
}

.cart-line__remove {
  margin-top: 0.65rem;
  margin-left: calc(4rem + 0.85rem);
  border: 1px solid rgba(14, 27, 77, 0.16);
  background: #fff;
  color: rgba(14, 27, 77, 0.75);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cart-line__remove:hover {
  border-color: rgba(227, 36, 2, 0.45);
  background: rgba(227, 36, 2, 0.06);
  color: var(--accent-red);
}

.cart-summary {
  margin-bottom: 1rem;
}

.cart-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(14, 27, 77, 0.82);
}

.cart-summary__row strong {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.05rem;
}

.cart-summary__row--discount {
  color: #0c6f3e;
}

.cart-summary__row--discount strong {
  color: #0c6f3e;
}

.cart-summary__muted {
  font-style: normal;
  color: rgba(14, 27, 77, 0.55);
  font-size: 0.88rem;
  font-family: var(--font-body);
}

.cart-summary__row--total {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(14, 27, 77, 0.1);
  font-size: 1.15rem;
}

.cart-summary__row--total strong {
  font-size: 1.35rem;
}

.cart-summary__bundle-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.9rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(71, 112, 219, 0.07);
  border: 1px solid rgba(71, 112, 219, 0.2);
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(14, 27, 77, 0.88);
}

.cart-summary__bundle-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(71, 112, 219, 0.14);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  line-height: 1;
  margin-top: 0.12rem;
}

.cart-summary__bundle-text strong {
  color: var(--navy);
  font-weight: 700;
}

.cart-summary__perk {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(33, 176, 105, 0.08);
  border: 1px solid rgba(33, 176, 105, 0.24);
}

.cart-summary__perk-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(33, 176, 105, 0.18);
  color: #0c6f3e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

.cart-summary__perk-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: #0c6f3e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-summary__perk-body {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(14, 27, 77, 0.82);
}

.cart-summary__perk-body em {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.cart-banner-slot:empty {
  display: none;
}

.cart-banner-slot:not(:empty) {
  margin-bottom: 1rem;
}

.cart-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  margin-top: 1rem;
  border: 1px solid rgba(14, 27, 77, 0.08);
  background: #fff;
}

.cart-banner__icon {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
}

.cart-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-size: 1rem;
}

.cart-banner__body {
  margin: 0;
  color: rgba(14, 27, 77, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cart-banner__body em {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.cart-banner__actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cart-banner--win {
  background: linear-gradient(135deg, rgba(33, 176, 105, 0.1), rgba(33, 176, 105, 0.03));
  border-color: rgba(33, 176, 105, 0.28);
}

.cart-banner--win .cart-banner__icon {
  background: rgba(33, 176, 105, 0.16);
  color: #0c6f3e;
}

.cart-banner--win .cart-banner__title {
  color: #0c6f3e;
}

.cart-banner--nudge {
  background: linear-gradient(135deg, rgba(71, 112, 219, 0.1), rgba(71, 112, 219, 0.03));
  border-color: rgba(71, 112, 219, 0.28);
}

.cart-banner--nudge .cart-banner__icon {
  background: rgba(71, 112, 219, 0.16);
  color: var(--blue);
}

.cart-banner__value {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.cart-panel--summary {
  padding: 1.35rem 1.35rem 1.25rem;
}

.cart-checkout {
  width: 100%;
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}

.cart-checkout__total {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.cart-fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(14, 27, 77, 0.6);
  text-align: center;
}

.cart-footer-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(14, 27, 77, 0.55);
  font-size: 0.9rem;
}

.cart-footer-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(14, 27, 77, 0.78);
  background: transparent;
  border: none;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.cart-footer-link:hover {
  color: var(--navy);
  background: rgba(14, 27, 77, 0.06);
  text-decoration: none;
}

.cart-footer-link--danger:hover {
  color: var(--accent-red);
  background: rgba(227, 36, 2, 0.08);
}

.cart-footer-sep {
  color: rgba(14, 27, 77, 0.3);
  user-select: none;
}

.cart-page__crumbs {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(14, 27, 77, 0.6);
}

.cart-page__crumbs a {
  color: var(--blue);
  text-decoration: none;
}

.cart-page__crumbs a:hover {
  text-decoration: underline;
}

/* ---------- Trust bar (3 icons) ---------- */
.trust-bar {
  background: var(--bg-white);
  padding: 2.25rem 0;
  border-top: 1px solid rgba(14, 27, 77, 0.06);
  border-bottom: 1px solid rgba(14, 27, 77, 0.06);
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  text-align: center;
}

@media (min-width: 720px) {
  .trust-bar__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  color: var(--teal);
}

.trust-item__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.trust-item__sub {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(14, 27, 77, 0.65);
}

/* ---------- Researched Together ---------- */
.researched-together {
  padding: 3rem 0;
}

.researched-together__heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
  color: var(--navy);
}

.category-grid--small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 720px) {
  .category-grid--small {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card--small h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
}

.category-card--small .category-card__body {
  padding: 0.75rem 0.9rem 0.9rem;
}

.category-card--small .category-card__meta {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.88rem;
}

/* ---------- Important Research Notice ---------- */
.research-notice {
  padding: 1.75rem 0 1rem;
}

.research-notice__card {
  background: #fff9ec;
  border: 1px solid #f4d37a;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  color: var(--navy);
}

.research-notice__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b88a1d;
  margin: 0 0 0.65rem;
}

.research-notice__card p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- Newsletter CTA ---------- */
.newsletter-cta {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #fbfbe7 0%, #e8f6d6 45%, #ead6f0 100%);
  margin-top: 2rem;
}

.newsletter-cta__inner {
  text-align: center;
}

.newsletter-cta__hero {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.newsletter-cta__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 1.25rem;
}

.newsletter-cta__highlight {
  background: linear-gradient(180deg, transparent 60%, #b7f37a 60%);
  padding: 0 0.1em;
}

.newsletter-cta__cta {
  background: #111;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
}

.newsletter-cta__cta:hover {
  background: var(--navy);
}

.newsletter-cta__signup {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
  border: 1px solid rgba(14, 27, 77, 0.08);
}

@media (min-width: 720px) {
  .newsletter-cta__signup {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
  }
}

.newsletter-cta__signup-copy h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.1rem;
}

.newsletter-cta__signup-copy p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: rgba(14, 27, 77, 0.75);
}

.newsletter-cta__fineprint {
  font-size: 0.82rem !important;
  color: rgba(14, 27, 77, 0.6) !important;
}

.newsletter-cta__form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.newsletter-cta__form input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(14, 27, 77, 0.18);
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  min-width: 0;
}

.newsletter-cta__form input[type="email"]:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(71, 112, 219, 0.2);
}

.newsletter-cta__form button {
  background: #111;
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-heading);
  cursor: pointer;
}

.newsletter-cta__form button:hover {
  background: var(--navy);
}

/* ---------- Payment methods ---------- */
.payment-methods {
  padding: 1.5rem 0 2.5rem;
  background: var(--bg-white);
}

.payment-methods__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-methods__label {
  font-size: 0.9rem;
  color: rgba(14, 27, 77, 0.65);
  font-family: var(--font-heading);
}

.payment-methods__icons {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

/* ---------- Shop landing (pens first, peptides catalog) ---------- */
.shop-hero {
  padding: 2.25rem 0 1rem;
}

.shop-hero h1 {
  margin: 0.35rem 0 1rem;
}

.shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.shop-section-head {
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.shop-section-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--navy);
}

.shop-section-head p {
  margin: 0;
  font-size: 1rem;
  color: rgba(14, 27, 77, 0.72);
  line-height: 1.5;
}

.shop-pens {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.shop-pen-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .shop-pen-grid {
    grid-template-columns: 1.25fr 0.95fr;
    align-items: stretch;
  }
}

.shop-pen-feature {
  display: grid;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(14, 27, 77, 0.06);
}

@media (min-width: 720px) {
  .shop-pen-feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

.shop-pen-feature__media {
  background: linear-gradient(165deg, #eef2ff 0%, #f4f6fb 55%, #e8ecf8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  min-height: 220px;
}

.shop-pen-feature__media img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  display: block;
}

.shop-pen-feature__body {
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-pen-feature__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}

.shop-pen-feature__body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--navy);
  line-height: 1.2;
}

.shop-pen-feature__price {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
}

.shop-pen-feature__body > p:last-of-type {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(14, 27, 77, 0.78);
  flex: 1;
}

.shop-pen-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

/* Pen + peptide bundle promo card (shop) */
.shop-bundle-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(14, 27, 77, 0.06);
  display: flex;
  flex-direction: column;
}

.shop-bundle-card__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
  line-height: 1;
}

.shop-bundle-card__visual {
  background: linear-gradient(180deg, #f0f4ff 0%, #f8f9fc 100%);
  padding: 2.25rem 1rem 1.35rem;
  border-bottom: 1px solid rgba(14, 27, 77, 0.06);
}

.shop-bundle-card__pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 420px;
  margin: 0 auto;
}

.shop-bundle-card__fig {
  margin: 0;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.shop-bundle-card__fig img {
  width: 100%;
  max-width: 160px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.shop-bundle-card__fig figcaption {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 27, 77, 0.55);
  font-family: var(--font-heading);
}

.shop-bundle-card__plus {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  padding: 0 0.15rem;
}

@media (max-width: 520px) {
  .shop-bundle-card__pair {
    flex-direction: column;
    gap: 0.35rem;
  }

  .shop-bundle-card__plus {
    transform: rotate(90deg);
    margin: 0.15rem 0;
  }
}

.shop-bundle-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-bundle-card__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b91c1c;
  margin: 0;
}

.shop-bundle-card__body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
  color: var(--navy);
}

.shop-bundle-card__hook {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(14, 27, 77, 0.88);
}

.shop-bundle-card__fine {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(14, 27, 77, 0.65);
}

.shop-bundle-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

/* Discover more — panels + peptide filter */
.shop-discover {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(14, 27, 77, 0.06);
  background: linear-gradient(180deg, #fff 0%, rgba(239, 240, 245, 0.65) 100%);
}

.shop-discover__intro {
  margin-bottom: 1.5rem;
}

.shop-discover__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--navy);
}

.shop-discover__sub {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  color: rgba(14, 27, 77, 0.72);
  line-height: 1.5;
}

.shop-discover__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .shop-discover__grid {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    align-items: start;
  }
}

.shop-discover__panel {
  height: 100%;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.08);
  background: #fff;
  box-shadow: 0 10px 36px rgba(14, 27, 77, 0.06);
}

.shop-discover__panel--peptides {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.shop-discover__col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(14, 27, 77, 0.07);
}

.shop-discover__col-head--peptides {
  flex-wrap: nowrap;
}

@media (max-width: 520px) {
  .shop-discover__col-head--peptides {
    flex-wrap: wrap;
  }
}

.shop-discover__col-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(14, 27, 77, 0.5);
}

.shop-discover__all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.shop-discover__all:hover {
  text-decoration: underline;
}

.shop-discover__filter {
  flex: 1;
  min-width: 8rem;
  max-width: 14rem;
  margin-left: auto;
  padding: 0.45rem 0.75rem 0.45rem 0.95rem;
  border: 1px solid rgba(14, 27, 77, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(239, 240, 245, 0.65);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shop-discover__filter::placeholder {
  color: rgba(14, 27, 77, 0.45);
}

.shop-discover__filter:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(71, 112, 219, 0.18);
}

.shop-discover__scroll {
  flex: 1;
  min-height: 0;
  max-height: min(52vh, 400px);
  overflow-y: auto;
  overflow-x: hidden;
  margin: 0 -0.15rem;
  padding: 0.15rem 0.35rem 0.15rem 0.15rem;
  scrollbar-color: rgba(71, 112, 219, 0.35) transparent;
  scrollbar-width: thin;
}

.shop-discover__scroll::-webkit-scrollbar {
  width: 6px;
}

.shop-discover__scroll::-webkit-scrollbar-thumb {
  background: rgba(71, 112, 219, 0.35);
  border-radius: 99px;
}

.shop-discover__foot {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(14, 27, 77, 0.07);
  font-size: 0.9rem;
}

.shop-discover__foot a {
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.shop-discover__foot a:hover {
  text-decoration: underline;
}

.shop-discover__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.shop-discover__pills--pens {
  align-content: flex-start;
}

.shop-discover__pills--peptides {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.45rem;
}

a.shop-discover__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(14, 27, 77, 0.1);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.shop-discover__pills--peptides a.shop-discover__pill {
  min-height: 2.5rem;
}

a.shop-discover__pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(71, 112, 219, 0.07);
  transform: translateY(-1px);
}

/* Full bundle catalog (peptide + pen per Shopify bundle variant) */
.shop-bundles-catalog {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.shop-bundle-cat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .shop-bundle-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .shop-bundle-cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.shop-bundle-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 27, 77, 0.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(14, 27, 77, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  height: 100%;
}

.shop-bundle-cat-card:hover {
  border-color: rgba(71, 112, 219, 0.45);
  box-shadow: 0 14px 40px rgba(14, 27, 77, 0.1);
  transform: translateY(-2px);
}

.shop-bundle-cat-card__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.62rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(185, 28, 28, 0.35);
  line-height: 1;
}

.shop-bundle-cat-card__pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0.65rem 0.85rem;
  background: linear-gradient(180deg, #eef2ff 0%, #f7f8fc 100%);
  border-bottom: 1px solid rgba(14, 27, 77, 0.06);
}

.shop-bundle-cat-card__fig {
  margin: 0;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.shop-bundle-cat-card__fig img {
  width: 100%;
  max-width: 120px;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.shop-bundle-cat-card__fig figcaption {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(14, 27, 77, 0.5);
  font-family: var(--font-heading);
}

.shop-bundle-cat-card__plus {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
}

@media (max-width: 400px) {
  .shop-bundle-cat-card__pair {
    flex-direction: column;
    gap: 0.2rem;
  }

  .shop-bundle-cat-card__plus {
    transform: rotate(90deg);
    margin: 0.1rem 0;
  }
}

.shop-bundle-cat-card__body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.shop-bundle-cat-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.25;
}

.shop-bundle-cat-card__variant {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(14, 27, 77, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-bundle-cat-card__price {
  margin: 0.25rem 0 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
}

.shop-bundle-cat-card__cta {
  margin-top: auto;
  padding-top: 0.65rem;
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--blue);
}

.shop-pen-foot {
  margin: 1.5rem 0 0;
  text-align: center;
}

.shop-peptide-wrap {
  padding-bottom: 2.75rem;
}

.shop-peptide-wrap .category-grid {
  margin-top: 0.25rem;
}

.shop-grid-fallback {
  margin: 1rem 0 0;
  color: rgba(14, 27, 77, 0.75);
}
