/* =============================================================================
   Surfpeptides storefront — generated baseline.
   =============================================================================
   This is a STARTER stylesheet. The palette tokens, typography choices, and
   structural styles below produce a launchable but visually generic brand
   storefront. Hand it to a designer.

   The compliance chassis (age gate, RUO/FDA disclaimer footer, no-therapeutic-
   claims grep, cross-store isolation) is wired automatically and does not
   depend on this stylesheet. You can rewrite this file end-to-end without
   breaking compliance.
   ============================================================================= */

/* Palette tokens — edit these first. The rest of the stylesheet pulls
   from these CSS variables, so a one-line edit at the top changes
   every component. */
.surfpeptides {
  --color-bg: #ffffff;
  --color-surface: #f7f7f8;
  --color-accent: #111111;
  --color-text: #111111;
  --color-muted: #6b7280;
  --color-subtle: #e5e7eb;
  --color-border: #e5e7eb;

  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.surfpeptides main { display: block; }

.surfpeptides a {
  color: var(--color-accent);
  text-decoration: none;
}

.surfpeptides a:hover { text-decoration: underline; }

.surfpeptides h1, .surfpeptides h2, .surfpeptides h3, .surfpeptides h4 {
  margin: 0 0 0.5em;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.surfpeptides h1 { font-size: clamp(36px, 5vw, 48px); }
.surfpeptides h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 600; }
.surfpeptides h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 600; }

.surfpeptides p {
  margin: 0 0 1em;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.surfpeptides p.muted { color: var(--color-muted); }

/* ----- Nav header ----------------------------------------------------- */
.surfpeptides-nav {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.surfpeptides-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}
.surfpeptides-nav__brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--color-text);
}
.surfpeptides-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.surfpeptides-nav__link {
  color: var(--color-text);
  font-weight: 600;
}
.surfpeptides-nav__cart {
  background: var(--color-accent);
  color: var(--color-bg);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

/* ----- Hero ----------------------------------------------------------- */
.surfpeptides-hero {
  padding: 80px 24px;
  text-align: center;
  background: var(--color-surface);
}
.surfpeptides-hero__inner { max-width: 800px; margin: 0 auto; }
.surfpeptides-hero__wordmark { margin-bottom: 16px; }
.surfpeptides-hero__tagline { font-size: 20px; color: var(--color-muted); margin-bottom: 32px; }
.surfpeptides-hero__cta {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 14px 32px;
  font-weight: 600;
}
.surfpeptides-hero__cta:hover { text-decoration: none; opacity: 0.9; }

/* ----- Trust strip ---------------------------------------------------- */
.surfpeptides-trust-strip {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px;
}
.surfpeptides-trust-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--color-muted);
}

/* ----- Product grid (home + shop) ------------------------------------ */
.surfpeptides-grid-section { padding: 64px 24px; }
.surfpeptides-grid-section__inner { max-width: 1200px; margin: 0 auto; }
.surfpeptides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 900px) { .surfpeptides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .surfpeptides-grid { grid-template-columns: 1fr; } }

.surfpeptides-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 24px;
}
.surfpeptides-card__link { display: block; color: var(--color-text); }
.surfpeptides-card__tagline { font-size: 12px; text-transform: uppercase; color: var(--color-muted); margin-bottom: 8px; }
.surfpeptides-card__name { font-size: 22px; margin-bottom: 8px; }
.surfpeptides-card__dose { font-size: 14px; color: var(--color-muted); }
.surfpeptides-card__view { display: inline-block; margin-top: 16px; font-weight: 600; color: var(--color-accent); }

