:root {
  --brand-primary: #89b7bc;
  --brand-secondary: #79a6ab;
  --background-soft: #eaf4f5;
  --text-dark: #274b50;
  --border-soft: #bdd4d7;
  --deep-teal: #0f757b;
  --deep-teal-strong: #0a666b;
  --primary-rgb: 137, 183, 188;
  --secondary-rgb: 121, 166, 171;
  --bgsoft-rgb: 234, 244, 245;
  --textdark-rgb: 39, 75, 80;
  --bordersoft-rgb: 189, 212, 215;
  --bg: #ffffff;
  --surface: #ffffff;
  --text: var(--text-dark);
  --muted: rgba(var(--textdark-rgb), 0.7);
  --line: rgba(var(--bordersoft-rgb), 0.88);
  --shadow: 0 22px 48px rgba(var(--textdark-rgb), 0.08);
  --shadow-soft: 0 14px 32px rgba(var(--textdark-rgb), 0.06);
  --shadow-card: 0 12px 26px rgba(var(--textdark-rgb), 0.06);
  --shadow-card-hover: 0 20px 34px rgba(var(--textdark-rgb), 0.11);
  --focus-ring: 0 0 0 4px rgba(var(--secondary-rgb), 0.24);
  --sticky-header-height: 66px;
  --sticky-header-height-mobile: 60px;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

html {
  scroll-padding-top: calc(var(--sticky-header-height) + 12px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 4% -8%, rgba(var(--primary-rgb), 0.16), transparent 28%),
    radial-gradient(circle at 96% 104%, rgba(var(--secondary-rgb), 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

svg {
  flex: 0 0 auto;
}

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

/* Service-led pages temporarily hide shop/category-led UI without deleting it. */
.service-led-hidden {
  display: none !important;
}

@media (min-width: 769px) {
  .home-showcase--service-led {
    align-items: stretch;
  }

  .home-showcase--service-led > .home-main-stack {
    align-self: stretch;
  }

  .home-showcase--service-led > .home-main-stack > .hero-panel.hero-carousel {
    /* Keep the hero at the image's own 1672x941 ratio so object-fit:cover
       fills it WITHOUT cropping. Previously this forced height:100% +
       aspect-ratio:auto, which stretched the hero to the sidebar's height
       and cropped the image by a screen-dependent amount. align-self:start
       stops the grid from stretching it; the sidebar simply matches up. */
    height: auto;
    aspect-ratio: 1672 / 941;
    align-self: start;
  }

  /* Sidebar stretches to the hero's (aspect-ratio-driven) height. Instead
     of distributing the extra height into big sparse gaps, the cards
     themselves grow to share the height (content centered), with tight
     fixed gaps. This is fully adaptive: cards scale up on tall/wide heroes
     and shrink on smaller screens (never fixed-bulky), the gaps stay tight
     at every size, and the last card always meets the hero's bottom. */
  .home-showcase--service-led > .hero-side {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .home-showcase--service-led > .hero-side > .side-card {
    /* Let cards expand to share spare height, but never shrink below their
       content. This prevents the primary CTA from being clipped on narrower
       desktop/tablet widths where the sidebar becomes shorter than its natural
       content stack. */
    flex: 1 0 auto;
    align-content: center;
  }

  /* The promo card is the visual anchor, so it takes a larger share. */
  .home-showcase--service-led > .hero-side > .side-card-primary {
    flex: 2 0 auto;
  }
}

.container {
  width: min(1360px, calc(100% - 1.8rem));
  margin: 0 auto;
}

@media (min-width: 1500px) {
  /* Widen ALL containers together (header, hero, content sections, footer)
     so they share one width and their edges align. Previously only the
     header + hero widened here, leaving the content sections below at the
     narrower 1360px -- which looked misaligned on screens >= 1500px while
     looking fine on narrower screens. */
  .container {
    width: min(1480px, calc(100% - 3rem));
  }

  .home-showcase.hero {
    grid-template-columns: minmax(0, 1fr) 338px;
    gap: 0.96rem;
  }
}

@media (min-width: 1800px) {
  .container {
    width: min(1560px, calc(100% - 4rem));
  }

  .home-showcase.hero {
    grid-template-columns: minmax(0, 1fr) 348px;
    gap: 1.06rem;
  }
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(var(--bordersoft-rgb), 0.72);
  backdrop-filter: blur(12px);
}

.top-strip {
  background: linear-gradient(90deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
}

.top-strip-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.top-strip-message {
  display: flex;
  align-items: center;
  gap: 0.46rem;
  margin: 0;
  font-size: 0.79rem;
  white-space: nowrap;
}

.top-strip-message svg,
.search-bar button svg,
.header-action svg,
.cart-pill svg,
.category-nav a svg,
.hero-trust-card svg,
.hero-link svg,
.side-card-cta svg,
.side-card-icon svg,
.section-head a svg,
.category-arrow svg,
.compact-search button svg,
.compact-account svg,
.compact-cart svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-strip-message strong {
  font-weight: 800;
}

.top-strip-message-link--desktop {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.top-strip-message-link--desktop:visited,
.top-strip-message-link--desktop:hover,
.top-strip-message-link--desktop:focus,
.top-strip-message-link--desktop:focus-visible,
.top-strip-message-link--desktop:active {
  color: inherit;
}

.top-strip-message-link--desktop:hover,
.top-strip-message-link--desktop:focus,
.top-strip-message-link--desktop:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.top-strip-message-text--mobile {
  display: none;
}

.top-strip-message-link--mobile {
  display: none;
}

.top-strip-hours-dropdown {
  display: none;
}

.top-strip-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.top-strip-hours {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.26rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(211, 255, 249, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 255, 252, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 18px rgba(4, 57, 62, 0.12);
  color: #149d97;
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-align: center;
}

.top-strip-links a {
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.96;
}

.top-strip-links a:hover {
  opacity: 1;
}

.header-shell {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) auto;
  column-gap: 1.05rem;
  row-gap: 0.58rem;
  align-items: center;
  padding: 0.78rem 0 0.58rem;
}

.header-main {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
  border-radius: 999px;
  background: rgba(var(--bgsoft-rgb), 0.6);
  color: var(--deep-teal);
  box-shadow: 0 8px 18px rgba(var(--textdark-rgb), 0.05);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--secondary-rgb), 0.82);
  box-shadow: 0 12px 20px rgba(var(--textdark-rgb), 0.08);
}

.mobile-menu-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-shell {
  display: none;
}

.mobile-menu-overlay,
.mobile-menu-close {
  appearance: none;
}

.brand-logo {
  display: block;
  width: 149px;
  height: auto;
}

.search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1.5px solid rgba(var(--bordersoft-rgb), 0.9);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.06);
  overflow: hidden;
}

.search-bar:focus-within {
  border-color: rgba(var(--secondary-rgb), 0.8);
}

.search-bar input {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 0.82rem 1.05rem;
  font-size: 0.94rem;
}

.search-bar button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.42rem;
  min-height: 40px;
  margin-right: 0.22rem;
  padding: 0 1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.search-bar button:hover {
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  min-width: 0;
  justify-self: end;
  justify-content: flex-end;
}

.header-account {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-account__link {
  padding: 0;
  text-decoration: none;
  background: transparent;
}

.header-action svg {
  width: 18px;
  height: 18px;
  color: rgba(var(--textdark-rgb), 0.78);
}

.header-action:hover,
.header-account__link:hover,
.header-account__link:focus-visible {
  color: var(--deep-teal);
  outline: none;
}

.header-account__mobile-link {
  display: none;
}

.header-account,
.compact-account,
.mobile-menu-section[aria-labelledby="mobile-menu-account"] {
  display: none;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 40px;
  padding: 0 0.72rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, rgba(var(--bgsoft-rgb), 0.55));
  box-shadow: 0 8px 18px rgba(var(--textdark-rgb), 0.05);
  white-space: nowrap;
}

.cart-pill svg {
  width: 18px;
  height: 18px;
  color: rgba(var(--textdark-rgb), 0.8);
}

.cart-pill-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.cart-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.cart-pill {
  display: none;
}

.header-phone-dropdown {
  position: relative;
  display: inline-flex;
}

.header-phone-dropdown--main {
  margin-left: auto;
}

.header-phone-dropdown--compact {
  justify-self: end;
}

.header-phone-dropdown summary {
  list-style: none;
}

.header-phone-dropdown summary::-webkit-details-marker {
  display: none;
}

.header-phone-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.56rem;
  min-width: 2.56rem;
  height: 2.56rem;
  min-height: 2.56rem;
  padding: 0;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.9);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, rgba(var(--bgsoft-rgb), 0.55));
  color: var(--deep-teal);
  box-shadow: 0 10px 20px rgba(var(--textdark-rgb), 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.header-phone-trigger__label {
  display: none;
}

.header-phone-trigger svg {
  width: 1.12rem;
  height: 1.12rem;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone-trigger:hover,
.header-phone-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--secondary-rgb), 0.82);
  box-shadow: 0 14px 24px rgba(var(--textdark-rgb), 0.09);
  color: var(--deep-teal-strong);
  outline: none;
}

.header-phone-dropdown--compact .header-phone-trigger {
  width: 2.18rem;
  min-width: 2.18rem;
  height: 2.18rem;
  min-height: 2.18rem;
}

.header-phone-dropdown--compact .header-phone-trigger svg {
  width: 1rem;
  height: 1rem;
}

.header-phone-popover {
  position: absolute;
  top: calc(100% + 0.48rem);
  right: 0;
  display: grid;
  min-width: max-content;
  padding: 0.66rem 0.8rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 32px rgba(var(--textdark-rgb), 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 45;
}

.header-phone-dropdown[open] .header-phone-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-phone-popover a {
  color: var(--deep-teal);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone-popover a:hover,
.header-phone-popover a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
  outline: none;
}

.header-browse {
  grid-column: 2 / -1;
  display: grid;
  gap: 0.38rem;
  padding-bottom: 0.08rem;
}

@media (min-width: 981px) {
  .header-phone-trigger__label {
    display: inline;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .header-phone-dropdown--main .header-phone-trigger {
    width: auto;
    min-width: 2.56rem;
    gap: 0.44rem;
    padding: 0 0.82rem 0 0.74rem;
  }

  .compact-header .header-phone-dropdown--compact .header-phone-trigger {
    width: auto;
    min-width: 2.18rem;
    justify-content: flex-start;
    gap: 0.36rem;
    padding: 0 0.74rem 0 0.66rem;
  }
}

@media (min-width: 1121px) {
  .header-actions {
    width: max-content;
    min-width: 0;
  }

  .header-phone-dropdown--main {
    margin-right: 0;
  }
}

.category-nav,
.quick-nav {
  display: flex;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-nav::-webkit-scrollbar,
.quick-nav::-webkit-scrollbar {
  display: none;
}

.category-nav {
  gap: 0.48rem;
  overflow: visible;
  margin-left: -7.2rem;
}

.category-nav > a,
.category-nav > .category-pill-dropdown > a,
.category-nav > .category-pill-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.44rem 0.72rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(var(--textdark-rgb), 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.category-nav > .category-pill-dropdown > button {
  appearance: none;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;
}

.category-nav > a.category-pill-popular {
  display: none;
}

.category-nav > a svg,
.category-nav > .category-pill-dropdown > a svg,
.category-nav > .category-pill-dropdown > button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  color: var(--deep-teal);
}

.category-nav > a:hover,
.category-nav > .category-pill-dropdown > a:hover,
.category-nav > .category-pill-dropdown > button:hover,
.category-pill-dropdown:hover > a,
.category-pill-dropdown:hover > button,
.category-pill-dropdown:focus-within > a,
.category-pill-dropdown:focus-within > button {
  transform: translateY(-1px);
  border-color: rgba(var(--secondary-rgb), 0.95);
  box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.06);
}

.category-pill-dropdown {
  position: relative;
}

.category-pill-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: min(45rem, calc(100vw - 1rem));
  height: 0.72rem;
}

.category-pill-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.62rem);
  left: 0;
  z-index: 25;
  width: min(45rem, calc(100vw - 1rem));
  padding: 0.9rem 0.92rem 0.82rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.82);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(var(--textdark-rgb), 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  white-space: normal;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem 0.78rem;
}

.category-pill-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.42rem;
  left: 1.45rem;
  width: 0.84rem;
  height: 0.84rem;
  border-top: 1px solid rgba(var(--bordersoft-rgb), 0.82);
  border-left: 1px solid rgba(var(--bordersoft-rgb), 0.82);
  background: #ffffff;
  transform: rotate(45deg);
}

.category-pill-dropdown:hover .category-pill-dropdown-menu,
.category-pill-dropdown:focus-within .category-pill-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.category-pill-dropdown--compact::after {
  width: 100%;
  height: 0.56rem;
}

.category-pill-dropdown--prescriptions::after {
  left: -0.45rem;
  width: calc(100% + 0.9rem);
  height: 0.96rem;
}

.category-pill-dropdown-menu--compact {
  top: calc(100% + 0.2rem);
  width: 15.5rem;
  min-width: 15.5rem;
  padding: 0.48rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.18rem;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(var(--textdark-rgb), 0.08);
}

.category-pill-dropdown-menu--compact::before {
  left: 1.3rem;
}

.category-pill-dropdown-menu--compact .category-pill-dropdown-link {
  min-height: 38px;
  padding: 0.5rem 0.72rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 700;
}

.category-pill-dropdown-menu--compact .category-pill-dropdown-link:not(:last-child) {
  box-shadow: inset 0 -1px 0 rgba(var(--secondary-rgb), 0.18);
}

.category-pill-dropdown-menu--compact .category-pill-dropdown-link:hover,
.category-pill-dropdown-menu--compact .category-pill-dropdown-link:focus-visible {
  border-color: rgba(var(--secondary-rgb), 0.28);
  background: rgba(var(--bgsoft-rgb), 0.52);
}

.category-pill-dropdown-section {
  min-width: 0;
}

.category-pill-dropdown-section + .category-pill-dropdown-section {
  padding-left: 0.88rem;
  border-left: 1px solid rgba(var(--bordersoft-rgb), 0.6);
}

.category-pill-dropdown-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin-top: 0.02rem;
  padding-top: 0.76rem;
  border-top: 1px solid rgba(var(--bordersoft-rgb), 0.72);
}

.category-pill-dropdown-section p {
  margin: 0 0 0.34rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--deep-teal);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.category-pill-dropdown-section p svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--deep-teal);
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-pill-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 30px;
  padding: 0.34rem 0.18rem 0.34rem 0.08rem;
  border-radius: 8px;
  color: rgba(var(--textdark-rgb), 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.16s ease, color 0.16s ease;
}

.category-pill-dropdown-section .category-pill-dropdown-link:not(:last-child) {
  border-bottom: 1px solid rgba(var(--bordersoft-rgb), 0.5);
}

.category-pill-dropdown-section:not(:first-child) .category-pill-dropdown-link::after {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-left: auto;
  border-top: 1.5px solid rgba(var(--textdark-rgb), 0.46);
  border-right: 1.5px solid rgba(var(--textdark-rgb), 0.46);
  transform: rotate(45deg);
}

.category-pill-dropdown-link:hover,
.category-pill-dropdown-link:focus-visible {
  background: rgba(var(--bgsoft-rgb), 0.52);
  color: var(--deep-teal);
}

.category-pill-free-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 46, 64, 0.24);
  background: rgba(201, 46, 64, 0.09);
  color: #bf2335;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.category-pill-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 0.38rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--secondary-rgb), 0.22);
  background: rgba(var(--secondary-rgb), 0.1);
  color: var(--deep-teal);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.category-pill-dropdown-actions .category-pill-dropdown-link {
  min-height: 34px;
  padding: 0 0.64rem;
  border-radius: 999px;
}

.category-pill-dropdown-actions .category-pill-dropdown-link:first-child {
  gap: 0.34rem;
  padding: 0 0.76rem;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 8px 16px rgba(var(--textdark-rgb), 0.06);
}

.category-pill-dropdown-actions .category-pill-dropdown-link:first-child:hover,
.category-pill-dropdown-actions .category-pill-dropdown-link:first-child:focus-visible {
  background: linear-gradient(135deg, var(--deep-teal-strong), var(--deep-teal));
  color: #ffffff;
}

.category-pill-dropdown-actions .category-pill-dropdown-link:first-child svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-pill-dropdown-actions .category-pill-dropdown-link:last-child {
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  gap: 0.38rem;
  padding: 0 0.82rem;
  font-size: 0.78rem;
  box-shadow: 0 9px 18px rgba(var(--textdark-rgb), 0.1);
}

.category-pill-dropdown-actions .category-pill-dropdown-link:last-child svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-pill-dropdown-actions .category-pill-dropdown-link:last-child:hover,
.category-pill-dropdown-actions .category-pill-dropdown-link:last-child:focus-visible {
  background: linear-gradient(135deg, var(--deep-teal-strong), var(--deep-teal));
  color: #ffffff;
}

.quick-nav {
  gap: 0.46rem;
  padding: 0.14rem 0 0.18rem;
}

.quick-nav p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(var(--textdark-rgb), 0.7);
  font-size: 0.79rem;
  font-weight: 800;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.86);
  border-radius: 999px;
  background: rgba(var(--bgsoft-rgb), 0.76);
  color: var(--deep-teal);
  font-size: 0.79rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.quick-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--secondary-rgb), 0.82);
  background: rgba(var(--bgsoft-rgb), 0.92);
  box-shadow: 0 8px 16px rgba(var(--textdark-rgb), 0.05);
}

.quick-pill--featured {
  color: var(--deep-teal);
  border-color: rgba(var(--secondary-rgb), 0.6);
  background: rgba(var(--primary-rgb), 0.14);
}

.compact-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(var(--bordersoft-rgb), 0.82);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  transition: transform 0.26s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

body.compact-header-active .compact-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 14px 30px rgba(var(--textdark-rgb), 0.1);
}