/* ----- Filter bar ----------------------------------------------------- */
.surfpeptides-filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}
.surfpeptides-filter-bar__chip {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
}
.surfpeptides-filter-bar__chip--active {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

/* ----- PDP ------------------------------------------------------------ */
.surfpeptides-pdp { padding: 64px 24px; }
.surfpeptides-pdp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 800px) { .surfpeptides-pdp__inner { grid-template-columns: 1fr; } }
.surfpeptides-pdp__image {
  background: var(--color-surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}
.surfpeptides-pdp__data { }
.surfpeptides-pdp__add {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 14px 32px;
  font-weight: 600;
  border: none;
  font-family: inherit;
  cursor: pointer;
  margin-top: 16px;
}
.surfpeptides-pdp__qty {
  width: 80px;
  padding: 10px;
  border: 1px solid var(--color-border);
  font-size: 16px;
  font-family: inherit;
}

/* ----- Cart ----------------------------------------------------------- */
.surfpeptides-cart { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.surfpeptides-cart__items { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.surfpeptides-cart__items th,
.surfpeptides-cart__items td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.surfpeptides-cart__total { font-size: 24px; font-weight: 700; text-align: right; }

/* ----- Cart drawer ---------------------------------------------------- */
.surfpeptides-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
}
.surfpeptides-cart-drawer--open { pointer-events: auto; }
.surfpeptides-cart-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.surfpeptides-cart-drawer--open .surfpeptides-cart-drawer__scrim { opacity: 1; }
.surfpeptides-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}
.surfpeptides-cart-drawer--open .surfpeptides-cart-drawer__panel { transform: translateX(0); }
.surfpeptides-cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
}
.surfpeptides-cart-drawer__close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
}
.surfpeptides-cart-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}
.surfpeptides-cart-drawer__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}
.surfpeptides-cart-drawer__row-thumb {
  width: 64px;
  height: 64px;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.surfpeptides-cart-drawer__row-thumb-name {
  font-size: 10px;
  text-align: center;
  color: var(--color-muted);
  padding: 4px;
}
.surfpeptides-cart-drawer__footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
}
.surfpeptides-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 18px;
}
.surfpeptides-cart-drawer__checkout {
  display: block;
  text-align: center;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.surfpeptides-cart-drawer__view-cart {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--color-muted);
}

/* Cross-portfolio attach card (PORTFOLIO_PLAN.md §4.1). */
.surfpeptides-cart-drawer__bacwater-attach {
  border-top: 1px solid var(--color-border);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.surfpeptides-cart-drawer__bacwater-card { display: flex; flex-direction: column; gap: 4px; }
.surfpeptides-cart-drawer__bacwater-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.surfpeptides-cart-drawer__bacwater-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}
.surfpeptides-cart-drawer__bacwater-price {
  margin: 0;
  font-size: 14px;
  color: var(--color-text);
}
.surfpeptides-cart-drawer__bacwater-add {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
}
.surfpeptides-cart-drawer__bacwater-add:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
.surfpeptides-cart-drawer__empty {
  padding: 48px 24px;
  text-align: center;
}

/* ----- Age gate modal ------------------------------------------------- */
.surfpeptides-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.surfpeptides-age-gate__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.surfpeptides-age-gate__card {
  position: relative;
  background: var(--color-bg);
  padding: 40px;
  max-width: 480px;
  width: calc(100% - 32px);
  text-align: center;
  border: 1px solid var(--color-border);
}
.surfpeptides-age-gate__heading { margin-bottom: 16px; }
.surfpeptides-age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}
.surfpeptides-age-gate__btn {
  padding: 12px 24px;
  border: 1px solid var(--color-accent);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.surfpeptides-age-gate__btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
}
.surfpeptides-age-gate__btn--ghost {
  background: transparent;
  color: var(--color-text);
}
.surfpeptides-age-gate__legal {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 16px;
}

/* ----- Compliance footer (shared partial — shape) -------------------- */
.surfpeptides .brand-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 48px 24px;
  margin-top: 64px;
}
.surfpeptides .brand-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.surfpeptides .brand-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.surfpeptides .brand-footer__nav a {
  color: var(--color-text);
  font-size: 14px;
}
.surfpeptides .brand-footer__ruo,
.surfpeptides .brand-footer__fda,
.surfpeptides .brand-footer__copy {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 8px;
}

/* ----- Content pages -------------------------------------------------- */
.surfpeptides-content { padding: 64px 24px; max-width: 800px; margin: 0 auto; }
.surfpeptides-content h1 { margin-bottom: 32px; }
.surfpeptides-content h2 { margin-top: 48px; margin-bottom: 16px; }

/* ----- Lab Results (COAs) -------------------------------------------- */
.surfpeptides-coas { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.surfpeptides-coas__hero {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  padding: 32px;
  background: var(--color-surface);
}
@media (max-width: 800px) { .surfpeptides-coas__hero { grid-template-columns: repeat(2, 1fr); } }
.surfpeptides-coas__stat { text-align: center; }
.surfpeptides-coas__stat-value { font-size: 32px; font-weight: 800; }
.surfpeptides-coas__stat-label { font-size: 12px; text-transform: uppercase; color: var(--color-muted); }


/* Same Nutreko grid fix as peprally — --section-products-per-row var isn't set. */
.surfpeptides .ap-productlist__inner {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-auto-flow: row !important;
  gap: 32px !important;
  overflow: visible !important;
  margin: 0 !important;
}
@media (max-width: 700px) {
  .surfpeptides .ap-productlist__inner { grid-template-columns: 1fr !important; }
}



/* Defensive overrides for the Nutreko ap-productfacet shop layout.
   Without the JS that activates the side-aside, the parent ap-productfacet
   ends up with weird flex children — the chip nav collapses into a
   narrow column. Force block layout + horizontal chip row. */
.surfpeptides ap-productfacet,
.surfpeptides .ap-productfacet { display: block !important; }
.surfpeptides .ap-productfacet__active-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 0 24px !important;
}
.surfpeptides .ap-productfacet__main { width: 100% !important; }



.surfpeptides .product-item-meta__title,
.surfpeptides .product-item .type-product,
.surfpeptides .product-item-meta p {
  overflow-wrap: break-word !important;
  word-break: normal !important;
}


/* ----------------------------------------------------------------
   Nutreko3 home features — slideshow, featured-product slider,
   newsletter section. Scoped under body.surfpeptides.
   ---------------------------------------------------------------- */

/* Slideshow viewport — full-bleed, fixed height (matches the prior
   hero's 640px). Slides fade in via opacity transition. */
body.surfpeptides .surfpeptides-slideshow {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: block;
}
body.surfpeptides .surfpeptides-slideshow__viewport,
body.surfpeptides .surfpeptides-slideshow__track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
}
body.surfpeptides .surfpeptides-slideshow__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease-in-out;
}
body.surfpeptides .surfpeptides-slideshow__slide--active {
  opacity: 1;
  pointer-events: auto;
}
body.surfpeptides .surfpeptides-slideshow__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
body.surfpeptides .surfpeptides-slideshow__content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px;
}
body.surfpeptides .surfpeptides-slideshow__content > * {
  max-width: 640px;
}
body.surfpeptides .surfpeptides-slideshow__eyebrow {
  margin: 0 0 16px;
  color: #1A2A3A;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
body.surfpeptides .surfpeptides-slideshow__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
body.surfpeptides .surfpeptides-slideshow__cta {
  display: inline-block;
  padding: 16px 32px;
}
body.surfpeptides .surfpeptides-slideshow__cta--ghost {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
/* Slide arrow controls (prev/next). */
body.surfpeptides .surfpeptides-slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(244, 236, 220, 0.85);
  color: #1A2A3A;
  border: 1px solid rgba(15, 124, 145, 0.35);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 0;
  cursor: pointer;
  z-index: 3;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
body.surfpeptides .surfpeptides-slideshow__arrow:hover {
  background: #0F7C91;
  color: #F8F4ED;
  border-color: #0F7C91;
}
body.surfpeptides .surfpeptides-slideshow__arrow--prev { left: 24px; }
body.surfpeptides .surfpeptides-slideshow__arrow--next { right: 24px; }
body.surfpeptides .surfpeptides-slideshow__dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}
body.surfpeptides .surfpeptides-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(26, 42, 58, 0.45);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
}
body.surfpeptides .surfpeptides-slideshow__dot--active {
  background: #0F7C91;
  border-color: #0F7C91;
}