.compact-header-inner {
  min-height: var(--sticky-header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.62rem;
}

.compact-brand {
  display: inline-flex;
  align-items: center;
}

.compact-brand-logo {
  display: block;
  width: 102px;
  height: auto;
}

.compact-search {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0.16rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(var(--textdark-rgb), 0.06);
}

.compact-search input {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 0.66rem 0.82rem;
  font-size: 0.86rem;
}

.compact-search button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.38rem;
  min-height: 38px;
  padding: 0 0.85rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.compact-account,
.compact-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 40px;
  padding: 0 0.76rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
  border-radius: 999px;
  background: rgba(var(--bgsoft-rgb), 0.6);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.compact-header .compact-account,
.compact-header .compact-cart {
  display: none !important;
}

.compact-cart {
  display: none;
}

.compact-account {
  text-decoration: none;
}

.compact-account:hover,
.compact-account:focus-visible,
.compact-cart:hover,
.compact-cart:focus-visible {
  border-color: rgba(var(--secondary-rgb), 0.82);
  background: rgba(var(--bgsoft-rgb), 0.88);
  color: var(--deep-teal);
  outline: none;
}

.compact-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--text-dark);
  font-size: 0.71rem;
  font-weight: 800;
}

.compact-header-sentinel {
  height: 1px;
}

.compact-header .compact-brand {
  grid-column: 1;
  grid-row: 1;
}

.compact-header .compact-search {
  grid-column: 2;
  grid-row: 1;
  max-width: 100%;
  min-width: 0;
}

.compact-header .header-phone-dropdown--compact {
  display: inline-flex;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

main {
  padding-bottom: 2.5rem;
}

.home-showcase.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 326px;
  gap: 0.85rem;
  align-items: start;
  margin-top: 0.72rem;
}

.home-main-stack {
  display: grid;
  gap: 0.72rem;
  min-width: 0;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  min-height: 404px;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.72);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      90deg,
      rgba(245, 250, 250, 0.98) 0%,
      rgba(245, 250, 250, 0.97) 31%,
      rgba(245, 250, 250, 0.8) 45%,
      rgba(245, 250, 250, 0.42) 57%,
      rgba(245, 250, 250, 0.12) 64%,
      rgba(245, 250, 250, 0) 70%
    ),
    url("./assets/images/hero-products.webp") no-repeat right -4.9rem bottom -0.18rem / auto 98%,
    linear-gradient(145deg, rgba(var(--bgsoft-rgb), 0.58), #ffffff 52%, rgba(var(--bgsoft-rgb), 0.32));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.22), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(var(--primary-rgb), 0.07), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 0.65rem;
  width: 35%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(var(--textdark-rgb), 0.11), rgba(var(--textdark-rgb), 0) 72%);
  filter: blur(18px);
  opacity: 0.36;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 1.12rem 1.9rem 1.68rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0.46rem 0 0.34rem;
  color: #163a3e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.48rem, 3.05vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero-heading-line {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  margin: 0;
  max-width: 23.25rem;
  color: rgba(var(--textdark-rgb), 0.96);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-mobile-visual {
  display: none;
}

.hero-mobile-scene {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 31.75rem);
  gap: 0.36rem;
  margin-top: 0.74rem;
}

.hero-trust-card {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.34rem;
  min-height: 52px;
  padding: 0.56rem 0.58rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-trust-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--secondary-rgb), 0.88);
  box-shadow: 0 12px 24px rgba(var(--textdark-rgb), 0.08);
}

.hero-trust-card svg {
  color: var(--deep-teal);
  width: 17px;
  height: 17px;
}

.hero-trust-card img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-trust-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.hero-trust-copy strong {
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.18;
}

.hero-trust-copy small {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  min-width: 0;
  gap: 0.16rem;
  color: rgba(var(--textdark-rgb), 0.78);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.18;
}

.hero-trust-copy small.hero-trust-subtitle--single-line {
  display: inline-flex;
  flex-wrap: nowrap;
  max-width: 100%;
  white-space: nowrap;
}

.hero-trust-card:first-child {
  gap: 0.18rem;
}

.hero-trust-card:first-child .hero-trust-copy small.hero-trust-subtitle--single-line {
  display: block;
  white-space: normal;
}

.hero-trust-subtitle-lock {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.22rem;
  white-space: nowrap;
}

.free-text {
  color: #bf2335;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0.24rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(var(--textdark-rgb), 0.08);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 0.8rem 0.92rem;
  font-size: 0.92rem;
}

.hero-search button {
  min-height: 42px;
  padding: 0 1.05rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.86rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.18rem;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(var(--textdark-rgb), 0.14);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: var(--text-dark);
  font-weight: 800;
}

.hero-cta-label--mobile,
.hero-link-label--mobile {
  display: none;
}

.hero-link svg,
.section-head a svg,
.category-arrow svg {
  width: 16px;
  height: 16px;
}

.hero-link:hover {
  color: var(--deep-teal);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  border-left: none;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

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

.hero-visual::after {
  content: none;
}

.hero-image-shell {
  display: none;
}

.hero-scene {
  display: none;
}

.hero-panel.hero-carousel {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(var(--bgsoft-rgb), 0.44), rgba(255, 255, 255, 0.96) 46%, rgba(var(--bgsoft-rgb), 0.22));
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-panel.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(var(--textdark-rgb), 0.02), rgba(var(--textdark-rgb), 0) 24%);
  pointer-events: none;
  z-index: 0;
}

.hero-panel.hero-carousel::after {
  content: none;
}

.hero-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(145deg, rgba(var(--bgsoft-rgb), 0.42), rgba(255, 255, 255, 0.98));
  transition: opacity 900ms ease-in-out;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 5600ms ease-out;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-carousel__slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel__slide.is-active img {
  transform: scale(1.015);
}

@media (min-width: 769px) {
  .hero-carousel__slide img {
    object-position: left center;
    transform-origin: left center;
  }

  .hero-carousel__slide.is-active img {
    transform: scale(1.008);
  }
}

.hero-carousel__controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.hero-carousel__arrow {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-dark);
  box-shadow: 0 14px 32px rgba(var(--textdark-rgb), 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-carousel__arrow svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero-carousel:hover .hero-carousel__arrow,
.hero-carousel.hero-carousel--keyboard-focus .hero-carousel__arrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(var(--textdark-rgb), 0.16);
  outline: none;
}

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 58, 62, 0.16);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero-carousel__dot {
  width: 0.68rem;
  height: 0.68rem;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hero-carousel__dot.is-active {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
  transform: scale(1.02);
}

.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  outline: none;
}

.hero-carousel__status {
  z-index: -1;
}

.hero-carousel-disclaimer-shell {
  margin-top: -2.65rem;
}

.hero-carousel-disclaimer-shell + .service-section {
  margin-top: 0.96rem;
}

.hero-carousel-disclaimer {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.58rem;
  padding: 0.58rem 0.78rem;
  max-width: min(100%, 62rem);
  border: 1px solid rgba(176, 86, 96, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 245, 246, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 20px rgba(78, 38, 42, 0.05);
}

.hero-carousel-disclaimer__accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.12rem;
  height: 1.12rem;
  margin-top: 0.02rem;
  border-radius: 999px;
  background: rgba(193, 46, 64, 0.12);
  color: #c12e40;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.hero-carousel-disclaimer__text {
  margin: 0;
  color: rgba(var(--textdark-rgb), 0.8);
  font-size: 0.76rem;
  line-height: 1.38;
}

.hero-carousel-disclaimer.hero-carousel-disclaimer--mobile {
  display: none;
}

.hero-carousel-disclaimer-shell[hidden],
.home-showcase.hero .hero-carousel-disclaimer.hero-carousel-disclaimer--mobile[hidden] {
  display: none !important;
}

.mobile-prescriptions-chooser {
  display: none;
}

@media (max-width: 768px) {
  .hero-panel.hero-carousel {
    border-radius: 28px;
  }

  .hero-carousel-disclaimer-shell {
    display: none;
  }

  .hero-carousel-disclaimer-shell {
    margin-top: 0.6rem;
  }

  .hero-carousel-disclaimer-shell + .service-section {
    margin-top: 0.86rem;
  }

  .hero-carousel-disclaimer {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: none;
    padding: 0.54rem 0.68rem;
    border-radius: 18px;
  }

  .hero-carousel-disclaimer__text {
    font-size: 0.72rem;
    line-height: 1.34;
  }

  .hero-carousel-disclaimer.hero-carousel-disclaimer--mobile {
    display: flex;
    margin-top: -0.28rem;
  }

  .mobile-service-payment-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    gap: 0.68rem;
    min-height: 60px;
    margin: 0.12rem 0 0.22rem;
    padding: 0.72rem 0.86rem;
    border: 1px solid rgba(var(--secondary-rgb), 0.22);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(249, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.72));
    box-shadow: 0 12px 24px rgba(var(--textdark-rgb), 0.055);
    text-decoration: none;
    color: inherit;
  }

  .mobile-service-payment-banner__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow:
      inset 0 0 0 1px rgba(var(--secondary-rgb), 0.14),
      0 8px 16px rgba(var(--textdark-rgb), 0.04);
  }

  .mobile-service-payment-banner__icon img {
    display: block;
    width: 1.95rem;
    height: 1.95rem;
    object-fit: contain;
  }

  .mobile-service-payment-banner__copy {
    display: grid;
    grid-column: 2;
    gap: 0.14rem;
    min-width: 0;
  }

  .mobile-service-payment-banner__copy strong {
    color: var(--deep-teal);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.94rem;
    line-height: 1.18;
  }

  .mobile-service-payment-banner__copy small {
    color: rgba(var(--textdark-rgb), 0.72);
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .mobile-service-payment-banner__arrow {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0;
    color: var(--deep-teal);
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
  }

  .mobile-service-payment-banner__arrow svg {
    width: 1.08rem;
    height: 1.08rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-prescriptions-chooser {
    display: grid;
    gap: 0.82rem;
    margin: 0;
    padding: 1rem 0.96rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(86, 165, 156, 0.24);
    border-radius: 24px;
    background:
      radial-gradient(circle at 92% 12%, rgba(142, 229, 220, 0.42), transparent 34%),
      radial-gradient(circle at 12% 100%, rgba(102, 194, 180, 0.26), transparent 42%),
      linear-gradient(145deg, rgba(213, 242, 238, 0.98) 0%, rgba(228, 248, 245, 0.98) 38%, rgba(244, 254, 252, 0.99) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.62),
      inset 0 -16px 24px rgba(117, 203, 192, 0.06),
      0 18px 36px rgba(31, 76, 72, 0.08),
      0 4px 14px rgba(31, 76, 72, 0.05);
  }

  .mobile-prescriptions-chooser::before,
  .mobile-prescriptions-chooser::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
  }

  .mobile-prescriptions-chooser::before {
    left: -0.35rem;
    bottom: -1.05rem;
    width: 9.6rem;
    height: 10.9rem;
    border-radius: 1.9rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    clip-path: polygon(0 0, 74% 0, 100% 20%, 100% 100%, 0 100%);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 16%, rgba(255, 255, 255, 0.05) 16% 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.07));
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 -1.1rem 0 rgba(170, 229, 220, 0.09);
    opacity: 0.8;
    transform: rotate(-11deg);
  }

  .mobile-prescriptions-chooser::after {
    top: -2.25rem;
    right: -1.8rem;
    width: 8.8rem;
    height: 8.8rem;
    border-radius: 999px;
    background:
      radial-gradient(circle at 34% 34%, rgba(178, 245, 237, 0.54), rgba(178, 245, 237, 0.18) 38%, rgba(178, 245, 237, 0) 72%),
      radial-gradient(circle at 62% 62%, rgba(92, 197, 185, 0.18), rgba(92, 197, 185, 0) 60%);
    opacity: 0.9;
  }

  .mobile-prescriptions-chooser__head {
    display: grid;
    gap: 0.18rem;
    position: relative;
    z-index: 1;
  }

  .mobile-prescriptions-chooser__title {
    margin: 0;
    color: var(--deep-teal);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.16;
  }

  .mobile-prescriptions-chooser__intro {
    margin: 0;
    color: rgba(var(--textdark-rgb), 0.72);
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .mobile-prescriptions-chooser__options {
    display: grid;
    gap: 0.56rem;
    position: relative;
    z-index: 1;
  }

  .mobile-prescriptions-chooser__option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
    padding: 0.74rem 0.8rem;
    border: 1px solid rgba(var(--secondary-rgb), 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 22px rgba(var(--textdark-rgb), 0.045);
    text-decoration: none;
  }

  .mobile-prescriptions-chooser__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    color: var(--deep-teal);
    background: rgba(var(--secondary-rgb), 0.1);
    box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.12);
    flex-shrink: 0;
  }

  .mobile-prescriptions-chooser__icon svg {
    width: 1.12rem;
    height: 1.12rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-prescriptions-chooser__copy {
    display: grid;
    gap: 0.14rem;
    min-width: 0;
  }

  .mobile-prescriptions-chooser__copy strong {
    color: var(--deep-teal);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .mobile-prescriptions-chooser__copy small {
    color: rgba(var(--textdark-rgb), 0.72);
    font-size: 0.72rem;
    line-height: 1.36;
  }

  .mobile-prescriptions-chooser__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.42rem;
    height: 1.42rem;
    color: rgba(var(--deep-teal-rgb), 0.72);
    flex-shrink: 0;
  }

  .mobile-prescriptions-chooser__arrow svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hero-side .side-card--service-payment {
    display: none;
  }

  .hero-carousel__controls {
    display: none;
    padding: 0 0.72rem;
  }

  .hero-carousel__arrow {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero-carousel__dots {
    bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-panel.hero-carousel {
    border-radius: 26px;
  }

  .hero-carousel-disclaimer-shell {
    margin-top: -1rem;
  }

  .hero-carousel-disclaimer {
    gap: 0.46rem;
    padding: 0.5rem 0.62rem;
    border-radius: 16px;
  }

  .hero-carousel-disclaimer__accent {
    width: 1.02rem;
    height: 1.02rem;
    font-size: 0.7rem;
  }

  .hero-carousel-disclaimer__text {
    font-size: 0.69rem;
    line-height: 1.32;
  }

  .hero-carousel-disclaimer.hero-carousel-disclaimer--mobile {
    margin-top: -0.2rem;
  }

  .hero-carousel__controls {
    padding: 0 0.56rem;
  }

  .hero-carousel__arrow {
    width: 2.46rem;
    height: 2.46rem;
  }

  .hero-carousel__dots {
    bottom: 0.64rem;
    gap: 0.36rem;
    padding: 0.32rem 0.44rem;
  }

  .hero-carousel__dot {
    width: 0.56rem;
    height: 0.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide {
    transition-duration: 320ms;
  }

  .hero-carousel__slide img {
    transform: none;
    transition: none;
  }

  .hero-carousel__slide.is-active img {
    transform: none;
  }
}

.hero-side {
  display: grid;
  gap: 0.68rem;
}

.side-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.72rem;
  align-items: start;
  padding: 0.86rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.side-card:not(.side-card-primary) {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.68rem;
}

.side-card:hover,
.category-card:hover,
.product-card:hover,
.service-card:hover,
.trust-pill:hover,
.trust-card:hover,
.why-grid article:hover {
  transform: translateY(-2px);
}

.side-card:hover {
  border-color: rgba(var(--secondary-rgb), 0.85);
  box-shadow: 0 18px 30px rgba(var(--textdark-rgb), 0.1);
}

.side-card-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 1.06rem 1.08rem;
  background-color: var(--deep-teal);
  background-image:
    linear-gradient(180deg, rgba(7, 53, 59, 0.08), rgba(7, 53, 59, 0.18)),
    url("./assets/images/right-support-card-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 20px 34px rgba(var(--textdark-rgb), 0.18);
}

.side-card-primary::before {
  content: none;
}

.side-card-primary::after {
  content: none;
}

.side-card-primary > * {
  position: relative;
  z-index: 1;
}

.side-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(var(--bgsoft-rgb), 0.88);
  color: var(--deep-teal);
}

.side-card:not(.side-card-primary) .side-card-icon {
  width: 54px;
  height: 54px;
}

.side-card-primary .side-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  overflow: visible;
  background: transparent;
  border: none;
  color: #ffffff;
  box-shadow: none;
  transform: translateX(-10px);
}

.side-card-icon svg {
  width: 19px;
  height: 19px;
}

.side-card-icon img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.side-card:not(.side-card-primary) .side-card-icon img {
  width: 54px;
  height: 54px;
}

.side-card-primary .side-card-icon img {
  width: 62px;
  height: 62px;
  border-radius: 999px;
}

.side-card-copy {
  min-width: 0;
}

.side-card-kicker {
  margin: 0 0 0.32rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: inherit;
}

.side-card h3 {
  margin: 0 0 0.24rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.side-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.side-card-primary h3 {
  margin-bottom: 0.38rem;
  font-size: 1.1rem;
  line-height: 1.18;
}

.side-card-primary .side-card-kicker {
  margin-bottom: 0.38rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.side-card-primary p {
  color: rgba(255, 255, 255, 0.82);
}

.side-card-primary .side-card-copy > p:last-child {
  max-width: 24ch;
  line-height: 1.55;
}

.side-card--service-payment {
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  background: linear-gradient(180deg, rgba(251, 255, 255, 0.995), rgba(var(--bgsoft-rgb), 0.72));
  border-color: rgba(var(--secondary-rgb), 0.34);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.side-card--service-payment .side-card-copy {
  padding-right: 0.18rem;
}

.side-card--service-payment:hover,
.side-card--service-payment:focus-visible {
  border-color: rgba(var(--secondary-rgb), 0.52);
  background: linear-gradient(180deg, rgba(252, 255, 255, 1), rgba(var(--bgsoft-rgb), 0.86));
  box-shadow: 0 18px 30px rgba(var(--textdark-rgb), 0.09);
  outline: none;
}

@media (min-width: 769px) {
  .mobile-service-payment-banner {
    display: none;
  }
}

.side-card-cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: max-content;
  min-height: 40px;
  padding: 0 1rem;
  margin-top: 0.2rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--deep-teal);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.side-card-primary .side-card-cta {
  margin-top: 0.4rem;
  box-shadow: 0 14px 28px rgba(var(--textdark-rgb), 0.14);
}

.section {
  margin-top: 1.72rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.74rem;
}

.section-head h2 {
  margin: 0;
  color: #163a3e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.34rem;
  letter-spacing: -0.02em;
}

.section-head a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--deep-teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.section-head a:hover {
  color: var(--text-dark);
}

.section-head--compact {
  margin-bottom: 0.62rem;
}

.section-head--compact h2 {
  font-size: 1.04rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 0.3rem;
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-intro {
  margin: -0.1rem 0 0.82rem;
  max-width: 50rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.category-section {
  margin-top: 0;
}

.category-section--compact {
  padding: 0.94rem 0.98rem 1rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.74);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--bgsoft-rgb), 0.58));
  box-shadow: var(--shadow-soft);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.66rem;
}

.category-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.58rem;
  align-content: start;
  min-height: 194px;
  padding: 0.76rem 0.68rem 0.48rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.32));
  box-shadow: 0 12px 24px rgba(var(--textdark-rgb), 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-media {
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 124px);
  aspect-ratio: 1 / 1;
  padding: 0.12rem;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(var(--bgsoft-rgb), 0.74));
  box-shadow:
    inset 0 0 0 1px rgba(var(--bordersoft-rgb), 0.34),
    0 14px 26px rgba(var(--textdark-rgb), 0.07);
}

.category-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

.category-copy {
  display: grid;
  width: 100%;
  justify-items: center;
  row-gap: 0.34rem;
  align-content: start;
  min-width: 0;
  text-align: center;
}

.category-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
  max-width: 9.5ch;
}

.category-arrow {
  display: grid;
  justify-self: center;
  place-items: center;
  color: var(--deep-teal);
  transition: transform 0.2s ease;
}

.category-card:hover {
  border-color: rgba(var(--secondary-rgb), 0.9);
  box-shadow: var(--shadow-card-hover);
}

.category-card:hover .category-arrow {
  transform: translateX(2px);
}

.category-grid-desktop-preview {
  display: none;
}

.category-desktop-preview-card {
  display: none;
}

.products-section {
  margin-top: 0.24rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.88rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.98rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.8);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.2));
  box-shadow: 0 14px 28px rgba(var(--textdark-rgb), 0.055);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--secondary-rgb), 0.8), rgba(var(--secondary-rgb), 0.15));
}

.product-card:hover {
  border-color: rgba(var(--secondary-rgb), 0.9);
  box-shadow: 0 22px 38px rgba(var(--textdark-rgb), 0.1);
}

.product-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
  margin-bottom: 0.62rem;
}

.badge,
.stock-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 0.62rem;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.badge {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.18), rgba(var(--bgsoft-rgb), 0.88));
  color: var(--text-dark);
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(var(--bordersoft-rgb), 0.65);
}

.stock-tag {
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.16), rgba(var(--bgsoft-rgb), 0.9));
  color: var(--deep-teal);
  box-shadow: inset 0 0 0 1px rgba(var(--bordersoft-rgb), 0.62);
}

.product-image {
  position: relative;
  height: 156px;
  display: grid;
  place-items: center;
  margin-bottom: 0.82rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.76);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--bgsoft-rgb), 0.68));
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.product-image::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -38px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.16), rgba(var(--secondary-rgb), 0));
}

.product-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.product-photo-vitamin {
  object-position: 56% 54%;
}

.product-photo-omega {
  object-position: 68% 56%;
}

.product-photo-hayfever {
  object-position: 79% 54%;
}

.product-photo-jar {
  object-fit: contain;
  object-position: center;
  padding: 0.72rem;
}

.product-card h3 {
  margin: 0.04rem 0 0;
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.product-size,
.rating,
.product-note {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.rating::before {
  content: "★";
  color: #d7a342;
  font-size: 0.82rem;
  line-height: 1;
}

.dispatch {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  width: fit-content;
  margin: 0.38rem 0 0;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(var(--bgsoft-rgb), 0.9);
  box-shadow: inset 0 0 0 1px rgba(var(--bordersoft-rgb), 0.62);
  color: var(--deep-teal);
  font-size: 0.78rem;
  font-weight: 800;
}

.dispatch::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.92);
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.12);
}

.product-note {
  margin-top: 0.44rem;
  line-height: 1.45;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
  margin-top: auto;
  padding-top: 0.92rem;
  border-top: 1px solid rgba(var(--bordersoft-rgb), 0.56);
}

.price {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.08rem;
  font-weight: 800;
}

.price span {
  margin-left: 0.3rem;
  color: rgba(var(--textdark-rgb), 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: line-through;
}

.product-meta button {
  min-height: 40px;
  padding: 0 1rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  box-shadow: 0 10px 18px rgba(var(--secondary-rgb), 0.22);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-meta button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(var(--secondary-rgb), 0.28);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 1.05rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.54rem;
  min-height: 52px;
  padding: 0.68rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 16px;
  background: rgba(var(--bgsoft-rgb), 0.75);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-pill > span:first-child {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.82);
}

.trust-pill > span:first-child::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  left: 8px;
  top: 9px;
  border-left: 3px solid var(--deep-teal);
  border-bottom: 3px solid var(--deep-teal);
  transform: rotate(-45deg);
}

.trust-pill > span:last-child {
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-section {
  margin-top: 1.95rem;
}

.service-shell {
  position: relative;
  padding: 1.28rem 1.28rem 0.2rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.82);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(250, 252, 252, 0.98), rgba(var(--bgsoft-rgb), 0.46));
  box-shadow: 0 26px 52px rgba(var(--textdark-rgb), 0.08);
  overflow: hidden;
}

.service-shell::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -10%;
  width: 36%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.16), rgba(var(--secondary-rgb), 0) 72%);
  pointer-events: none;
}

.service-shell > * {
  position: relative;
  z-index: 1;
}

.service-head {
  margin-bottom: 0.4rem;
  align-items: flex-end;
}

.service-kicker {
  margin-bottom: 0.38rem;
}

.service-head h2 {
  font-size: 1.5rem;
}

.service-shell > .section-intro,
.service-intro {
  margin: -0.06rem 0 1.18rem;
  max-width: 38rem;
  font-size: 0.91rem;
  line-height: 1.55;
  color: rgba(var(--textdark-rgb), 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 232px;
  padding: 0;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.72);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--bgsoft-rgb), 0.34));
  box-shadow: 0 18px 34px rgba(var(--textdark-rgb), 0.08);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.2s ease;
}

.service-card::before,
.service-card::after {
  display: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(var(--secondary-rgb), 0.9);
  box-shadow: 0 24px 38px rgba(var(--textdark-rgb), 0.12);
  transform: translateY(-2px);
}

.service-card--featured {
  display: block;
  min-height: 272px;
  background: linear-gradient(135deg, #147179, #0b5259);
  border-color: rgba(var(--secondary-rgb), 0.26);
  isolation: isolate;
}

.service-card__visual {
  position: relative;
  flex: 0 0 40%;
  width: 40%;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center right;
  transform-origin: center;
}

.service-card__visual::before,
.service-card__visual::after {
  display: none;
}

.service-card--featured .service-card__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  flex: none;
  background: transparent;
  border-radius: inherit;
  overflow: hidden;
}

.service-card__content {
  flex: 1 1 60%;
  width: 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  min-width: 0;
  padding: 1.28rem 1.18rem 1.18rem 1.28rem;
}

.service-card--featured .service-card__content {
  position: relative;
  z-index: 2;
  width: min(48%, 16rem);
  max-width: 48%;
  min-height: 100%;
  padding: 1.42rem 1.12rem 1.12rem 1.42rem;
}

.service-card--featured .service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.03);
  transform-origin: 78% center;
  filter: brightness(1.12) saturate(1.04);
  border-radius: inherit;
}

.service-card--featured .service-card__visual::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(6, 72, 78, 0.68) 0%, rgba(6, 72, 78, 0.58) 36%, rgba(6, 72, 78, 0.14) 68%, rgba(6, 72, 78, 0.01) 100%);
  z-index: 1;
}

.service-card--featured .service-card__visual::after {
  display: none;
}

.service-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 34px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(95, 143, 150, 0.28);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.service-card__badge::before {
  content: "★";
  color: #ffffff;
  font-size: 0.76rem;
  line-height: 1;
}

.service-card__badge {
  gap: 0.32rem;
  min-height: 24px;
  padding: 0 0.5rem;
  margin-top: 0;
  margin-left: 0;
  border-radius: 9999px;
  border: 1px solid rgba(0, 121, 116, 0.14);
  background: rgba(236, 252, 250, 0.95);
  color: #08736f;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.service-card__badge::before {
  content: "";
  display: inline-block;
  width: 0.97rem;
  height: 0.97rem;
  flex: 0 0 0.97rem;
  background: #08736f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.15l2.68 5.42 5.99.87-4.34 4.23 1.02 5.96L12 16.81 6.65 19.63l1.02-5.96-4.34-4.23 5.99-.87L12 3.15Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.15l2.68 5.42 5.99.87-4.34 4.23 1.02 5.96L12 16.81 6.65 19.63l1.02-5.96-4.34-4.23 5.99-.87L12 3.15Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.service-card--featured .service-card__badge {
  margin-bottom: 1.35rem;
}

.service-card__copy {
  margin-top: 0;
  min-width: 0;
}

.service-card--featured .service-card__copy h3 {
  color: #ffffff;
}

.service-card--featured .service-card__copy p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card--featured .service-card__cta {
  background: rgba(255, 255, 255, 0.98);
  color: var(--deep-teal);
  box-shadow: 0 14px 24px rgba(7, 49, 55, 0.2);
  white-space: nowrap;
  min-width: max-content;
  padding: 0 1rem;
}

.service-card--nhs .service-card__image {
  object-position: 80% center;
}

.service-card--smoking .service-card__image {
  object-position: 78% center;
}

.service-card--weight .service-card__image {
  object-position: 76% center;
}

.service-card--standard {
  min-height: 232px;
}

.service-card--standard {
  flex-direction: row;
  justify-content: flex-start;
  isolation: isolate;
}

.service-card--standard .service-card__content {
  position: relative;
  z-index: 1;
  flex-basis: 54%;
  width: 54%;
  max-width: 54%;
  padding: 1.2rem 1.12rem 1.08rem 1.22rem;
}

.service-card--standard .service-card__visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  flex: none;
  width: 48%;
  min-height: 100%;
  background: transparent;
  border-radius: inherit;
  pointer-events: none;
}

.service-card--standard .service-card__image {
  object-fit: cover;
  object-position: right center;
  padding: 0;
  opacity: 1;
  filter: none;
  transform: translateX(0.9rem);
  transform-origin: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.94) 6%, #000 12%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.94) 6%, #000 12%, #000 100%);
}

.service-card--repeat .service-card__image {
  object-position: 100% 64%;
}

.service-card--umbrella .service-card__image {
  object-position: 100% 58%;
}

.service-card--consultation .service-card__image {
  object-position: 98% 56%;
}

.service-card__icon-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(var(--secondary-rgb), 0.22);
  background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.98), rgba(255, 255, 255, 0.92));
  box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.06);
}

.service-card__icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep-teal);
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.14rem;
  line-height: 1.26;
  letter-spacing: -0.015em;
}

.service-card p {
  margin: 0.44rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.service-card--standard .service-card__copy {
  margin-top: 0.76rem;
  max-width: none;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 38px;
  padding: 0 0.92rem;
  margin-top: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 12px 20px rgba(var(--textdark-rgb), 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__cta:hover {
  transform: translateY(-1px);
}

.service-card--standard .service-card__cta {
  min-height: 36px;
  padding: 0 0.84rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.34), 0 10px 18px rgba(var(--textdark-rgb), 0.08);
  color: var(--deep-teal);
}

.service-card--spotlight {
  border-color: rgba(244, 185, 66, 0.74);
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.2), 0 20px 44px rgba(244, 185, 66, 0.18);
}

.service-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.1rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.76);
  border-radius: 24px;
  background: url("./assets/images/service-trust-strip/trust-strip-bg.webp") center / cover no-repeat;
  box-shadow: 0 16px 30px rgba(var(--textdark-rgb), 0.05);
  overflow: hidden;
}

.service-trust-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.88rem;
  padding: 0.92rem 1rem;
}

.service-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: rgba(var(--bordersoft-rgb), 0.72);
}

.service-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #08736f;
}

.service-trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-mobile-carousel {
  display: none;
}

.service-trust-item strong,
.service-trust-item small {
  display: block;
}

.service-trust-item strong {
  color: var(--text-dark);
  font-size: 0.82rem;
  line-height: 1.3;
}

.service-trust-item small {
  margin-top: 0.14rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.trust-wrap {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(var(--bordersoft-rgb), 0.72);
  border-bottom: 1px solid rgba(var(--bordersoft-rgb), 0.72);
  background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.74), rgba(var(--bgsoft-rgb), 0.28));
}

.trust-intro {
  margin-top: -0.25rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.88rem;
}

.trust-card {
  position: relative;
  padding: 1.02rem 1.02rem 1.02rem 2.55rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-card::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.1rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 6px rgba(var(--secondary-rgb), 0.16);
}

.trust-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.94rem;
}

.trust-card p {
  margin: 0.36rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.why-choose {
  margin-top: 1.95rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.88rem;
}

.why-grid article {
  padding: 0.98rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 18px;
  border-top: 3px solid rgba(var(--secondary-rgb), 0.42);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-grid h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.94rem;
}

.why-grid p {
  margin: 0.36rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 0.04rem;
  background: transparent;
  border-top: none;
}

.footer-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(var(--secondary-rgb), 0.22);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(251, 254, 253, 0.97) 50%, rgba(244, 251, 249, 0.985) 100%);
  box-shadow: 0 24px 50px rgba(var(--textdark-rgb), 0.05), 0 8px 22px rgba(var(--textdark-rgb), 0.024);
}

.footer-shell::before,
.footer-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
}

.footer-shell::before {
  background-image: url("./assets/footer/footer-wave-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.9;
}

.footer-shell::after {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0.12) 100%);
  opacity: 1;
}

.footer-top,
.footer-middle-strip,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1.78fr) minmax(264px, 0.8fr);
  align-items: start;
  gap: 1.46rem;
  padding: 2.18rem 1.92rem 1.22rem;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  max-width: 20.5rem;
}

.footer-brand {
  margin-bottom: 0.58rem;
}

.footer-brand .brand-logo {
  width: 148px;
}

.footer-top p {
  margin: 0;
  color: var(--muted);
}

.footer-top h4 {
  margin: 0 0 0.56rem;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.footer-nav-shell {
  justify-self: start;
  width: 100%;
  margin-left: -1rem;
  padding: 0.1rem 0.18rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.88rem;
}

.footer-nav-column {
  min-width: 0;
  padding: 0;
}

.footer-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  cursor: default;
  list-style: none;
}

.footer-nav-toggle::-webkit-details-marker {
  display: none;
}

.footer-nav-toggle span {
  margin: 0 0 0.56rem;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.12;
}

.footer-nav-toggle svg {
  display: none;
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-nav-links {
  padding-top: 0.02rem;
}

.footer-nav-links--leadership {
  display: grid;
  gap: 0.58rem;
  padding-top: 0.02rem;
}

.footer-leadership-person {
  display: grid;
  gap: 0.08rem;
}

.footer-leadership-person + .footer-leadership-person {
  padding-top: 0.52rem;
  border-top: 1px solid rgba(var(--bordersoft-rgb), 0.42);
}

.footer-leadership-person p {
  margin: 0;
  color: rgba(var(--textdark-rgb), 0.8);
  font-size: 0.8rem;
  line-height: 1.24;
}

.footer-leadership-name {
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.18;
}

.footer-leadership-role,
.footer-leadership-registration {
  font-weight: 600;
}

.footer-nav a {
  display: block;
  margin: 0.48rem 0;
  color: rgba(var(--textdark-rgb), 0.82);
  font-weight: 600;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--deep-teal);
}

@media (min-width: 981px) {
  .footer-nav-shell {
    margin-left: 0;
    max-width: 36rem;
    padding-left: 0;
  }

  .footer-nav {
    grid-template-columns: minmax(7.9rem, 0.95fr) minmax(7.9rem, 0.95fr) minmax(12.8rem, 1.32fr);
    gap: 1.05rem;
  }

  .footer-nav-column--shop {
    display: none;
  }

  .footer-nav-links--leadership {
    gap: 0.5rem;
  }

  .footer-leadership-person + .footer-leadership-person {
    padding-top: 0.42rem;
  }

  .footer-leadership-role {
    white-space: nowrap;
  }

  .footer-nav a.footer-link--desktop-hide {
    display: none;
  }
}

@media (min-width: 1121px) {
  .category-section--compact .section-head {
    justify-content: flex-start;
  }

  .category-section--compact .section-head a {
    display: none;
  }

  .category-section--compact > .category-grid {
    display: none;
  }

  .category-grid-desktop-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.94rem;
  }

  .category-desktop-preview-card {
    position: relative;
    display: block;
    min-height: 0;
    padding: 0;
    border: none;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    background: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0 16px 34px rgba(var(--textdark-rgb), 0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .category-desktop-preview-card--mens {
    aspect-ratio: 1402 / 1122;
    background-image: url("./assets/images/shop-category-redesign/desktop/mens-health.webp");
  }

  .category-desktop-preview-card--womens {
    aspect-ratio: 1402 / 1122;
    background-image: url("./assets/images/shop-category-redesign/desktop/womens-health.webp");
  }

  .category-desktop-preview-card--over-the-counter {
    aspect-ratio: 1402 / 1122;
    background-image: url("./assets/images/shop-category-redesign/desktop/over-the-counter-purchases.webp");
  }

  .category-desktop-preview-card__image {
    display: none;
  }

  .category-desktop-preview-card__label {
    display: none;
  }

  .category-desktop-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(var(--textdark-rgb), 0.1);
  }
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  margin-top: 0.9rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.68rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.74);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 252, 251, 0.6));
  color: var(--text-dark);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.024), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.footer-help-card {
  align-self: stretch;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.76rem;
  width: 100%;
  max-width: 300px;
  min-height: 228px;
  padding: 1.34rem 1.18rem 0.86rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 251, 250, 0.9));
  box-shadow: 0 22px 40px rgba(var(--textdark-rgb), 0.06), 0 8px 18px rgba(var(--textdark-rgb), 0.03);
}