/* Featured-product slider — horizontal scroll track + arrow controls. */
body.surfpeptides .surfpeptides-slider {
  display: block;
}
body.surfpeptides .surfpeptides-slider .surfpeptides-slider__track {
  display: grid !important;
  /* Operator (2026-05-05): "the product grids are broken and one long
     single column". The shop-grid override (.surfpeptides
     .ap-productlist__inner) has `grid-auto-flow: row !important` which
     was winning over the slider's plain `grid-auto-flow: column` —
     combined with `grid-template-columns: unset` it forced items into
     a single implicit column. Bump !important on every grid axis the
     slider needs so the shop-grid !important rules don't bleed in. */
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(260px, 1fr) !important;
  gap: 24px !important;
  overflow-x: auto !important;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding: 8px 4px 24px;
  scrollbar-width: thin;
  /* Override the existing two-up grid override defined upstream. */
  grid-template-columns: unset !important;
}
body.surfpeptides .surfpeptides-slider .surfpeptides-slider__track::-webkit-scrollbar {
  height: 6px;
}
body.surfpeptides .surfpeptides-slider .surfpeptides-slider__track::-webkit-scrollbar-thumb {
  background: rgba(15, 124, 145, 0.45);
  border-radius: 3px;
}
body.surfpeptides .surfpeptides-slider .surfpeptides-slider__item {
  scroll-snap-align: start;
}
@media (min-width: 900px) {
  body.surfpeptides .surfpeptides-slider .surfpeptides-slider__track {
    grid-auto-columns: minmax(0, calc(33.333% - 16px));
  }
}
body.surfpeptides .surfpeptides-slider__controls {
  display: inline-flex;
  gap: 12px;
}
body.surfpeptides .surfpeptides-slider__arrow {
  background: transparent;
  color: #1A2A3A;
  border: 1px solid rgba(26, 42, 58, 0.18);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 0;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
body.surfpeptides .surfpeptides-slider__arrow:hover {
  background: #0F7C91;
  color: #F8F4ED;
  border-color: #0F7C91;
}

/* Newsletter section — coastal sand panel with deep teal accents. */
body.surfpeptides .brand-newsletter-section {
  background: #F8F4ED;
  border-top: 1px solid #D4C8AC;
  padding: 80px 24px;
}
body.surfpeptides .brand-newsletter-section__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
body.surfpeptides .brand-newsletter-section__heading {
  margin: 0 0 12px;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
body.surfpeptides .brand-newsletter-section__body {
  margin: 0 0 24px;
  color: #5A6B7A;
  font-size: 15px;
  line-height: 1.65;
}
body.surfpeptides .brand-newsletter-section .field__input {
  background: #FFFFFF;
  border: 1px solid #D4C8AC;
  color: #1A2A3A;
  padding: 14px 16px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  /* Center typed text; matches the centered floating-label register. */
  text-align: center;
}

/* Newsletter floating-label override — same pattern as peprally
   (operator 2026-05-05: "newsletter signup looks like shit"). The
   Nutreko default `.field__label` lefts-aligns at `left: calc(border
   + 2rem)` and uses a near-foreground color. Centered + muted reads
   as supporting hint, not call-to-action. Surf register: warm-gray
   teal-tinted muted text on the sand panel.

   1. Center horizontally via `left: 50%` + translateX(-50%)
   2. Color muted to a warm slate (#7d8a96-ish) so the label sits
      below the brand voice rather than competing with it
   3. Inter 300 weight + 0.18em tracking + lowercase for the
      restrained editorial register the brand asks for. */
body.surfpeptides .brand-newsletter-section .field__label {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  color: rgba(26, 42, 58, 0.42) !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-weight: 300 !important;
  font-size: 13px !important;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  transition: top var(--duration-short, 200ms) ease,
              font-size var(--duration-short, 200ms) ease,
              opacity var(--duration-short, 200ms) ease;
}
body.surfpeptides .brand-newsletter-section .field__input:focus ~ .field__label,
body.surfpeptides .brand-newsletter-section .field__input:not(:placeholder-shown) ~ .field__label {
  font-size: 11px !important;
  letter-spacing: 0.22em;
  opacity: 0.55;
}
body.surfpeptides .brand-newsletter-section .newsletter-form__button {
  background: #0F7C91;
  color: #F8F4ED;
  border: 0;
  border-radius: 6px;
  margin-top: 12px;
  padding: 14px 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
body.surfpeptides .brand-newsletter-section .newsletter-form__button:hover {
  background: #0A5A6B;
}
body.surfpeptides .brand-newsletter-section .newsletter-form__message--success {
  color: #1B4965;
  margin-top: 0;
  margin-bottom: 24px;
}
body.surfpeptides .brand-newsletter-section .newsletter-form__message--error {
  color: #B5443A;
  margin-top: 0;
  margin-bottom: 24px;
}


/* =============================================================================
   SurfPeptides — Safety Data Sheet pages
   =============================================================================
   Per-chemistry SDS library. SurfPeptides leans coastal-warm: sand
   background under the body content, teal section dividers, Inter body.
   Visual register is intentionally lighter than the laboratory-clinical
   MyPeptides treatment.
   ============================================================================= */
body.surfpeptides .surfpeptides-sds-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
body.surfpeptides .surfpeptides-sds h1,
body.surfpeptides .surfpeptides-sds-detail h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #0d4f5e;
  letter-spacing: -0.01em;
}
body.surfpeptides .surfpeptides-sds__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
body.surfpeptides .surfpeptides-sds__card {
  background: #faf6ee;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  padding: 22px;
}
body.surfpeptides .surfpeptides-sds__card-title {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0d4f5e;
  margin-bottom: 10px;
}
body.surfpeptides .surfpeptides-sds__card-meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}
body.surfpeptides .surfpeptides-sds__card-meta dd {
  margin: 0 0 6px;
  color: #0d4f5e;
}
body.surfpeptides .surfpeptides-sds__card-cta,
body.surfpeptides .surfpeptides-sds-detail__pdf-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 16px;
  background: #0d4f5e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}
body.surfpeptides .surfpeptides-sds-detail {
  background: #faf6ee;
  padding: 32px;
  border-radius: 8px;
}
body.surfpeptides .surfpeptides-sds-detail__meta {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--color-muted);
  border-top: 1px solid #c5d8db;
  border-bottom: 1px solid #c5d8db;
  padding: 8px 0;
  display: inline-block;
  margin: 16px 0;
}
body.surfpeptides .surfpeptides-sds-detail__body section {
  margin: 22px 0;
  padding: 18px 20px;
  background: #ffffff;
  border-left: 4px solid #0d4f5e;
  border-radius: 0 4px 4px 0;
}
body.surfpeptides .surfpeptides-sds-detail__body section h3 {
  font-family: "Inter", sans-serif;
  color: #0d4f5e;
  font-size: 16px;
  margin: 0 0 10px;
}
body.surfpeptides .surfpeptides-sds-detail__body p {
  font-size: 14px;
  line-height: 1.7;
  color: #2d3748;
}
body.surfpeptides .surfpeptides-sds__empty,
body.surfpeptides .surfpeptides-sds__note,
body.surfpeptides .surfpeptides-sds-detail__note {
  color: var(--color-muted);
  font-size: 12px;
  font-style: italic;
}