.footer-help-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-help-head h4 {
  margin: 0;
}

.footer-help-copy {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  min-width: 0;
  padding-top: 0.14rem;
}

.footer-help-icon {
  flex: 0 0 3.9rem;
  display: grid;
  place-items: center;
  width: 3.9rem;
  height: 3.9rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.24);
  border-radius: 999px;
  background: rgba(250, 255, 254, 0.72);
  color: #0e9b95;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.footer-help-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-help-card h4 {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.12;
}

.footer-help-card p {
  margin: 0;
  max-width: 16rem;
}

.footer-help-support {
  color: rgba(var(--textdark-rgb), 0.78);
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.45;
}

.footer-help-card .footer-help-hours {
  margin-top: 0.26rem;
  color: #1aa6a0;
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-help-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.52rem;
  min-height: 44px;
  width: auto;
  margin: 0.36rem 0 0;
  padding: 0 1.18rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 14px 24px rgba(var(--textdark-rgb), 0.12);
}

.footer-help-cta svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-help-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.footer-middle-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0.84rem 1.92rem 1.06rem;
  border-top: 1px solid rgba(var(--bordersoft-rgb), 0.64);
  border-bottom: 1px solid rgba(var(--bordersoft-rgb), 0.64);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(245, 251, 250, 0.08));
}

.footer-strip-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  padding: 0.12rem 1.16rem 0.12rem 0;
}

.footer-strip-feature:not(:last-child) {
  margin-right: 1.16rem;
}

.footer-strip-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 38px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0) 0%, rgba(var(--secondary-rgb), 0.28) 18%, rgba(var(--secondary-rgb), 0.28) 82%, rgba(var(--secondary-rgb), 0) 100%);
}

.footer-strip-icon {
  flex: 0 0 2.24rem;
  display: grid;
  place-items: center;
  width: 2.24rem;
  height: 2.24rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.15);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(241, 253, 251, 0.96), rgba(232, 249, 247, 0.9));
  color: #08736f;
  box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.024), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.footer-strip-icon svg {
  width: 1.16rem;
  height: 1.16rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  min-width: 0;
}

.footer-strip-copy strong {
  color: var(--text-dark);
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1.15;
}

.footer-strip-copy small {
  color: rgba(var(--textdark-rgb), 0.64);
  font-size: 0.71rem;
  font-weight: 600;
  line-height: 1.15;
}

.footer-strip-copy--registered small {
  color: #1aa6a0;
}

.footer-gphc-link {
  color: inherit;
  text-decoration: none;
}

.footer-gphc-link:visited,
.footer-gphc-link:hover,
.footer-gphc-link:focus-visible,
.footer-gphc-link:active {
  color: inherit;
}

.footer-gphc-link:hover,
.footer-gphc-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-review-line {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-weight: 500;
}

.footer-review-value {
  color: #108782;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  color: #0a857f;
}

.footer-review-star {
  width: 0.94rem;
  height: 0.94rem;
  flex: 0 0 0.94rem;
}

.footer-review-star-fill,
.footer-review-star-half-fill {
  fill: currentColor;
}

.footer-review-star-outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.36;
}

.footer-strip-feature--payments {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  justify-self: end;
  padding-right: 0;
  margin-right: 0;
  white-space: nowrap;
}

.footer-strip-pay-label {
  color: var(--text-dark);
  font-size: 0.79rem;
  font-weight: 800;
  line-height: 1;
}

.footer-payment-badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.46rem;
}

.footer-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  min-height: 2rem;
  padding: 0 0.78rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.16);
  border-radius: 0.86rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 252, 0.92));
  box-shadow: 0 8px 16px rgba(var(--textdark-rgb), 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: rgba(var(--textdark-rgb), 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.footer-payment-badge--visa {
  color: #1752df;
}

.footer-payment-badge--mastercard {
  color: #2c2423;
}

.footer-payment-badge--apple {
  color: #111111;
}

.footer-payment-badge--google {
  color: #2461c3;
}

.footer-payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-payment-logo--visa {
  font-size: 0.9rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.03em;
}

.footer-payment-logo--apple {
  width: 1.14rem;
  height: 1.14rem;
  fill: currentColor;
}

.footer-payment-logo--google {
  width: 0.88rem;
  height: 0.88rem;
}

.footer-payment-mark {
  position: relative;
  width: 1.16rem;
  height: 0.9rem;
  flex: 0 0 1.16rem;
}

.footer-payment-mark--mc::before,
.footer-payment-mark--mc::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 999px;
  transform: translateY(-50%);
}

.footer-payment-mark--mc::before {
  left: 0.03rem;
  background: #f26422;
}

.footer-payment-mark--mc::after {
  right: 0.03rem;
  background: #eb001b;
}

.footer-bottom {
  display: grid;
  gap: 0.86rem;
  padding: 1.08rem 1.92rem 1.2rem;
  color: var(--muted);
}

.footer-bottom-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.18fr) auto;
  align-items: center;
  gap: 1.1rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer-legal-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 0.92rem;
  color: rgba(var(--textdark-rgb), 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-legal-links a:first-child {
  padding-left: 0;
}

.footer-legal-links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 1.1rem;
  transform: translateY(-50%);
  background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0) 0%, rgba(var(--secondary-rgb), 0.24) 18%, rgba(var(--secondary-rgb), 0.24) 82%, rgba(var(--secondary-rgb), 0) 100%);
}

.footer-legal-links a:hover {
  color: var(--deep-teal);
}

.footer-legal-link--exact-location {
  display: none;
}

.footer-address {
  display: inline-flex;
  align-items: flex-start;
  justify-self: center;
  gap: 0.74rem;
  max-width: 31rem;
}

.footer-address-icon {
  flex: 0 0 1.32rem;
  width: 1.32rem;
  height: 1.32rem;
  color: #0f9a94;
}

.footer-address-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-address p {
  margin: 0;
  color: rgba(var(--textdark-rgb), 0.84);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.footer-copyright {
  justify-self: end;
  align-self: end;
  padding-top: 0.18rem;
}

.footer-copyright p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-company-details {
  margin: 0;
  justify-self: center;
  color: rgba(var(--textdark-rgb), 0.62);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.footer-company-details span {
  display: inline-block;
  margin: 0 0.42rem;
}

@media (min-width: 1121px) {
  .footer-bottom {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    grid-template-areas:
      ". address ."
      "links company copyright";
    align-items: center;
    column-gap: 1.42rem;
    row-gap: 0.42rem;
  }

  .footer-bottom-main {
    display: contents;
  }

  .footer-legal-links {
    grid-area: links;
    align-self: center;
  }

  .footer-legal-link--exact-location {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    align-self: end;
    grid-column: 1;
    grid-row: 1;
    width: fit-content;
    margin-left: 54%;
    margin-bottom: 0.02rem;
    padding: 0.1875rem 0.75rem;
    gap: 0.375rem;
    border: 1px solid rgba(var(--secondary-rgb), 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.92), rgba(255, 255, 255, 0.9));
    color: rgba(var(--textdark-rgb), 0.8);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    transform: translateX(-50%);
  }

  .footer-legal-link--exact-location svg {
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .footer-legal-link--exact-location:hover {
    color: var(--deep-teal);
    border-color: rgba(var(--secondary-rgb), 0.28);
  }

  .footer-address {
    grid-area: address;
    justify-self: center;
    align-self: center;
    max-width: none;
  }

  .footer-address p {
    white-space: nowrap;
  }

  .footer-company-details {
    grid-area: company;
    justify-self: center;
    align-self: center;
  }

  .footer-copyright {
    grid-area: copyright;
    justify-self: end;
    align-self: center;
    padding-top: 0;
  }
}

.service-detail-page {
  display: grid;
  gap: 1.14rem;
  padding: 0.82rem 0 0.24rem;
}

.service-detail-hero,
.service-detail-section {
  /* margin: 0 auto keeps these centered. They also carry the .container
     class (width: min(1360px, calc(100% - 1.8rem))); using plain
     "margin: 0" here would override .container's auto centering and pin
     the content to the left edge on wide screens. */
  margin: 0 auto;
}

.service-detail-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.8fr);
  gap: 0.92rem;
  align-items: start;
  padding: 0.96rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.8);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--primary-rgb), 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.62));
  box-shadow: var(--shadow-card);
}

.service-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.44rem;
  margin-bottom: 0.84rem;
  color: rgba(var(--textdark-rgb), 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.service-detail-breadcrumb a {
  color: var(--deep-teal);
}

.service-detail-hero-copy h1 {
  margin: 0.26rem 0 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.18rem, 3.25vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-detail-hero-copy p {
  margin: 0.68rem 0 0;
  max-width: 43rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-detail-free-asterisk {
  display: inline-block;
  margin-right: 0.02em;
  color: #c12e40;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88em;
  font-weight: 900;
  line-height: 1;
}

.service-detail-page--stop-smoking .stop-smoking-hero-disclaimer {
  box-sizing: border-box;
  display: flex;
  margin-top: 0.84rem;
  width: min(100%, 45rem);
}

.service-detail-page--stop-smoking .stop-smoking-hero-disclaimer .hero-carousel-disclaimer__text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.service-detail-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 0.84rem;
}

.service-detail-hero-process {
  display: grid;
  gap: 0.74rem;
  margin-top: 0.94rem;
  max-width: 45rem;
}

.service-detail-hero-process__intro {
  display: grid;
  gap: 0.2rem;
}

.service-detail-hero-process__intro h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-detail-hero-process__intro p {
  margin: 0;
  max-width: 41rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.56;
}

.service-detail-hero-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.service-detail-pill-row > span,
.service-detail-condition-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.72rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.26);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--bgsoft-rgb), 0.74));
  color: var(--deep-teal);
  font-size: 0.74rem;
  font-weight: 800;
}

.service-detail-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
  margin-top: 0.92rem;
}

.service-detail-action-note {
  margin: 0.36rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.service-detail-page--umbrella-services .service-detail-support-highlight {
  color: var(--deep-teal);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.56;
}

.service-detail-page--umbrella-services .service-detail-hero-process {
  max-width: none;
}

.service-detail-page--umbrella-services .umbrella-support-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(16rem, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 1.08rem;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: linear-gradient(145deg, rgba(11, 92, 98, 0.96), rgba(8, 74, 80, 0.97));
  box-shadow: 0 18px 36px rgba(4, 57, 62, 0.14);
}

.service-detail-page--umbrella-services .umbrella-support-banner::before,
.service-detail-page--umbrella-services .umbrella-support-banner::after {
  content: "";
  position: absolute;
  left: -1.2rem;
  bottom: -2.2rem;
  border-radius: 999px 999px 0 0;
  background: radial-gradient(circle at 70% 30%, rgba(123, 232, 218, 0.2), rgba(123, 232, 218, 0.05) 68%, rgba(123, 232, 218, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.service-detail-page--umbrella-services .umbrella-support-banner::before {
  width: 7.4rem;
  height: 7.4rem;
}

.service-detail-page--umbrella-services .umbrella-support-banner::after {
  left: 3.1rem;
  bottom: -3.15rem;
  width: 5.9rem;
  height: 5.9rem;
  opacity: 0.7;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.72rem;
  min-width: 0;
  padding: 1.12rem 1.18rem;
  position: relative;
  z-index: 1;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel--online {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.72rem;
  align-items: center;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel--phone {
  justify-items: center;
  text-align: center;
  border-left: 1px solid rgba(211, 255, 249, 0.16);
  padding-left: 0.86rem;
  padding-right: 1.34rem;
}

.service-detail-page--umbrella-services .umbrella-support-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
}

.service-detail-page--umbrella-services .umbrella-support-banner__icon svg {
  width: 1.68rem;
  height: 1.68rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel--online .umbrella-support-banner__icon {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel--online .umbrella-support-banner__copy {
  grid-column: 2;
  grid-row: 1;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel--online .service-detail-button {
  grid-column: 2;
  justify-self: start;
  margin-left: 0.18rem;
}

.service-detail-page--umbrella-services .umbrella-support-banner__copy {
  display: grid;
  gap: 0.34rem;
}

.service-detail-page--umbrella-services .umbrella-support-banner__copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-detail-page--umbrella-services .umbrella-support-banner__copy p {
  margin: 0;
  color: rgba(236, 255, 252, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.54;
}

.service-detail-page--umbrella-services .umbrella-support-banner__panel--online .umbrella-support-banner__copy p {
  max-width: 30ch;
}

.service-detail-page--umbrella-services .umbrella-support-banner__no-wrap {
  white-space: nowrap;
}

.service-detail-page--umbrella-services .umbrella-support-banner .service-detail-button {
  width: fit-content;
  min-height: 48px;
  padding: 0 1.2rem;
  gap: 0.54rem;
  border-width: 1px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 24px rgba(4, 57, 62, 0.14);
}

.service-detail-page--umbrella-services .umbrella-support-banner .service-detail-button span {
  white-space: nowrap;
}

.service-detail-page--umbrella-services .umbrella-support-banner .service-detail-button svg {
  width: 0.98rem;
  height: 0.98rem;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-page--umbrella-services .umbrella-support-banner .service-detail-button--secondary {
  border-color: rgba(255, 255, 255, 0.12);
  padding-left: 0.82rem;
  padding-right: 1.2rem;
  gap: 0.82rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 255, 252, 0.97));
  color: var(--deep-teal-strong);
}

.service-detail-page--umbrella-services .umbrella-support-banner .service-detail-button--primary {
  min-width: 16.1rem;
  padding-left: 1.08rem;
  padding-right: 1.08rem;
  gap: 0.6rem;
  font-size: 0.82rem;
  background: linear-gradient(135deg, rgba(14, 150, 144, 0.98), rgba(11, 123, 120, 0.98));
  border-color: rgba(160, 245, 234, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(2, 39, 43, 0.18);
}

.service-detail-page--umbrella-services .umbrella-reassurance-card {
  display: grid;
  align-content: start;
  gap: 0.82rem;
  padding: 0.98rem 1.02rem 1.04rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.66));
  box-shadow: 0 12px 24px rgba(var(--textdark-rgb), 0.06);
}

.service-detail-page--umbrella-services .umbrella-reassurance-card h2 {
  margin: 0;
  color: var(--deep-teal-strong);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.service-detail-page--umbrella-services .umbrella-reassurance-card .service-detail-checklist {
  gap: 0.5rem;
}

.service-detail-page--umbrella-services .umbrella-reassurance-card .service-detail-checklist li {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
}

.service-detail-page--umbrella-services .umbrella-reassurance-card .service-detail-checklist li::before {
  top: 0.42rem;
  width: 0.5rem;
  height: 0.5rem;
}

.service-detail-page--umbrella-services .service-detail-hero-card__media--contain {
  align-items: flex-end;
}

.service-detail-page--umbrella-services .service-detail-hero-card__media--contain img {
  width: auto;
  height: 124%;
  max-width: none;
  padding: 0;
  object-fit: contain;
  object-position: center 58%;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card {
  border: 1px solid rgba(var(--secondary-rgb), 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 16%, rgba(var(--secondary-rgb), 0.12), transparent 26%),
    linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.86), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 24px rgba(var(--textdark-rgb), 0.06);
  overflow: hidden;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__summary {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  padding: 0.96rem 0.98rem;
  cursor: pointer;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__summary::-webkit-details-marker {
  display: none;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__copy {
  display: grid;
  gap: 0.24rem;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__title {
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__text {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.52;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  justify-self: start;
  min-height: 38px;
  padding: 0 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--secondary-rgb), 0.22);
  background: rgba(255, 255, 255, 0.96);
  color: var(--deep-teal);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.06);
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__toggle svg {
  width: 0.84rem;
  height: 0.84rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card[open] .weight-loss-bmi-card__toggle svg {
  transform: rotate(180deg);
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__panel {
  display: grid;
  gap: 0.78rem;
  padding: 0 0.98rem 0.98rem;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__field {
  display: grid;
  gap: 0.34rem;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__field span {
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.24;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__field input {
  width: 100%;
  min-height: 42px;
  padding: 0 0.8rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  box-sizing: border-box;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__field input:focus-visible {
  outline: none;
  border-color: rgba(var(--secondary-rgb), 0.42);
  box-shadow: var(--focus-ring);
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__result {
  display: grid;
  gap: 0.18rem;
  padding: 0.82rem 0.88rem;
  border-radius: 18px;
  background: rgba(var(--primary-rgb), 0.08);
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__result-label {
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__result-value {
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.54rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.52;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__utility {
  display: flex;
  justify-content: flex-end;
  margin-top: -0.08rem;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-teal);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(var(--textdark-rgb), 0.04);
  cursor: pointer;
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__clear:hover {
  background: rgba(var(--bgsoft-rgb), 0.98);
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__clear:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 8px 16px rgba(var(--textdark-rgb), 0.04);
}

.service-detail-page--weight-loss-support .weight-loss-bmi-card__cta {
  width: 100%;
}

.service-detail-action-row--hero-process {
  justify-content: center;
  margin-top: 1.1rem;
}

.service-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.16rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--secondary-rgb), 0.22);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(var(--textdark-rgb), 0.08);
}

.service-detail-button:hover {
  transform: translateY(-1px);
}

.service-detail-button--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--deep-teal), var(--deep-teal-strong));
  color: #ffffff;
}

.service-detail-button--secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--deep-teal);
}

.service-detail-hero-card,
.service-detail-panel,
.service-detail-info-card,
.service-detail-cta-panel,
.service-detail-faq-item,
.service-detail-alert {
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  box-shadow: var(--shadow-card);
}

.service-detail-hero-card {
  display: grid;
  align-content: start;
  gap: 0.78rem;
  max-width: 24.5rem;
  padding: 0.84rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  justify-self: end;
}

.service-detail-hero-rail {
  display: grid;
  align-content: start;
  gap: 0.82rem;
  max-width: 24.5rem;
  justify-self: end;
}

.service-detail-hero-card__media {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.9), rgba(255, 255, 255, 0.96));
  aspect-ratio: 1.28 / 1;
}

.service-detail-hero-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-hero-card__media--contain {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-hero-card__media--contain img {
  object-fit: contain;
  padding: 0.8rem;
}

.service-detail-hero-card__eyebrow {
  margin: 0;
  color: var(--deep-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-detail-hero-card__body {
  display: grid;
  gap: 0.74rem;
}

.service-detail-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.56rem;
}

.service-detail-checklist li {
  position: relative;
  padding-left: 1.46rem;
  color: rgba(var(--textdark-rgb), 0.8);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.46;
}

.service-detail-checklist li::before {
  content: "";
  position: absolute;
  top: 0.44rem;
  left: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--brand-secondary);
  box-shadow: 0 0 0 5px rgba(var(--secondary-rgb), 0.12);
}

.service-detail-hero-card__badge {
  width: min(100%, 18.25rem);
  margin-top: 0.1rem;
  padding: 0;
  overflow: hidden;
  justify-self: center;
}

.service-detail-hero-card__badge img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.035);
  transform-origin: center;
}

.service-detail-section-head {
  max-width: 46rem;
}

.service-detail-section-head--compact {
  max-width: none;
}

@media (min-width: 981px) {
  .service-detail-section-head--conditions {
    margin-left: 2rem;
  }

  .service-detail-section > .service-detail-info-grid,
  .service-detail-section > .service-detail-cta-panel,
  .service-detail-section > .service-detail-section-head:not(.service-detail-section-head--compact):not(.service-detail-section-head--conditions),
  .service-detail-section > .service-detail-faq-list,
  .service-detail-section > .service-detail-alert,
  .service-detail-section > .service-detail-cta-panel + .service-detail-action-note {
    margin-inline-start: 1.15rem;
  }
}

.service-detail-section-head h2 {
  margin: 0.22rem 0 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.56rem, 2.2vw, 2.08rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-detail-section-head p {
  margin: 0.58rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.64;
}

.service-detail-conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.service-detail-condition-card {
  display: grid;
  align-content: start;
  gap: 0.68rem;
  min-height: 0;
  padding: 0.94rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.36));
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail-condition-card:hover,
.service-detail-condition-card:focus-visible {
  border-color: rgba(var(--secondary-rgb), 0.34);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.service-detail-condition-card:focus-visible {
  outline: 3px solid rgba(var(--secondary-rgb), 0.22);
  outline-offset: 3px;
}

.service-detail-page--pharmacy-first .service-detail-condition-card.is-active {
  border-color: rgba(var(--secondary-rgb), 0.42);
  background:
    radial-gradient(circle at 88% 14%, rgba(var(--primary-rgb), 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(var(--bgsoft-rgb), 0.62));
  box-shadow: 0 18px 34px rgba(var(--textdark-rgb), 0.09);
}

.service-detail-page--pharmacy-first .service-detail-condition-card.is-active h3 {
  color: var(--deep-teal);
}

.service-detail-page--pharmacy-first .service-detail-condition-card.is-active .service-detail-condition-media {
  box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.22);
}

.service-detail-condition-media {
  display: block;
  width: 100%;
  height: 172px;
  padding: 0.72rem;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 18%, rgba(var(--primary-rgb), 0.14), transparent 28%),
    linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.84), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.12);
}

.service-detail-condition-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-detail-condition-media--shingles {
  background:
    radial-gradient(circle at 50% 46%, rgba(232, 246, 246, 0.96) 0 58%, rgba(241, 250, 250, 0.94) 58% 76%, rgba(244, 252, 252, 0.9) 76% 100%),
    linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.88), rgba(255, 255, 255, 0.98));
}

.service-detail-condition-media--shingles img {
  transform: scale(1.08);
  transform-origin: center;
}

.service-detail-condition-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.service-detail-condition-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.52;
}

.service-detail-guidance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.84rem;
  margin-top: 0.94rem;
}

.service-detail-guidance-card {
  display: grid;
  align-content: start;
  gap: 0.74rem;
  padding: 1rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 8rem;
}

.service-detail-guidance-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.04rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.service-detail-guidance-item {
  display: grid;
  gap: 0.24rem;
}

.service-detail-guidance-item h4 {
  margin: 0;
  color: var(--deep-teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-detail-guidance-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.56;
}

.pharmacy-first-guide-stack {
  display: grid;
  gap: 0.92rem;
  margin-top: 0.94rem;
}

.pharmacy-first-guidance-section {
  scroll-margin-top: calc(var(--sticky-header-height) + 1rem);
}

.service-detail-page--pharmacy-first .pharmacy-first-guidance-section[hidden],
.service-detail-page--pharmacy-first .pharmacy-first-guide[hidden] {
  display: none !important;
}

.pharmacy-first-guide {
  display: grid;
  gap: 0.86rem;
  padding: 1.04rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 14%, rgba(var(--primary-rgb), 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.58));
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 8rem;
}

.pharmacy-first-guide__header {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(15rem, 0.88fr);
  gap: 0.84rem;
  align-items: start;
}

.pharmacy-first-guide__intro {
  display: grid;
  gap: 0.5rem;
}

.pharmacy-first-guide__intro h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.36rem;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.pharmacy-first-guide__intro p,
.pharmacy-first-guide__eligibility,
.pharmacy-first-guide__mini-card p,
.pharmacy-first-guide__urgent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pharmacy-first-guide__eligibility {
  padding: 0.92rem 1rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(242, 252, 251, 0.98), rgba(255, 255, 255, 0.96));
  color: rgba(var(--textdark-rgb), 0.82);
  font-weight: 600;
}

.pharmacy-first-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.pharmacy-first-guide__mini-card,
.pharmacy-first-guide__urgent {
  display: grid;
  gap: 0.46rem;
  padding: 0.92rem 0.96rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.pharmacy-first-guide__mini-card h4,
.pharmacy-first-guide__urgent h4 {
  margin: 0;
  color: var(--deep-teal);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.pharmacy-first-guide__list {
  margin-top: 0.04rem;
  padding-left: 1rem;
  gap: 0.42rem;
  font-size: 0.86rem;
  line-height: 1.54;
}

.pharmacy-first-guide__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.82rem;
  align-items: end;
}

.pharmacy-first-guide__cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.pharmacy-first-guide__cta .service-detail-button {
  min-height: 42px;
  padding-inline: 1rem;
  white-space: nowrap;
}

.prescriptions-anchor-section {
  scroll-margin-top: 8rem;
}

.prescriptions-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 0.94rem;
}

.prescriptions-route-card {
  display: grid;
  gap: 0.44rem;
  padding: 1rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 16%, rgba(var(--primary-rgb), 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.52));
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.prescriptions-route-card:hover,
.prescriptions-route-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(var(--secondary-rgb), 0.28);
  box-shadow: 0 18px 32px rgba(var(--textdark-rgb), 0.07);
}

.prescriptions-route-card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 18px 32px rgba(var(--textdark-rgb), 0.07);
}

.prescriptions-route-card h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.prescriptions-route-card p,
.prescriptions-inline-note,
.prescriptions-address span {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.56;
}

.prescriptions-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.88rem;
}

.prescriptions-inline-note {
  margin-top: 0.76rem;
}

.prescriptions-subpanel {
  margin-top: 0.92rem;
}

.prescriptions-details-card p {
  margin-bottom: 0.76rem;
}

.prescriptions-address {
  display: grid;
  gap: 0.18rem;
}

.prescriptions-address strong {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.28;
}

.service-detail-page--repeat-prescriptions .service-detail-steps-grid--repeat {
  margin-top: 0.8rem;
}

.service-detail-page--repeat-prescriptions .service-detail-step-card {
  min-height: 148px;
}

.service-detail-page--repeat-prescriptions .prescriptions-hero-support-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: center;
  gap: 0.9rem 1rem;
  margin-top: 0.92rem;
}

.service-detail-page--repeat-prescriptions .prescriptions-hero-support-copy {
  display: grid;
  gap: 0.3rem;
}

.service-detail-page--repeat-prescriptions .prescriptions-hero-support-copy h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.38rem;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.service-detail-page--repeat-prescriptions .prescriptions-hero-support-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.service-detail-page--repeat-prescriptions .prescriptions-form-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 0.88rem;
  align-items: start;
}

.service-detail-page--repeat-prescriptions .prescriptions-follow-up-card {
  margin-top: 0;
  padding: 0.96rem 1rem;
}

.service-detail-page--repeat-prescriptions .prescriptions-follow-up-card h2 {
  font-size: 1.18rem;
}

.service-detail-page--repeat-prescriptions .prescriptions-follow-up-card .service-detail-bullet-list {
  margin-top: 0.62rem;
}

.service-detail-page--covid-vaccines .covid-vaccines-availability-note {
  display: flex;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 1.02rem 1.28rem 1.08rem 1.4rem;
}

.service-detail-page--covid-vaccines .covid-vaccines-availability-note .hero-carousel-disclaimer__text {
  margin-top: 0;
}

.service-detail-page--covid-vaccines .covid-vaccines-availability-note--desktop .hero-carousel-disclaimer__text {
  font-size: 0.93rem;
  line-height: 1.64;
}

.service-detail-page--covid-vaccines .covid-vaccines-availability-note--desktop {
  border-radius: 18px;
}

.service-detail-page--covid-vaccines .covid-vaccines-availability-note--mobile {
  display: none;
}

.service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card {
  display: grid;
  gap: 0.86rem;
}

.service-detail-page--flu-vaccines .service-detail-hero > .flu-vaccines-booking-windows-card {
  margin-top: 0.92rem;
}

.service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card__group {
  display: grid;
  align-content: start;
}

.service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card__footer {
  display: grid;
  gap: 0.82rem;
}

.service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card .service-detail-bullet-list {
  margin-top: 0.42rem;
}

.service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-detail-page--flu-vaccines #flu-booking-options {
  scroll-margin-top: 8rem;
}

.service-detail-page--flu-vaccines #flu-booking-options .service-detail-info-card .service-detail-action-row--cta {
  justify-content: center;
  margin-top: 1.1rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-pharmacy-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.12fr);
  align-items: stretch;
  gap: 0.92rem 1rem;
  margin-top: 0.92rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-pharmacy-copy {
  display: grid;
  gap: 0.3rem;
  max-width: 25rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-pharmacy-copy h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.38rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-pharmacy-copy p {
  margin: 0;
  max-width: 29rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-address-card {
  height: 100%;
  padding: 1rem 1.04rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-address-card {
  display: grid;
  align-content: start;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-address-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.92rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-chip-stack {
  display: grid;
  gap: 0.72rem;
  min-width: 8.9rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-address--emergency {
  min-width: 0;
  justify-self: stretch;
  gap: 0.24rem;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-postcode-chip {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.28rem;
  min-width: 0;
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.16);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.08);
  text-align: left;
}

.service-detail-page--emergency-prescriptions .prescriptions-emergency-postcode-chip strong {
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-detail-page--emergency-prescriptions .support-inline-links--emergency {
  padding-left: 0.62rem;
}

.service-detail-page--stop-smoking .stop-smoking-understanding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.84rem;
  margin-top: 0.94rem;
}

.service-detail-page--stop-smoking .stop-smoking-understanding-grid .service-detail-guidance-card {
  height: 100%;
}

.service-detail-panel,
.service-detail-info-card,
.service-detail-cta-panel {
  padding: 1.08rem 1.12rem 1.12rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.5));
}

.service-detail-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.88rem;
}

.service-detail-step-card {
  display: grid;
  align-content: start;
  gap: 0.56rem;
  min-height: 174px;
  padding: 0.96rem;
  border: 1px solid rgba(var(--secondary-rgb), 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.service-detail-step-card--hero {
  min-height: 0;
  gap: 0.44rem;
  padding: 0.82rem 0.86rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.service-detail-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.2);
  color: var(--deep-teal);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.service-detail-step-card--hero .service-detail-step-number {
  width: 1.9rem;
  height: 1.9rem;
  font-size: 0.82rem;
}

.service-detail-step-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.98rem;
  line-height: 1.28;
}

.service-detail-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.54;
}

.service-detail-step-card--hero h3 {
  font-size: 0.9rem;
  line-height: 1.28;
}

.service-detail-step-card--hero p {
  font-size: 0.8rem;
  line-height: 1.48;
}

.service-detail-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.88rem;
}

.service-detail-info-card h2,
.service-detail-cta-copy h2,
.service-detail-alert__copy h2 {
  margin: 0.22rem 0 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.48rem;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.service-detail-info-card p,
.service-detail-cta-copy p,
.service-detail-alert__copy p {
  margin: 0.68rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.service-detail-bullet-list {
  margin: 0.74rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  display: grid;
  gap: 0.48rem;
  font-size: 0.9rem;
  line-height: 1.56;
}

.service-detail-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  background:
    radial-gradient(circle at 92% 18%, rgba(var(--primary-rgb), 0.14), transparent 22%),
    linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1), rgba(255, 255, 255, 0.98));
}

.service-detail-action-row--cta {
  justify-content: flex-end;
  margin-top: 0;
}

.service-detail-faq-list {
  display: grid;
  gap: 0.72rem;
  margin-top: 0.82rem;
}

.service-detail-faq-item {
  padding: 0 1rem;
  border-radius: 24px;
  background: #ffffff;
}

.service-detail-faq-item summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

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

.service-detail-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--deep-teal);
  font-size: 1.2rem;
  line-height: 1;
}

.service-detail-faq-item[open] summary::after {
  content: "\2212";
}

.service-detail-faq-item p {
  margin: 0 0 1rem;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.service-detail-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.06rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(255, 255, 255, 0.98));
}

.service-detail-alert__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep-teal);
  box-shadow: inset 0 0 0 1px rgba(var(--secondary-rgb), 0.2);
}

.service-detail-alert__icon svg {
  width: 1.38rem;
  height: 1.38rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  margin-top: 0.94rem;
}

.support-form-field {
  display: grid;
  gap: 0.42rem;
}

.support-form-field--full {
  grid-column: 1 / -1;
}

.support-form-field label {
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.support-form-field input,
.support-form-field select,
.support-form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.86rem 0.94rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.84);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.support-form-field textarea {
  min-height: 152px;
  resize: vertical;
}

.support-form-field input::placeholder,
.support-form-field textarea::placeholder {
  color: rgba(var(--textdark-rgb), 0.46);
}

.support-form-field input:focus-visible,
.support-form-field select:focus-visible,
.support-form-field textarea:focus-visible {
  border-color: rgba(var(--secondary-rgb), 0.44);
  outline: none;
  box-shadow: var(--focus-ring);
}

.support-form-note,
.support-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.56;
}

.support-form-status.is-success {
  color: var(--deep-teal-strong);
  font-weight: 600;
}

.support-form-status.is-error {
  color: #b8423d;
  font-weight: 600;
}

.support-form-note {
  margin-top: 0.88rem;
}

.support-form-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  margin-top: 0.1rem;
}

.support-form-consent input {
  flex: 0 0 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
}

.support-form-consent label {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.54;
}

.support-form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0.08rem;
}

.support-form-button[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.support-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.64rem;
  margin-top: 0.88rem;
}

.support-inline-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  color: var(--deep-teal);
  font-size: 0.84rem;
  font-weight: 800;
}

.support-inline-links a:hover {
  color: var(--text-dark);
}

.support-hero-reassurance {
  margin-top: 0.92rem;
  padding: 1rem 1.06rem;
}

.support-hero-reassurance .service-detail-section-head h2 {
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
}

.support-hero-reassurance .service-detail-section-head p {
  margin-top: 0.46rem;
  font-size: 0.88rem;
  line-height: 1.58;
}

.support-hero-reassurance .service-detail-bullet-list {
  margin-top: 0.72rem;
}

.support-hero-mini-shell {
  margin-top: 0.94rem;
}

.support-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 0.52rem;
}

.support-hero-mini-card {
  display: grid;
  align-content: start;
  gap: 0.34rem;
  padding: 0.86rem 0.9rem;
  border: 1px solid rgba(var(--bordersoft-rgb), 0.78);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--bgsoft-rgb), 0.44));
  box-shadow: 0 12px 22px rgba(var(--textdark-rgb), 0.055);
}

.support-hero-mini-card h2 {
  margin: 0;
  color: var(--text-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.94rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.support-hero-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .service-detail-hero-shell,
  .service-detail-info-grid,
  .service-detail-cta-panel {
    grid-template-columns: 1fr;
  }

  .service-detail-hero-card {
    max-width: none;
    justify-self: stretch;
  }

  .service-detail-hero-rail {
    max-width: none;
    justify-self: stretch;
  }

  .service-detail-hero-card__badge {
    width: min(100%, 17.5rem);
  }

  .service-detail-hero-steps,
  .service-detail-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-guidance-grid {
    grid-template-columns: 1fr;
  }

  .pharmacy-first-guide__header,
  .pharmacy-first-guide__footer {
    grid-template-columns: 1fr;
  }

  .prescriptions-route-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page--repeat-prescriptions .prescriptions-hero-support-strip,
  .service-detail-page--repeat-prescriptions .prescriptions-form-intro {
    grid-template-columns: 1fr;
  }

  .service-detail-page--flu-vaccines .flu-vaccines-booking-windows-card__columns {
    grid-template-columns: 1fr;
  }

  .service-detail-page--covid-vaccines .covid-vaccines-availability-note--desktop {
    display: none;
  }

  .service-detail-page--covid-vaccines .covid-vaccines-availability-note--mobile {
    display: flex;
  }

  .service-detail-page--emergency-prescriptions .prescriptions-emergency-pharmacy-strip {
    grid-template-columns: 1fr;
  }

  .service-detail-page--stop-smoking .stop-smoking-understanding-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page--emergency-prescriptions .prescriptions-address--emergency {
    justify-self: stretch;
  }

  .service-detail-page--emergency-prescriptions .prescriptions-emergency-address-shell {
    grid-template-columns: 1fr;
  }

  .service-detail-page--emergency-prescriptions .prescriptions-emergency-chip-stack {
    min-width: 0;
  }

  .service-detail-page--emergency-prescriptions .prescriptions-emergency-postcode-chip {
    min-width: 0;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner {
    grid-template-columns: 1fr;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner__panel {
    padding: 1rem 1.04rem;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner__panel--online {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner__panel--online .umbrella-support-banner__icon,
  .service-detail-page--umbrella-services .umbrella-support-banner__panel--online .umbrella-support-banner__copy,
  .service-detail-page--umbrella-services .umbrella-support-banner__panel--online .service-detail-button {
    grid-column: auto;
    grid-row: auto;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner__panel--online .service-detail-button {
    margin-left: 0;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner__panel--online .umbrella-support-banner__icon {
    justify-self: center;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner__panel--phone {
    border-left: 0;
    border-top: 1px solid rgba(211, 255, 249, 0.16);
    padding-left: 1.04rem;
    padding-right: 1.04rem;
  }

  .service-detail-page--umbrella-services .service-detail-hero-card__media--contain img {
    height: 118%;
    object-position: center 57%;
  }

  .service-detail-page--weight-loss-support .weight-loss-bmi-card__fields {
    grid-template-columns: 1fr;
  }

  .pharmacy-first-guide__cta {
    justify-content: flex-start;
  }

  .service-detail-action-row--cta {
    justify-content: flex-start;
  }

  .service-detail-action-row--hero-process {
    justify-content: center;
  }

  .service-detail-section-head--conditions {
    margin-left: 0.58rem;
  }
}

@media (max-width: 720px) {
  .service-detail-page {
    gap: 1rem;
    padding-top: 0.72rem;
  }

  .service-detail-page--request-support .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--request-support .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--request-support .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--speak-to-our-team .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--speak-to-our-team .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--speak-to-our-team .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--delivery-privacy .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--delivery-privacy .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--delivery-privacy .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--stop-smoking .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--stop-smoking .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--stop-smoking .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--prescriptions .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--prescriptions .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--prescriptions .service-detail-section--mobile-offset .service-detail-faq-list {
    margin-inline-start: 0.42rem;
  }

  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-cta-panel,
  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-section-head:not(.service-detail-section-head--compact):not(.service-detail-section-head--conditions),
  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-faq-list,
  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-alert,
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-cta-panel,
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-section-head:not(.service-detail-section-head--compact):not(.service-detail-section-head--conditions),
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-faq-list,
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-alert {
    margin-inline-start: 0.38rem;
  }

  .service-detail-hero-shell,
  .service-detail-panel,
  .service-detail-info-card,
  .service-detail-cta-panel {
    padding: 0.9rem;
  }

  .service-detail-hero-copy h1 {
    font-size: clamp(1.94rem, 7vw, 2.36rem);
  }

  .service-detail-hero-copy p,
  .service-detail-section-head p,
  .service-detail-info-card p,
  .service-detail-cta-copy p,
  .service-detail-alert__copy p,
  .service-detail-faq-item p {
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .service-detail-hero-process {
    gap: 0.66rem;
    margin-top: 0.86rem;
  }

  .service-detail-hero-process__intro h2 {
    font-size: 1.08rem;
  }

  .service-detail-hero-process__intro p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .pharmacy-first-guide {
    padding: 0.92rem;
    gap: 0.78rem;
  }

  .pharmacy-first-guide__intro h3 {
    font-size: 1.24rem;
  }

  .pharmacy-first-guide__grid {
    grid-template-columns: 1fr;
  }

  .prescriptions-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .prescriptions-inline-actions .service-detail-button {
    width: 100%;
  }

  .pharmacy-first-guide__mini-card,
  .pharmacy-first-guide__urgent,
  .pharmacy-first-guide__eligibility {
    padding: 0.86rem 0.9rem;
  }

  .pharmacy-first-guide__cta .service-detail-button {
    width: 100%;
    justify-content: center;
  }

  .support-form-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page--request-support .service-detail-action-row .service-detail-button {
    width: 100%;
  }

  .service-detail-page--speak-to-our-team .service-detail-action-row .service-detail-button {
    width: 100%;
  }

  .support-hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-action-row--cta {
    width: 100%;
  }

  .service-detail-action-row--cta .service-detail-button {
    width: 100%;
  }

  .service-detail-page--flu-vaccines #flu-booking-options .service-detail-info-card .service-detail-action-row--cta .service-detail-button {
    font-size: 0.8rem;
    padding-inline: 0.84rem;
    white-space: nowrap;
  }

  .service-detail-action-row--hero-process {
    width: 100%;
    margin-top: 0.02rem;
  }

  .service-detail-action-row--hero-process .service-detail-button {
    width: 100%;
  }

  .service-detail-page--umbrella-services .umbrella-support-banner .service-detail-button {
    width: 100%;
  }

  .service-detail-page--umbrella-services .service-detail-hero-card__media--contain img {
    height: 113%;
    object-position: center 56%;
  }

  .service-detail-page--weight-loss-support .weight-loss-bmi-card__summary {
    padding: 0.88rem 0.9rem;
  }

  .service-detail-page--weight-loss-support .weight-loss-bmi-card__panel {
    padding: 0 0.9rem 0.9rem;
  }

  .service-detail-page--weight-loss-support .weight-loss-bmi-card__toggle {
    min-height: 36px;
    padding-inline: 0.88rem;
  }

  .service-detail-hero-card__media {
    aspect-ratio: 1.24 / 1;
  }

  .service-detail-hero-card__badge {
    width: min(100%, 15rem);
    justify-self: center;
  }

  .service-detail-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-hero-steps {
    grid-template-columns: 1fr;
    gap: 0.58rem;
  }

  .service-detail-condition-media {
    height: 136px;
  }

  .service-detail-step-card {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .service-detail-page {
    gap: 0.92rem;
    padding-top: 0.64rem;
  }

  .service-detail-page--request-support .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--request-support .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--request-support .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--speak-to-our-team .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--speak-to-our-team .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--speak-to-our-team .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--delivery-privacy .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--delivery-privacy .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--delivery-privacy .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--stop-smoking .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--stop-smoking .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--stop-smoking .service-detail-section--mobile-offset .service-detail-faq-list,
  .service-detail-page--prescriptions .service-detail-section--mobile-offset .service-detail-alert,
  .service-detail-page--prescriptions .service-detail-section--mobile-offset .service-detail-section-head,
  .service-detail-page--prescriptions .service-detail-section--mobile-offset .service-detail-faq-list {
    margin-inline-start: 0.34rem;
  }

  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-cta-panel,
  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-section-head:not(.service-detail-section-head--compact):not(.service-detail-section-head--conditions),
  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-faq-list,
  .service-detail-page--covid-vaccines .service-detail-section > .service-detail-alert,
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-cta-panel,
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-section-head:not(.service-detail-section-head--compact):not(.service-detail-section-head--conditions),
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-faq-list,
  .service-detail-page--flu-vaccines .service-detail-section > .service-detail-alert {
    margin-inline-start: 0.3rem;
  }

  .service-detail-hero-shell {
    gap: 0.82rem;
    padding: 0.84rem;
    border-radius: 26px;
  }

  .service-detail-section-head--conditions {
    margin-left: 0.42rem;
  }

  .service-detail-breadcrumb {
    font-size: 0.72rem;
  }

  .service-detail-pill-row > span,
  .service-detail-condition-pill {
    min-height: 28px;
    padding: 0 0.62rem;
    font-size: 0.7rem;
  }

  .service-detail-page--stop-smoking .stop-smoking-hero-disclaimer {
    width: 100%;
  }

  .service-detail-section-head h2,
  .service-detail-info-card h2,
  .service-detail-cta-copy h2,
  .service-detail-alert__copy h2 {
    font-size: 1.28rem;
  }

  .service-detail-conditions-grid,
  .service-detail-steps-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-condition-card,
  .service-detail-step-card,
  .service-detail-faq-item,
  .service-detail-guidance-card,
  .pharmacy-first-guide {
    border-radius: 22px;
  }

  .service-detail-hero-process {
    margin-top: 0.8rem;
  }

  .service-detail-hero-process__intro h2 {
    font-size: 1rem;
  }

  .service-detail-step-card--hero {
    padding: 0.76rem 0.8rem;
  }

  .service-detail-condition-media {
    height: 122px;
    padding: 0.6rem;
  }

  .service-detail-guidance-card {
    gap: 0.68rem;
    padding: 0.92rem;
  }

  .service-detail-guidance-item p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .pharmacy-first-guide__intro h3 {
    font-size: 1.14rem;
  }

  .pharmacy-first-guide__mini-card,
  .pharmacy-first-guide__urgent,
  .pharmacy-first-guide__eligibility {
    border-radius: 20px;
  }

  .pharmacy-first-guide__list {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .prescriptions-route-card {
    padding: 0.92rem;
    border-radius: 22px;
  }

  .prescriptions-route-card h2,
  .prescriptions-address strong {
    font-size: 1rem;
  }

  .service-detail-alert {
    grid-template-columns: 1fr;
    padding: 0.92rem;
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .category-pill-dropdown-menu {
    width: min(22rem, calc(100vw - 1rem));
    padding: 0.9rem;
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .category-pill-dropdown-section + .category-pill-dropdown-section {
    padding-left: 0;
    padding-top: 0.56rem;
    border-left: none;
    border-top: 1px solid rgba(var(--bordersoft-rgb), 0.6);
  }

  .category-pill-dropdown-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.62rem;
  }

  .category-pill-dropdown-actions .category-pill-dropdown-link:last-child {
    width: 100%;
    justify-content: center;
  }

  .category-pill-dropdown-menu--compact {
    display: none;
  }
}

@media (max-width: 1120px) {
  .category-pill-dropdown-menu--compact {
    display: none;
  }

  .container {
    width: min(1360px, calc(100% - 1.45rem));
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.88rem;
    row-gap: 0.58rem;
    padding: 0.74rem 0 0.58rem;
  }

  .search-bar,
  .header-browse {
    grid-column: 1 / -1;
  }

  .header-browse {
    gap: 0.42rem;
  }

  .category-nav {
    margin-left: 0;
  }

  .compact-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .home-showcase.hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(
        180deg,
        rgba(245, 250, 250, 0.96) 0%,
        rgba(245, 250, 250, 0.9) 36%,
        rgba(245, 250, 250, 0.56) 52%,
        rgba(245, 250, 250, 0.18) 68%,
        rgba(245, 250, 250, 0.04) 82%,
        rgba(245, 250, 250, 0) 92%
      ),
      url("./assets/images/hero-products.webp") no-repeat center bottom / auto 84%,
      linear-gradient(145deg, rgba(var(--bgsoft-rgb), 0.58), #ffffff 52%, rgba(var(--bgsoft-rgb), 0.32));
  }

  .hero-copy {
    padding: 1.72rem 1.68rem 1.48rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 4.6vw, 2.9rem);
  }

  .hero-visual {
    min-height: 300px;
    border-left: none;
    border-top: none;
  }

  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-card-primary {
    grid-column: 1 / -1;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card {
    min-height: 188px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .service-shell {
    padding: 1.12rem 1.12rem 1rem;
  }

  .service-card--featured {
    min-height: 262px;
  }

  .service-card--featured .service-card__content {
    width: min(52%, 15.4rem);
    max-width: 52%;
    padding: 1.28rem 1.02rem 1.02rem 1.28rem;
  }

  .service-card--standard {
    min-height: 228px;
  }

  .service-card--standard .service-card__content {
    width: 55%;
    max-width: 55%;
  }

  .service-card--standard .service-card__visual {
    width: 45%;
    flex-basis: 45%;
  }

  .service-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 1.72rem 1.34rem 1.22rem;
  }

  .footer-nav-shell {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .footer-help-card {
    grid-column: 2;
    max-width: 300px;
  }

  .footer-help-icon {
    flex-basis: 3.6rem;
    width: 3.6rem;
    height: 3.6rem;
  }

  .footer-help-card h4 {
    font-size: 1.04rem;
  }

  .footer-middle-strip {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0.98rem 1.34rem 1rem;
  }

  .footer-strip-feature {
    padding: 0.72rem 0;
    margin-right: 0;
  }

  .footer-strip-feature:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: none;
  }

  .footer-strip-feature--payments {
    justify-self: stretch;
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-bottom {
    padding: 0.96rem 1.34rem 0.98rem;
  }

  .footer-bottom-main {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.9rem;
  }

  .footer-address {
    justify-self: start;
    max-width: 36rem;
  }

  .footer-company-details {
    justify-self: start;
    text-align: left;
  }

  .footer-copyright {
    justify-self: start;
  }
}

@media (min-width: 1121px) {
  .header-browse {
    grid-column: 1 / -1;
  }

  .category-nav > .category-pill-dropdown--desktop-hide {
    display: none;
  }

  .category-nav {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.48rem;
    margin-left: 0;
    white-space: normal;
    overflow: visible;
  }

  .quick-nav {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0.46rem;
    white-space: normal;
    overflow: visible;
    transform: translateX(-30px);
  }

  .category-nav > a,
  .category-nav > .category-pill-dropdown,
  .category-nav > .category-pill-dropdown > a,
  .category-nav > .category-pill-dropdown > button,
  .quick-nav p,
  .quick-pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: calc(var(--sticky-header-height-mobile) + 12px);
  }

  .hero-heading-line {
    white-space: normal;
  }

  .top-strip-inner {
    min-height: 34px;
    gap: 0.6rem;
  }

  .top-strip-message {
    font-size: 0.76rem;
    white-space: normal;
  }

  .top-strip-message > svg {
    display: none;
  }

  .top-strip-message-link--desktop {
    display: none;
  }

  .top-strip-message-link--mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-width: 0;
    padding: 0.1875rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
  }

  .top-strip-message-link--mobile svg {
    width: 0.82rem;
    height: 0.82rem;
    flex-shrink: 0;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .top-strip-message-link--mobile:visited,
  .top-strip-message-link--mobile:hover,
  .top-strip-message-link--mobile:focus,
  .top-strip-message-link--mobile:focus-visible,
  .top-strip-message-link--mobile:active {
    color: inherit;
    text-decoration: none;
  }

  .top-strip-hours-dropdown {
    display: none;
  }

  .top-strip-hours-panel {
    display: none;
  }

  .top-strip-hours {
    padding: 0.24rem 0.6rem;
    font-size: 0.66rem;
  }

  .top-strip-links .top-strip-hours--desktop {
    font-size: 0;
    line-height: 0;
  }

  .top-strip-links .top-strip-hours--desktop::after {
    content: "Opening hours";
    color: currentColor;
    font-size: clamp(0.61rem, 1.95vw, 0.66rem);
    font-weight: inherit;
    line-height: 1.18;
    white-space: nowrap;
  }

  .top-strip-links {
    gap: 0.8rem;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem 0.74rem;
    padding: 0.68rem 0 0.52rem;
  }

  .brand,
  .search-bar,
  .header-actions,
  .header-browse {
    grid-column: 1;
  }

  .brand-logo {
    width: 136px;
  }

  .header-actions {
    gap: 0.5rem;
    justify-self: stretch;
    justify-content: flex-end;
  }

  .header-phone-popover {
    padding: 0.62rem 0.74rem;
  }

  .header-phone-popover a {
    font-size: 0.86rem;
  }

  .header-action span {
    display: none;
  }

  .header-account__link .header-account__label {
    display: inline;
  }

  .search-bar input {
    padding: 0.78rem 0.88rem;
    font-size: 0.91rem;
  }

  .search-bar button {
    padding: 0 0.88rem;
  }

  .header-browse {
    gap: 0.44rem;
  }

  .category-nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 0;
    padding: 0 0.08rem 0.2rem;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .category-nav > a,
  .category-nav > .category-pill-dropdown {
    flex: 0 0 auto;
  }

  .category-nav a,
  .category-nav button {
    min-height: 35px;
    padding: 0.42rem 0.66rem;
    font-size: 0.79rem;
  }

  .category-pill-dropdown::after {
    display: none;
  }

  .category-pill-dropdown-menu {
    width: min(22rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }

  .quick-nav {
    gap: 0.44rem;
    padding: 0.12rem 0 0.16rem;
  }

  .quick-nav p {
    min-height: 32px;
    font-size: 0.76rem;
  }

  .quick-pill {
    min-height: 32px;
    padding: 0.32rem 0.66rem;
    font-size: 0.76rem;
  }

  .compact-header-inner {
    min-height: var(--sticky-header-height-mobile);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.42rem;
  }

  .compact-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .compact-brand-logo {
    width: 92px;
    height: auto;
  }

  .compact-account {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    min-height: 2rem;
    padding: 0;
    gap: 0;
  }

  .compact-search button span,
  .compact-cart-label,
  .compact-account-label {
    display: none;
  }

  .compact-account svg {
    width: 16px;
    height: 16px;
  }

  .compact-search button {
    width: 2.3rem;
    min-width: 2.3rem;
    padding: 0;
  }

  .compact-cart {
    padding: 0 0.64rem;
  }

  .home-showcase.hero {
    margin-top: 0.62rem;
  }

  .hero-copy {
    padding: 1.36rem 1.2rem 1.18rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.08rem, 7.4vw, 2.45rem);
  }

  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-search {
    flex-direction: column;
    border-radius: 20px;
    padding: 0.42rem;
  }

  .hero-search input,
  .hero-search button {
    width: 100%;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  .btn,
  .hero-link {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 258px;
  }

  .hero-panel {
    background:
      linear-gradient(
        180deg,
        rgba(245, 250, 250, 0.97) 0%,
        rgba(245, 250, 250, 0.92) 46%,
        rgba(245, 250, 250, 0.64) 60%,
        rgba(245, 250, 250, 0.22) 76%,
        rgba(245, 250, 250, 0.05) 90%,
        rgba(245, 250, 250, 0) 100%
      ),
      url("./assets/images/hero-products.webp") no-repeat center bottom / auto 72%,
      linear-gradient(145deg, rgba(var(--bgsoft-rgb), 0.58), #ffffff 52%, rgba(var(--bgsoft-rgb), 0.32));
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    min-height: 178px;
  }

  .category-media {
    width: min(100%, 116px);
  }

  .product-grid,
  .service-grid,
  .trust-strip,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    border-radius: 28px;
  }

  .footer-top {
    padding: 1.28rem 1rem 0.84rem;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-brand-block p {
    margin-top: 0.14rem;
  }

  .footer-nav-shell {
    grid-column: auto;
    margin-left: 0;
    padding: 0.44rem 0.96rem 0.34rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .footer-nav-column {
    padding: 0;
  }

  .footer-nav-column--shop {
    display: none;
  }

  .footer-nav-column {
    border-bottom: 1px solid rgba(var(--bordersoft-rgb), 0.72);
  }

  .footer-nav-column:last-child {
    border-bottom: none;
  }

  .footer-nav-toggle {
    cursor: pointer;
    min-height: 44px;
    padding: 0.18rem 0;
  }

  .footer-nav-toggle span {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .footer-nav-toggle svg {
    display: block;
    color: var(--deep-teal);
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.92;
  }

  .footer-nav-column[open] .footer-nav-toggle svg {
    transform: rotate(180deg);
  }

  .footer-nav-links {
    padding: 0.02rem 0 0.46rem;
  }

  .footer-nav a {
    margin: 0;
    padding: 0.34rem 0;
    white-space: normal;
  }

  .footer-nav a.footer-link--desktop-hide {
    display: none;
  }

  .footer-help-card {
    grid-column: auto;
    max-width: none;
    gap: 0.5rem;
    min-height: 0;
    padding: 1rem 1rem 0.58rem;
  }

  .footer-help-head {
    gap: 0.66rem;
    margin-bottom: 0;
  }

  .footer-help-icon {
    flex-basis: 3rem;
    width: 3rem;
    height: 3rem;
  }

  .footer-help-icon svg {
    width: 1.62rem;
    height: 1.62rem;
  }

  .footer-help-card h4 {
    font-size: 1rem;
  }

  .footer-help-copy {
    gap: 0.18rem;
    padding-top: 0.04rem;
  }

  .footer-help-support {
    line-height: 1.36;
  }

  .footer-help-card .footer-help-hours {
    margin-top: 0.14rem;
  }

  .footer-help-cta {
    margin-top: 0.08rem;
  }

  .footer-middle-strip {
    margin: 0;
    padding: 0.64rem 1rem 0.88rem;
  }

  .footer-strip-feature {
    gap: 0.72rem;
    min-height: 0;
    padding: 0.66rem 0;
  }

  .footer-strip-icon {
    flex-basis: 2.04rem;
    width: 2.04rem;
    height: 2.04rem;
  }

  .footer-strip-copy--payments {
    gap: 0.46rem;
  }

  .footer-payment-badges {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .footer-payment-badge {
    min-height: 1.82rem;
    padding: 0 0.66rem;
  }

  .footer-bottom {
    padding: 0.88rem 1rem 0.92rem;
  }

  .footer-bottom-main {
    display: contents;
  }

  .footer-legal-links {
    grid-row: 1;
    gap: 0.22rem 0;
  }

  .footer-legal-links a {
    padding: 0 0.72rem;
  }

  .footer-legal-link--exact-location {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    grid-row: 2;
    width: fit-content;
    padding: 0.1875rem 0.75rem;
    gap: 0.375rem;
    border: 1px solid rgba(var(--secondary-rgb), 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.92), rgba(255, 255, 255, 0.9));
    color: rgba(var(--textdark-rgb), 0.8);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
  }

  .footer-legal-link--exact-location svg {
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .footer-address {
    grid-row: 3;
    gap: 0.62rem;
  }

  .footer-address-icon {
    flex-basis: 1.18rem;
    width: 1.18rem;
    height: 1.18rem;
  }

  .footer-company-details span {
    margin: 0 0.34rem;
  }

  .footer-copyright {
    grid-row: 4;
  }

  .footer-company-details {
    grid-row: 5;
  }

  .service-shell {
    padding: 1rem;
    border-radius: 28px;
  }

  .service-head {
    align-items: flex-start;
  }

  .service-shell > .section-intro,
  .service-intro {
    margin-bottom: 1rem;
  }

  .service-card {
    min-height: auto;
    flex-direction: column;
  }

  .service-card--featured {
    min-height: 246px;
  }

  .service-card--featured .service-card__content {
    width: 62%;
    max-width: 62%;
    padding: 1.12rem 1rem 0.96rem 1.12rem;
  }

  .service-card--standard {
    min-height: auto;
  }

  .service-card__visual,
  .service-card--featured .service-card__visual,
  .service-card--standard .service-card__visual {
    width: 100%;
    flex-basis: auto;
    min-height: 164px;
  }

  .service-card--featured .service-card__image {
    object-position: center;
  }

  .service-card--standard .service-card__visual {
    position: relative;
    inset: auto;
    z-index: 1;
    pointer-events: auto;
  }

  .service-card--standard .service-card__image {
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .service-card--standard .service-card__content {
    width: 100%;
    max-width: none;
    padding: 1.12rem 1.08rem 1rem;
  }

  .service-card--standard .service-card__visual {
    min-height: 144px;
  }

  .service-trust-strip {
    grid-template-columns: 1fr;
  }

  .service-trust-item:not(:last-child)::after {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .product-labels {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    margin-top: 1.46rem;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1360px, calc(100% - 1rem));
  }

  .top-strip-inner {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 0.68rem;
  }

  .top-strip-message {
    width: auto;
    align-items: center;
    justify-self: start;
    white-space: nowrap;
    line-height: 1.2;
  }

  .top-strip-message-link--mobile {
    font-size: 0.76rem;
    font-weight: 700;
  }

  .top-strip-links {
    display: contents;
    width: auto;
  }

  .top-strip-hours--desktop {
    display: none;
  }

  .top-strip-hours-dropdown {
    position: relative;
    display: block;
    grid-column: 2;
    justify-self: center;
    z-index: 60;
  }

  .top-strip-hours-dropdown summary {
    list-style: none;
    cursor: pointer;
  }

  .top-strip-hours-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .top-strip-hours--mobile {
    display: inline-flex;
    flex: 0 0 auto;
    width: fit-content;
    justify-content: center;
    padding: 0.22rem 0.56rem;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }

  .top-strip-hours-panel {
    display: none;
  }

  .top-strip-hours-dropdown[open] .top-strip-hours-panel {
    position: absolute;
    top: calc(100% + 0.36rem);
    left: 50%;
    z-index: 70;
    display: grid;
    gap: 0.16rem;
    min-width: max-content;
    padding: 0.56rem 0.72rem;
    border: 1px solid rgba(211, 255, 249, 0.22);
    border-radius: 0.9rem;
    background: linear-gradient(180deg, rgba(9, 82, 88, 0.98), rgba(7, 70, 75, 0.96));
    box-shadow: 0 14px 26px rgba(4, 57, 62, 0.22);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .top-strip-links a {
    grid-column: 3;
    justify-self: end;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
  }

  .quick-nav {
    display: none;
  }

  .brand-logo {
    width: 130px;
  }

  .cart-pill-label {
    display: none;
  }

  .hero-copy p,
  .kicker {
    max-width: 100%;
  }

  .hero-copy {
    padding: 1.22rem 1.05rem 1.05rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 238px;
  }

  .hero-panel {
    background:
      linear-gradient(
        180deg,
        rgba(245, 250, 250, 0.97) 0%,
        rgba(245, 250, 250, 0.93) 50%,
        rgba(245, 250, 250, 0.7) 66%,
        rgba(245, 250, 250, 0.26) 82%,
        rgba(245, 250, 250, 0.06) 92%,
        rgba(245, 250, 250, 0) 100%
      ),
      url("./assets/images/hero-products.webp") no-repeat center bottom / auto 66%,
      linear-gradient(145deg, rgba(var(--bgsoft-rgb), 0.58), #ffffff 52%, rgba(var(--bgsoft-rgb), 0.32));
  }

  .service-card {
    min-height: auto;
  }

  .service-card--featured {
    min-height: 228px;
  }

  .service-card--featured .service-card__content {
    width: 66%;
    max-width: 66%;
    padding: 1rem 0.92rem 0.9rem 1rem;
  }

  .service-card__badge {
    min-height: 26px;
    padding: 0 0.64rem;
    font-size: 0.65rem;
  }

  .service-card--standard {
    min-height: auto;
  }

  .service-card--featured .service-card__visual {
    min-height: 156px;
  }

  .service-card--standard .service-card__content {
    padding: 1rem 0.96rem 0.9rem;
  }

  .service-card--standard .service-card__visual {
    min-height: 132px;
  }

  .service-card__icon-badge {
    width: 40px;
    height: 40px;
  }

  .service-trust-item {
    padding: 0.84rem 0.9rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 164px;
    gap: 0.54rem;
  }

  .category-media {
    width: min(100%, 108px);
  }

  .service-shell {
    padding: 0;
    border-radius: 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .service-shell::before {
    display: none;
  }

  .service-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 0.46rem;
    padding: 0 0.06rem;
  }

  .service-kicker,
  .service-head a,
  .service-shell > .section-intro,
  .service-intro {
    display: none;
  }

  .service-head h2 {
    font-size: 0;
    line-height: 1;
    margin: 0;
  }

  .service-head h2::after {
    content: "Pharmacy services";
    display: block;
    font-size: 1rem;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--deep-teal);
  }

  .service-grid,
  .service-trust-strip {
    display: none;
  }

  .service-mobile-carousel {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 0.08rem;
    scroll-padding-inline: 0.01rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .service-mobile-carousel::-webkit-scrollbar {
    display: none;
  }

  .service-mobile-card {
    position: relative;
    flex: 0 0 min(70vw, 280px);
    width: min(70vw, 280px);
    max-width: none;
    min-width: 0;
    height: auto;
    aspect-ratio: 23 / 31;
    padding: 0;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    display: block;
    scroll-snap-align: start;
    overflow: hidden;
  }

  .service-mobile-card--prescriptions {
    display: none;
  }

  .service-mobile-card::before {
    display: none;
  }

  .service-mobile-card__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    object-position: center top;
  }

  .service-mobile-card__icon {
    display: none;
  }

  .service-mobile-card__icon svg {
    display: none;
  }

  .service-mobile-card__title {
    display: none;
  }

  .service-mobile-card__text {
    display: none;
  }

  .service-mobile-card__cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .top-strip-message {
    font-size: 0.74rem;
  }

  .top-strip-message-link--mobile,
  .top-strip-links .top-strip-hours::after,
  .top-strip-links a {
    font-size: 0.72rem;
  }

  .brand-logo {
    width: 120px;
  }

  .search-bar {
    min-height: 46px;
  }

  .search-bar input {
    padding: 0.72rem 0.74rem;
    font-size: 0.88rem;
  }

  .search-bar button span {
    display: none;
  }

  .search-bar button {
    width: 2.7rem;
    min-width: 2.7rem;
    justify-content: center;
    gap: 0;
    padding: 0;
    margin-right: 0.18rem;
  }

  .header-actions {
    gap: 0.38rem;
  }

  .header-phone-trigger {
    width: 2.34rem;
    min-width: 2.34rem;
    height: 2.34rem;
    min-height: 2.34rem;
  }

  .header-phone-popover {
    padding: 0.58rem 0.68rem;
  }

  .header-phone-popover a {
    font-size: 0.82rem;
  }

  .header-action,
  .cart-pill {
    min-height: 36px;
  }

  .cart-pill {
    padding: 0 0.52rem;
  }

  .category-nav a {
    padding: 0.4rem 0.62rem;
    font-size: 0.77rem;
  }

  .compact-header-inner {
    gap: 0.36rem;
  }

  .compact-brand-logo {
    width: 88px;
  }

  .compact-search input {
    padding: 0.54rem 0.58rem;
    font-size: 0.8rem;
  }

  .compact-search button {
    width: 2.2rem;
    min-width: 2.2rem;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .compact-cart {
    padding: 0 0.52rem;
  }

  .hero-copy {
    padding: 1.08rem 0.92rem 0.96rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.68rem, 8.6vw, 1.94rem);
    line-height: 1.06;
  }

  .hero-copy p {
    margin-top: 2.35rem;
    font-size: 0.9rem;
  }

  .kicker {
    white-space: normal;
  }

  .hero-search input {
    padding: 0.74rem 0.78rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-shell {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-menu-overlay {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(17, 47, 50, 0.26);
    backdrop-filter: blur(7px);
    cursor: pointer;
  }

  .mobile-menu-drawer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(23.5rem, calc(100vw - 0.85rem));
    max-width: 100%;
    border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
    border-left: none;
    border-radius: 0 32px 32px 0;
    background:
      radial-gradient(circle at 88% 10%, rgba(var(--primary-rgb), 0.24), transparent 24%),
      radial-gradient(circle at -12% 28%, rgba(var(--secondary-rgb), 0.18), transparent 34%),
      linear-gradient(180deg, rgba(220, 243, 245, 0.98) 0%, rgba(232, 247, 248, 0.94) 24%, rgba(241, 250, 250, 0.94) 56%, rgba(250, 253, 253, 0.98) 100%),
      #ffffff;
    box-shadow: 0 28px 60px rgba(var(--textdark-rgb), 0.18);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    isolation: isolate;
    transform: translateX(-105%);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 78% 22%, rgba(var(--primary-rgb), 0.18), rgba(var(--primary-rgb), 0) 32%),
      radial-gradient(circle at 18% 56%, rgba(var(--secondary-rgb), 0.12), rgba(var(--secondary-rgb), 0) 34%),
      linear-gradient(180deg, rgba(var(--primary-rgb), 0.12) 0%, rgba(var(--primary-rgb), 0.06) 30%, rgba(var(--bgsoft-rgb), 0) 72%);
    pointer-events: none;
    z-index: 0;
  }

  .mobile-menu-drawer-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .mobile-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1.08rem 1rem 0.94rem 1.1rem;
    background: none;
  }

  .mobile-menu-header-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    padding: 0.08rem 0 0;
  }

  .mobile-menu-header-copy::after {
    content: none;
  }

  .mobile-menu-logo {
    display: block;
    width: 128px;
    height: auto;
  }

  .mobile-menu-close {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--deep-teal);
    box-shadow: 0 10px 20px rgba(var(--textdark-rgb), 0.06);
    cursor: pointer;
  }

  .mobile-menu-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-menu-body {
    display: grid;
    gap: 0.9rem;
    flex: none;
    overflow-y: visible;
    padding: 0.28rem 0.94rem calc(1rem + env(safe-area-inset-bottom, 0px));
    background: none;
  }

  .mobile-menu-section {
    display: grid;
    gap: 0.58rem;
  }

  .mobile-menu-section + .mobile-menu-section {
    padding-top: 0.92rem;
    border-top: 1px solid rgba(var(--bordersoft-rgb), 0.62);
  }

  .mobile-menu-section-title {
    margin: 0;
    color: rgba(var(--textdark-rgb), 0.68);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-menu-links {
    display: grid;
    gap: 0.46rem;
  }

  .mobile-menu-group {
    display: grid;
    gap: 0.42rem;
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0.82rem 0.92rem;
    border: 1px solid rgba(var(--bordersoft-rgb), 0.8);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(var(--textdark-rgb), 0.04);
  }

  .mobile-menu-link--toggle {
    width: 100%;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu-link--toggle::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-link::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.8rem;
    border-top: 1.5px solid rgba(var(--textdark-rgb), 0.42);
    border-right: 1.5px solid rgba(var(--textdark-rgb), 0.42);
    transform: rotate(45deg);
  }

  .mobile-menu-link--toggle::after {
    transform: rotate(135deg);
    transition: transform 180ms ease;
  }

  .mobile-menu-group[open] > .mobile-menu-link--toggle::after {
    transform: rotate(-45deg);
  }

  .mobile-menu-submenu {
    display: grid;
    gap: 0.4rem;
    padding-left: 0.58rem;
  }

  .mobile-menu-submenu .mobile-menu-link {
    min-height: 42px;
    padding: 0.76rem 0.92rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.84), rgba(255, 255, 255, 0.94));
    box-shadow: 0 8px 18px rgba(var(--textdark-rgb), 0.035);
  }

  .mobile-menu-submenu > .mobile-menu-group {
    gap: 0.36rem;
  }

  .mobile-menu-subpanel {
    display: grid;
    gap: 0.58rem;
    margin-left: 0.14rem;
    padding: 0.84rem 0.9rem 0.92rem;
    border: 1px solid rgba(var(--secondary-rgb), 0.16);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(245, 255, 253, 0.98), rgba(233, 248, 244, 0.94));
    box-shadow: 0 10px 20px rgba(var(--textdark-rgb), 0.04);
  }

  .mobile-menu-subpanel-title {
    margin: 0;
    color: var(--deep-teal);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .mobile-menu-subpanel-text {
    margin: 0;
    color: rgba(var(--textdark-rgb), 0.74);
    font-size: 0.74rem;
    line-height: 1.48;
  }

  .mobile-menu-subpanel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 38px;
    padding: 0 0.92rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--deep-teal), rgba(var(--secondary-rgb), 0.96));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(var(--secondary-rgb), 0.18);
  }

  .mobile-menu-help-card {
    margin-top: 0.08rem;
    padding: 1rem 1rem 1.02rem;
    border: 1px solid rgba(var(--bordersoft-rgb), 0.86);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(var(--primary-rgb), 0.16), transparent 36%),
      linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.84), rgba(255, 255, 255, 0.98));
    box-shadow: 0 16px 28px rgba(var(--textdark-rgb), 0.06);
  }

  .mobile-menu-help-kicker {
    margin: 0 0 0.28rem;
    color: var(--deep-teal);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .mobile-menu-help-card h3 {
    margin: 0;
    color: #163a3e;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.28;
  }

  .mobile-menu-help-link {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    margin-top: 0.82rem;
    color: var(--deep-teal);
    font-weight: 800;
  }

  .mobile-menu-close-button {
    appearance: none;
    width: 100%;
    min-height: 48px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(var(--primary-rgb), 0.22);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.94), rgba(18, 96, 103, 0.96));
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 28px rgba(var(--textdark-rgb), 0.08);
    cursor: pointer;
  }

  body.mobile-menu-open .mobile-menu-shell {
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-drawer {
    transform: translateX(0);
  }

  .site-header {
    overflow-x: hidden;
  }

  .top-strip,
  .top-strip-inner,
  .top-strip-message,
  .top-strip-message span,
  .top-strip-links,
  .header-shell,
  .mobile-menu-toggle,
  .brand,
  .brand-logo,
  .search-bar,
  .search-bar input,
  .search-bar button,
  .header-actions,
  .header-action,
  .cart-pill,
  .header-browse,
  .category-nav,
  .category-pill-dropdown,
  .category-nav > a,
  .category-nav > .category-pill-dropdown > a,
  .category-nav > .category-pill-dropdown > button,
  .compact-header-inner,
  .compact-search,
  .compact-search input,
  .compact-search button,
  .compact-cart {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .top-strip-message {
    flex: 1 1 auto;
  }

  .top-strip-message span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .header-browse {
    display: none;
  }

  .category-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0.42rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: 0;
    padding: 0 0.65rem 0.28rem;
    scroll-padding-inline: 0.65rem;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .category-nav > a,
  .category-nav > .category-pill-dropdown,
  .header-action,
  .cart-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .category-pill-dropdown::after {
    display: none;
  }

}

.mobile-service-cards {
  display: none;
}

@media (max-width: 480px) {
  .header-shell {
    display: block;
    padding: 0.56rem 0 0.34rem;
  }

  .header-main {
    position: sticky;
    top: 0.32rem;
    z-index: 42;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.42rem 0.52rem;
    padding: 0.42rem 0.46rem 0.5rem;
    border: 1px solid rgba(var(--bordersoft-rgb), 0.82);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 24px rgba(var(--textdark-rgb), 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-menu-drawer {
    width: min(22.75rem, calc(100vw - 0.7rem));
    border-radius: 0 28px 28px 0;
  }

  .mobile-menu-header {
    padding: 1rem 0.94rem 0.9rem 1rem;
  }

  .mobile-menu-header-copy {
    padding-top: 0;
  }

  .mobile-menu-body {
    padding: 0.24rem 0.84rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-menu-link {
    min-height: 44px;
  }

  .top-strip-inner {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 0.42rem;
    padding: 0.45rem 0;
  }

  .top-strip-message {
    width: auto;
    align-items: center;
    justify-self: start;
    gap: 0.38rem;
    white-space: nowrap;
    line-height: 1.2;
  }

  .top-strip-message-link--mobile {
    font-size: 0.76rem;
    font-weight: 700;
  }

  .top-strip-links {
    display: contents;
    width: auto;
  }

  .top-strip-hours-dropdown {
    grid-column: 2;
    justify-self: center;
    z-index: 60;
  }

  .top-strip-hours--mobile {
    max-width: none;
    padding: 0.2rem 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
  }

  .top-strip-hours-dropdown[open] .top-strip-hours-panel {
    z-index: 70;
    font-size: 0.7rem;
  }

  .top-strip-links a {
    grid-column: 3;
    justify-self: end;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
  }

  .top-strip-links a {
    display: block;
    white-space: nowrap;
    text-align: right;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.56rem 0.45rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-self: center;
  }

  .brand-logo {
    width: 120px;
  }

  .search-bar {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .search-bar input {
    width: 100%;
    min-width: 0;
    padding: 0.72rem 0.72rem;
  }

  .search-bar button {
    align-self: stretch;
    justify-self: end;
    justify-content: center;
    width: auto;
    min-width: 2.7rem;
    max-width: 100%;
    margin: 0.18rem;
    padding: 0 0.72rem;
  }

  .search-bar button span {
    display: none;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    max-width: 100%;
    min-width: 0;
    justify-self: end;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .header-account__link {
    display: none;
  }

  .header-account__mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    min-height: 2rem;
    gap: 0;
    padding: 0;
    border: 1px solid rgba(var(--bordersoft-rgb), 0.88);
    border-radius: 999px;
    background: rgba(var(--bgsoft-rgb), 0.52);
    color: var(--deep-teal);
    box-shadow: 0 6px 12px rgba(var(--textdark-rgb), 0.04);
    flex: 0 0 auto;
  }

  .header-account__mobile-link svg {
    width: 16px;
    height: 16px;
  }

  .header-account__mobile-link:hover,
  .header-account__mobile-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(var(--secondary-rgb), 0.82);
    box-shadow: 0 12px 20px rgba(var(--textdark-rgb), 0.08);
    color: var(--deep-teal);
    outline: none;
  }

  .header-browse {
    position: relative;
    margin-top: 0.54rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .header-browse::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2.6rem;
    height: calc(100% - 0.04rem);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(247, 252, 252, 0.84) 58%, rgba(255, 255, 255, 0.98) 100%);
    pointer-events: none;
    opacity: 0.92;
  }

  .category-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0.44rem;
    padding: 0 0.78rem 0.24rem 0.72rem;
    scroll-padding-inline: 0.72rem;
  }

.category-nav > a,
.category-nav > .category-pill-dropdown > a,
.category-nav > .category-pill-dropdown > button {
  min-height: 36px;
  padding: 0.44rem 0.74rem;
}

  .category-nav > a:last-child {
    margin-right: 0.22rem;
  }

  .category-nav > a,
  .category-nav > .category-pill-dropdown {
    flex: 0 0 auto;
  }

  .category-nav > a.category-pill-popular {
    display: inline-flex;
    border-color: rgba(var(--secondary-rgb), 0.72);
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.18), rgba(255, 255, 255, 0.96));
    color: var(--text-dark);
    box-shadow: 0 10px 18px rgba(var(--textdark-rgb), 0.06);
  }

  .category-nav > a.category-pill-popular svg {
    color: var(--deep-teal);
  }

  .category-pill-dropdown-menu {
    display: none;
  }

  .compact-header-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .compact-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
  }

  .compact-search input {
    width: 100%;
    min-width: 0;
  }

  .compact-search button {
    justify-content: center;
    width: auto;
    min-width: 2.4rem;
  }

  .hero-panel {
    position: relative;
    background: none;
    border: none;
  }

  .home-main-stack {
    gap: 0.36rem;
  }

  .hero-panel::after {
    content: none;
  }

  .hero-copy {
    position: relative;
    padding: 0;
    border-radius: inherit;
  }

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

  .hero-copy > :not(.hero-mobile-visual) {
    display: none;
  }

  .hero-mobile-visual {
    display: block;
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 25rem;
    line-height: 0;
    margin-top: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
    border-radius: inherit;
    z-index: auto;
    pointer-events: auto;
    text-decoration: none;
  }

.hero-mobile-scene {
  display: block;
  width: 109%;
  max-width: none;
  height: auto;
  margin-left: -4.5%;
  margin-top: -14px;
  object-position: center top;
  border-radius: inherit;
}

.mobile-service-cards {
  display: none;
}

.mobile-service-card {
  text-decoration: none;
}

.hero-cta-label--desktop,
.hero-link-label--desktop {
  display: none;
  }

  .hero-cta-label--mobile,
  .hero-link-label--mobile {
    display: inline;
  }

  .hero-visual {
    display: none;
  }

  .hero-panel,
  .hero-copy,
  .hero-copy p {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

.mobile-service-cards {
    display: none;
  }

  .mobile-service-cards .mobile-service-card {
    display: block;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
    box-shadow: none;
  }

  .mobile-service-cards .mobile-service-card__image {
    display: block;
    width: 108%;
    max-width: none;
    height: auto;
    margin-left: -4%;
    margin-top: -3%;
    border-radius: inherit;
  }
}

@media (max-width: 480px) {
  .home-showcase.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .home-showcase.hero > .home-main-stack {
    display: contents;
  }

  .home-showcase.hero > .home-main-stack > .hero-panel {
    order: 1;
  }

  .home-showcase.hero > .home-main-stack > .mobile-service-payment-banner {
    order: 0;
  }

  .home-showcase.hero > .home-main-stack > .hero-carousel-disclaimer--mobile {
    order: 2;
  }

  .home-showcase.hero > .home-main-stack > .mobile-prescriptions-chooser {
    order: 3;
  }

  .home-showcase.hero > .home-main-stack > .mobile-service-cards {
    order: 4;
  }

  .home-showcase.hero > .service-section {
    order: 4;
  }

  .home-showcase.hero > .hero-side {
    order: 5;
  }

  .home-showcase.hero > .category-section--compact {
    order: 6;
  }

  main {
    padding-bottom: 0.72rem;
  }

  .category-section--compact {
    padding: 0.82rem 0.78rem 0.76rem;
    border-radius: 24px;
    border-color: rgba(var(--bordersoft-rgb), 0.84);
    background:
      radial-gradient(circle at 86% 14%, rgba(var(--primary-rgb), 0.08), transparent 22%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(var(--bgsoft-rgb), 0.56));
    box-shadow: 0 16px 30px rgba(var(--textdark-rgb), 0.06);
  }

  .category-section--compact .section-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.62rem;
    margin-bottom: 0.7rem;
  }

  .category-section--compact .section-head h2 {
    font-size: 1.06rem;
  }

  .category-section--compact .section-head a {
    display: none;
  }

  .category-grid {
    display: none;
  }

  .category-grid-mobile-preview[hidden] {
    display: flex;
    gap: 0.64rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.02rem 0.12rem;
    scroll-padding-inline: 0.02rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category-grid-mobile-preview[hidden]::-webkit-scrollbar {
    display: none;
  }

  .category-mobile-preview-card {
    position: relative;
    flex: 0 0 71%;
    min-width: 0;
    min-height: 0;
    padding: 0;
    aspect-ratio: 4 / 3;
    display: block;
    border-radius: 20px;
    border: none;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
  }

  .category-mobile-preview-card__media {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: inherit;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
  }

  .category-mobile-preview-card__media::before,
  .category-mobile-preview-card__media::after {
    content: none;
  }

  .category-mobile-preview-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

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

  .category-mobile-preview-card--mens {
    background: transparent;
  }

  .category-mobile-preview-card--mens .category-mobile-preview-card__media {
    background: rgba(255, 255, 255, 0.98);
  }

  .category-mobile-preview-card--womens {
    background: transparent;
  }

  .category-mobile-preview-card--womens .category-mobile-preview-card__media {
    background: rgba(255, 255, 255, 0.98);
  }

  .category-mobile-preview-card--over-the-counter {
    background: transparent;
  }

  .category-mobile-preview-card--over-the-counter .category-mobile-preview-card__media {
    background: rgba(255, 255, 255, 0.98);
  }

  .category-arrow {
    display: none;
  }

  .category-arrow svg {
    width: 14px;
    height: 14px;
  }

  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.66rem;
  }

  .side-card-primary {
    padding: 1.04rem 0.98rem 1rem;
    border-radius: 26px;
    box-shadow: 0 18px 32px rgba(var(--textdark-rgb), 0.14);
  }

  .side-card-primary .side-card-icon {
    width: 58px;
    height: 58px;
    transform: none;
  }

  .side-card-primary .side-card-icon img {
    width: 54px;
    height: 54px;
  }

  .side-card-primary h3 {
    font-size: 1.04rem;
    line-height: 1.16;
  }

  .side-card-primary .side-card-copy > p:last-child {
    max-width: none;
  }

  .side-card-primary .side-card-cta {
    min-height: 42px;
    margin-top: 0.46rem;
    padding: 0 1rem;
  }

  .side-card:not(.side-card-primary) {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 0.56rem;
    min-height: 180px;
    padding: 0.94rem 0.78rem 0.9rem;
    border-radius: 22px;
    border-color: rgba(var(--bordersoft-rgb), 0.82);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(var(--bgsoft-rgb), 0.44));
    box-shadow: 0 12px 22px rgba(var(--textdark-rgb), 0.05);
    text-align: center;
  }

  .side-card:not(.side-card-primary) .side-card-icon {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(var(--bgsoft-rgb), 0.98), rgba(255, 255, 255, 0.94));
    box-shadow:
      inset 0 0 0 1px rgba(var(--secondary-rgb), 0.18),
      0 10px 16px rgba(var(--textdark-rgb), 0.055);
  }

  .side-card:not(.side-card-primary) .side-card-icon img {
    width: 46px;
    height: 46px;
  }

  .side-card:not(.side-card-primary) .side-card-copy {
    display: grid;
    align-content: start;
    justify-items: center;
    width: 100%;
    min-width: 0;
    gap: 0.16rem;
  }

  .side-card:not(.side-card-primary) h3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 2.45em;
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.24;
    overflow-wrap: anywhere;
  }

  .side-card:not(.side-card-primary) p {
    font-size: 0.78rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-side .side-card--service-payment {
    display: none;
  }

  .hero-side .side-card--trusted-products {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    gap: 0.72rem;
    min-height: auto;
    padding: 0.9rem 0.92rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(251, 255, 255, 0.995), rgba(var(--bgsoft-rgb), 0.5));
    text-align: left;
  }

  .hero-side .side-card--trusted-products .side-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }

  .hero-side .side-card--trusted-products .side-card-icon img {
    width: 42px;
    height: 42px;
  }

  .hero-side .side-card--trusted-products .side-card-copy {
    justify-items: start;
    gap: 0.14rem;
  }

  .hero-side .side-card--trusted-products h3 {
    min-height: 0;
    justify-content: flex-start;
    font-size: 0.95rem;
    line-height: 1.22;
  }

  .hero-side .side-card--trusted-products p {
    font-size: 0.78rem;
    line-height: 1.42;
    text-align: left;
  }

  .products-section {
    overflow: hidden;
  }

  .products-section .product-grid {
    display: flex;
    gap: 0.72rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0.02rem 0.36rem;
    scroll-padding-inline: 0.02rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-section .product-grid::-webkit-scrollbar {
    display: none;
  }

  .products-section .product-card {
    flex: 0 0 82%;
    min-width: 0;
    min-height: auto;
    scroll-snap-align: start;
    padding: 0.9rem 0.9rem 0.92rem;
    box-shadow: 0 16px 28px rgba(var(--textdark-rgb), 0.06);
  }

  .products-section .product-image {
    height: 146px;
    margin-bottom: 0.72rem;
  }

  .products-section .product-note {
    margin-top: 0.38rem;
    min-height: 2.9em;
    max-width: 92%;
  }

  .products-section .product-meta {
    padding-top: 0.8rem;
  }

  .service-mobile-carousel {
    display: flex;
  }

  .service-section .service-grid,
  .service-section .service-trust-strip {
    display: none;
  }

  .service-section {
    overflow: hidden;
    margin-top: 1rem;
  }

  .service-shell {
    overflow: visible;
    padding: 0;
    border-radius: 24px;
  }

  .service-section .service-card {
    display: flex;
    flex: 0 0 74%;
    min-height: 0;
    height: auto;
    max-height: none;
    min-width: 0;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: 20px;
  }

  .service-section .service-card h3 {
    font-size: 0.88rem;
    line-height: 1.14;
  }

  .service-section .service-card p {
    margin-top: 0.26rem;
    font-size: 0.73rem;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-section .service-card__cta {
    min-height: 28px;
    padding: 0 0.58rem;
    margin-top: 0.48rem;
    font-size: 0.68rem;
    align-self: flex-start;
  }

  .service-section .service-card--featured {
    min-height: 198px;
  }

  .service-section .service-card--featured .service-card__content {
    width: 100%;
    max-width: none;
    min-height: 100%;
    justify-content: space-between;
    padding: 0.68rem 32% 0.6rem 0.7rem;
  }

  .service-section .service-card--featured .service-card__badge {
    min-height: 19px;
    padding: 0 0.38rem;
    margin-bottom: 0.4rem;
    font-size: 0.56rem;
  }

  .service-section .service-card--featured .service-card__copy {
    max-width: 14ch;
  }

  .service-section .service-card--standard {
    min-height: 180px;
  }

  .service-section .service-card--standard .service-card__visual {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 66px;
    padding: 0 0.34rem 0 0.14rem;
  }

  .service-section .service-card--standard .service-card__content {
    padding: 0.56rem 0.62rem 0.6rem;
  }

  .service-section .service-card--standard .service-card__copy {
    margin-top: 0.18rem;
  }

  .service-section .service-head {
    margin-bottom: 0.42rem;
  }

  .service-section .service-head h2 {
    font-size: 0;
    line-height: 1;
    margin: 0;
  }

  .service-section .section-intro,
  .service-section .service-intro {
    margin: 0 0 0.56rem;
    font-size: 0.74rem;
    line-height: 1.34;
  }

  .service-section .service-card__icon-badge {
    width: 32px;
    height: 32px;
  }

  .service-section .service-card__icon-badge svg {
    width: 15px;
    height: 15px;
  }

  .service-section .service-card--featured .service-card__image {
    transform: scale(0.98);
    object-position: 90% 60%;
  }

  .service-section .service-card--featured .service-card__visual::before {
    background: linear-gradient(90deg, rgba(6, 72, 78, 0.78) 0%, rgba(6, 72, 78, 0.68) 36%, rgba(6, 72, 78, 0.26) 72%, rgba(6, 72, 78, 0.04) 100%);
  }

  .service-section .service-card--standard .service-card__image {
    width: 68%;
    max-width: 68%;
    height: 100%;
    margin-left: auto;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
