/* Shared public storefront control polish. Keeps commerce behaviour and page structure unchanged. */
:root {
  --ui-radius: 11px;
  --ui-control-height: 46px;
  --ui-transition: 220ms cubic-bezier(.2,.7,.2,1);
  --ui-teal-highlight: #1b514b;
  --ui-warm: #faf9f6;
  --ui-glass-surface: rgba(8, 49, 44, .84);
  --ui-glass-surface-hover: rgba(12, 65, 57, .94);
  --ui-glass-border: rgba(231, 239, 232, .54);
  --ui-glass-border-hover: rgba(255, 255, 250, .84);
  --ui-glass-text: #fbfaf5;
  --ui-glass-highlight: inset 0 1px 0 rgba(255, 255, 255, .27);
  --ui-glass-shadow: 0 8px 22px rgba(4, 31, 28, .16);
  --ui-glass-shadow-hover: 0 11px 26px rgba(4, 31, 28, .2);
  --ui-glass-gleam: linear-gradient(112deg, transparent 26%, rgba(255,255,255,.04) 39%, rgba(255,255,255,.34) 48%, rgba(255,255,255,.05) 57%, transparent 70%);
  --product-photo-surface: #f8f3f0;
  --product-photo-surface-fill: linear-gradient(180deg, #faf6f3 0%, #f8f3f0 54%, #f6efeb 100%);
}

.lynx-glass-button,
.button,
.btn,
.purchase-add,
.checkout-payment,
.bac-upsell__action,
.shop-card__action,
.product-action,
.card .view,
.card-body > a,
.basket-actions > a,
.homehero--cinematic .hero-secondary {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: var(--ui-control-height);
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  padding: 0 18px;
  border: 1px solid var(--ui-glass-border);
  border-radius: var(--ui-radius);
  background: var(--ui-glass-surface);
  box-shadow: var(--ui-glass-highlight), var(--ui-glass-shadow);
  color: var(--ui-glass-text);
  -webkit-backdrop-filter: blur(11px) saturate(118%);
  backdrop-filter: blur(11px) saturate(118%);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--ui-transition), border-color var(--ui-transition), color var(--ui-transition), transform var(--ui-transition), box-shadow var(--ui-transition);
}

.lynx-glass-button::before,
.button::before,
.btn::before,
.purchase-add::before,
.checkout-payment::before,
.bac-upsell__action::before,
.shop-card__action::before,
.product-action::before,
.card .view::before,
.card-body > a::before,
.basket-actions > a::before,
.homehero--cinematic .hero-secondary::before {
  position: absolute;
  z-index: 0;
  inset: -35% -58%;
  content: "";
  pointer-events: none;
  background: var(--ui-glass-gleam);
  transform: translateX(-78%) skewX(-8deg);
}

/* Resolve the older, more specific card action rules without escalating globally. */
.card .product-action,
.card .view {
  min-height: var(--ui-control-height);
  padding: 0 18px;
  border-color: var(--ui-glass-border);
  border-radius: var(--ui-radius);
  background: var(--ui-glass-surface);
  box-shadow: var(--ui-glass-highlight), var(--ui-glass-shadow);
  color: var(--ui-glass-text);
}

@keyframes lynx-glass-gleam {
  from { transform: translateX(-78%) skewX(-8deg); }
  to { transform: translateX(78%) skewX(-8deg); }
}

.lynx-glass-button:hover,
.button:hover,
.btn:hover,
.purchase-add:hover:not(:disabled),
.checkout-payment:hover:not(:disabled),
.bac-upsell__action:hover:not(:disabled),
.shop-card__action:hover,
.product-action:hover,
.card .view:hover,
.card-body > a:hover,
.basket-actions > a:hover,
.homehero--cinematic .hero-secondary:hover {
  border-color: var(--ui-glass-border-hover);
  background: var(--ui-glass-surface-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--ui-glass-highlight), var(--ui-glass-shadow-hover);
}

.lynx-glass-button:hover::before,
.lynx-glass-button:focus-visible::before,
.button:hover::before,
.button:focus-visible::before,
.btn:hover::before,
.btn:focus-visible::before,
.purchase-add:hover:not(:disabled)::before,
.purchase-add:focus-visible:not(:disabled)::before,
.checkout-payment:hover:not(:disabled)::before,
.checkout-payment:focus-visible:not(:disabled)::before,
.bac-upsell__action:hover:not(:disabled)::before,
.bac-upsell__action:focus-visible:not(:disabled)::before,
.shop-card__action:hover::before,
.shop-card__action:focus-visible::before,
.product-action:hover::before,
.product-action:focus-visible::before,
.card .view:hover::before,
.card .view:focus-visible::before,
.card-body > a:hover::before,
.card-body > a:focus-visible::before,
.basket-actions > a:hover::before,
.basket-actions > a:focus-visible::before,
.homehero--cinematic .hero-secondary:hover::before,
.homehero--cinematic .hero-secondary:focus-visible::before {
  animation: lynx-glass-gleam 600ms ease-out both;
}

.lynx-glass-button:focus-visible,
.button:focus-visible,
.btn:focus-visible,
.purchase-add:focus-visible,
.checkout-payment:focus-visible,
.bac-upsell__action:focus-visible,
.product-action:focus-visible,
.shop-card__action:focus-visible,
.card .view:focus-visible,
.card-body > a:focus-visible,
.basket-actions a:focus-visible,
.basket-item__remove:focus-visible,
.basket-clear:focus-visible {
  outline: 2px solid var(--lynx);
  outline-offset: 3px;
}

/* Preserve the completed photographic hero while sharing the glass control system. */
.homehero--cinematic .button,
.homehero--cinematic .btn,
.homehero--cinematic .hero-secondary {
  box-shadow: var(--ui-glass-highlight), var(--ui-glass-shadow);
}

.shop-card__action span,
.product-action span,
.card .view span,
.card-body > a span,
.basket-actions > a span {
  transition: transform var(--ui-transition);
}

.shop-card__action:hover span,
.shop-card__action:focus-visible span,
.product-action:hover span,
.product-action:focus-visible span,
.card .view:hover span,
.card .view:focus-visible span,
.card-body > a:hover span,
.card-body > a:focus-visible span,
.basket-actions > a:hover span,
.basket-actions > a:focus-visible span {
  transform: translateX(3px);
}

.image,
.product-img,
.card-image,
.shop-card__image,
.basket-item__image {
  border-radius: var(--ui-radius);
}

.image,
.product-img,
.card-image {
  display: grid;
  min-height: 0;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f2ec;
  text-decoration: none;
}

.card-image.sage {
  background: var(--wash);
}

.vial,
.catalogue-vial,
.mini {
  position: relative;
  width: 28%;
  min-width: 72px;
  max-width: 128px;
  height: 58%;
  min-height: 144px;
  max-height: 270px;
  border: 1px solid #c5c8c1;
  border-radius: 3px 3px 8px 8px;
  background: #fffdf8;
  box-shadow: 10px 16px 18px rgba(24, 35, 31, .12);
}

.vial::before,
.catalogue-vial::before,
.mini::before {
  position: absolute;
  top: -15px;
  left: 14%;
  width: 72%;
  height: 17px;
  border: 1px solid #a8aea5;
  border-bottom: 0;
  background: #34433f;
  content: "";
}

.label,
.catalogue-vial__label {
  position: absolute;
  right: 8%;
  bottom: 12%;
  left: 8%;
  padding: 8px 5px;
  border-block: 1px solid #d6d5cc;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.label small,
.catalogue-vial__label small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.card,
.shop-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
}

.card-body {
  display: flex;
  min-height: 138px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--s4);
}

.card h2,
.card h3,
.product-card__name {
  min-height: 38px;
  margin: var(--s1) 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.card h2 a,
.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card .type {
  min-height: 18px;
}

.card .product-action,
.card .view {
  width: auto;
  margin-top: auto;
}

.card .product-action::after,
.card .view::after {
  display: none;
}

.product-render,
.rt3-render {
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(12px 18px 15px rgba(24, 35, 31, .14));
  transition: transform .2s ease;
}

.card:hover .product-render,
.card:hover .rt3-render {
  transform: scale(1.02);
}

.product-picture {
  display: contents;
}

.card h2 a:hover,
.card h3 a:hover,
.shop-card h2 a:hover,
.basket-item__details h2 a:hover {
  color: var(--lynx);
}

/* Canonical Shop listing. These rules own the current shop-specific markup. */
.shop-main {
  padding-bottom: var(--s9);
}

.shop-intro {
  padding: var(--s8) 0 var(--s5);
}

.shop-intro__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s5);
}

.shop-intro h1 {
  margin: 0 0 var(--s3);
}

.shop-intro__heading > div > p {
  margin: 0;
  font-size: 16px;
}

.shop-intro__count {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.shop-category-nav {
  display: flex;
  gap: var(--s5);
  padding-top: var(--s6);
  border-bottom: 1px solid var(--line);
}

.shop-category-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: flex-start;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.shop-category-nav a:hover,
.shop-category-nav a[aria-current="page"] {
  border-color: var(--lynx);
  color: var(--lynx);
}

.shop-products {
  padding-top: var(--s6);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s7) var(--s5);
}

.shop-card__image {
  display: grid;
  min-height: 0;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--wash);
  text-decoration: none;
}

.shop-card__image .vial {
  width: 30%;
  min-width: 72px;
  max-width: 116px;
  height: 60%;
  min-height: 148px;
  max-height: 250px;
}

.shop-card__image .product-render,
.shop-card__image .rt3-render {
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  transition: transform .24s ease;
}

.shop-card__body {
  display: flex;
  min-height: 154px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-top: var(--s4);
}

.shop-card__type {
  min-height: 18px;
  margin: 0 0 var(--s1);
  color: var(--lynx);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.shop-card h2 {
  min-height: 38px;
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.shop-card h2 a {
  color: inherit;
  text-decoration: none;
}

.product-card__stock {
  display: inline-flex;
  min-height: 18px;
  align-items: center;
  gap: 7px;
  margin: 6px 0 0;
  color: #697570;
  font: 600 12px/1.35 var(--font-body, Inter, sans-serif);
}

.product-card__stock::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #a1aaa6;
  content: "";
}

.product-card__stock[data-stock-state="in-stock"] {
  color: #24694f;
}

.product-card__stock[data-stock-state="in-stock"]::before {
  background: #2f8a65;
}

.shop-card__format {
  min-height: 22px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.shop-card__action {
  margin-top: auto;
}

@media (hover: hover) {
  .shop-card:hover .shop-card__image .product-render,
  .shop-card:hover .shop-card__image .rt3-render {
    transform: translateY(-3px) scale(1.012);
  }
}

.shop-card__image:focus-visible,
.shop-card h2 a:focus-visible,
.shop-card__action:focus-visible,
.shop-category-nav a:focus-visible {
  outline: 2px solid var(--lynx);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s6) var(--s4);
  }
}

@media (max-width: 760px) {
  .shop-main {
    padding-bottom: var(--s8);
  }

  .shop-intro {
    padding: var(--s7) 0 var(--s4);
  }

  .shop-intro__heading {
    align-items: start;
    flex-direction: column;
    gap: var(--s2);
  }

  .shop-intro__heading > div > p {
    font-size: 15px;
  }

  .shop-intro__count {
    margin: 0;
  }

  .shop-category-nav {
    gap: var(--s4);
    margin-inline: calc(var(--page-gutter) * -1);
    padding: var(--s5) var(--page-gutter) 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .shop-category-nav a {
    min-height: 38px;
    font-size: 13px;
  }

  .shop-products {
    padding-top: var(--s5);
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s6) var(--s3);
  }

  .shop-card__body {
    min-height: 166px;
  }

  .shop-card h2 {
    min-height: auto;
    font-size: 17px;
  }

  .shop-card__type {
    font-size: 11px;
  }

  .shop-card__format {
    font-size: 13px;
  }

  .shop-card__image .vial {
    min-width: 62px;
    min-height: 126px;
  }
}

@media (max-width: 360px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-card__image .vial {
    min-width: 78px;
    min-height: 150px;
  }

  .shop-card h2 {
    font-size: 19px;
  }
}

.product-popular-badge {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: none;
}

/* Homepage Best Selling Peptides. Scoped to avoid changing More Peptides or listings. */
.home-main .best-sellers-section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(48px, 5vw, 64px);
  border-bottom: 1px solid rgba(23, 49, 44, .12);
  background: #f5f2eb;
  box-shadow: 0 0 0 100vmax #f5f2eb;
  clip-path: inset(0 -100vmax);
}

.home-main .best-sellers-section .topline {
  align-items: center;
  margin-bottom: 26px;
}

.home-main .best-sellers-section .topline h2 {
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(34px, 3.45vw, 48px);
  font-weight: 750;
  letter-spacing: -.052em;
  line-height: .98;
}

.home-main .best-sellers-section .topline > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  color: var(--lynx);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.home-main .best-sellers-section .topline > a::after {
  content: "\2192";
  font-size: 17px;
  font-weight: 500;
  transition: transform var(--ui-transition);
}

.home-main .best-sellers-section .topline > a:hover::after,
.home-main .best-sellers-section .topline > a:focus-visible::after {
  transform: translateX(4px);
}

.home-main .best-sellers-section .topline > a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--lynx);
  outline-offset: 4px;
}

.home-main .best-sellers-section .cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(13px, 1.55vw, 19px);
}

.home-main .best-sellers-section .card {
  overflow: hidden;
  border: 1px solid rgba(25, 57, 51, .14);
  border-radius: 13px;
  background: rgba(252, 250, 245, .82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 9px 25px rgba(25, 42, 37, .055);
}

.home-main .best-sellers-section .product-img {
  position: relative;
  aspect-ratio: 1.12 / 1;
  border-radius: 0;
  background: #eeeae2;
}

.home-main .best-sellers-section .product-img::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(18, 63, 58, .1);
}

.home-main .best-sellers-section .product-img .product-render,
.home-main .best-sellers-section .product-img .rt3-render {
  max-width: 84%;
  max-height: 88%;
}

.home-main .best-sellers-section .product-img .vial {
  width: 34%;
  min-width: 76px;
  height: 67%;
  min-height: 132px;
  max-height: 220px;
}

.home-main .best-sellers-section .card-body {
  min-height: 184px;
  padding: 17px 17px 16px;
}

.home-main .best-sellers-section .card .type {
  min-height: 16px;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: .06em;
}

.home-main .best-sellers-section .card h3 {
  min-height: auto;
  margin: 0 0 4px;
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.home-main .best-sellers-section .format {
  margin-bottom: 14px;
  font-size: 13px;
}

.home-main .best-sellers-section .product-action::after {
  display: inline-block;
  margin-left: 2px;
  content: "\2192";
  font-size: 16px;
  font-weight: 500;
  transition: transform var(--ui-transition);
}

.home-main .best-sellers-section .product-action:hover::after,
.home-main .best-sellers-section .product-action:focus-visible::after {
  transform: translateX(3px);
}

.home-main .best-sellers-section .product-popular-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  overflow: hidden;
  padding: 6px 9px;
  border: 1px solid rgba(241, 245, 238, .62);
  border-radius: 9px;
  background: rgba(7, 49, 43, .86);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.27), 0 6px 15px rgba(7,35,31,.12);
  color: #fbfaf5;
  -webkit-backdrop-filter: blur(9px) saturate(116%);
  backdrop-filter: blur(9px) saturate(116%);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.home-main .best-sellers-section .product-popular-badge::after {
  position: absolute;
  inset: -45% -80%;
  content: "";
  pointer-events: none;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.3) 49%, transparent 64%);
  transform: translateX(-72%) skewX(-10deg);
}

@media (hover: hover) {
  .home-main .best-sellers-section .card:hover .product-popular-badge::after {
    animation: lynx-popular-gleam 700ms ease-out both;
  }
}

@keyframes lynx-popular-gleam {
  from { transform: translateX(-72%) skewX(-10deg); }
  to { transform: translateX(72%) skewX(-10deg); }
}

@media (max-width: 820px) {
  .home-main .best-sellers-section {
    padding-block: 44px 52px;
  }

  .home-main .best-sellers-section .topline {
    margin-bottom: 20px;
  }

  .home-main .best-sellers-section .topline h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .home-main .best-sellers-section .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .home-main .best-sellers-section .card-body {
    min-height: 176px;
    padding: 14px 14px 13px;
  }

  .home-main .best-sellers-section .product-img .vial {
    min-width: 66px;
    min-height: 112px;
  }
}

@media (max-width: 480px) {
  .home-main .best-sellers-section .topline {
    align-items: flex-end;
    gap: 14px;
  }

  .home-main .best-sellers-section .topline h2 {
    max-width: 220px;
  }

  .home-main .best-sellers-section .topline > a {
    min-height: 36px;
    font-size: 12px;
  }

  .home-main .best-sellers-section .cards {
    gap: 12px;
  }

  .home-main .best-sellers-section .card-body {
    min-height: 172px;
    padding: 13px 12px 12px;
  }

  .home-main .best-sellers-section .card h3 {
    font-size: 17px;
  }

  .home-main .best-sellers-section .product-action {
    padding-inline: 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .home-main .best-sellers-section .product-popular-badge {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-main .best-sellers-section .topline > a::after,
  .home-main .best-sellers-section .product-action::after {
    transition: none;
  }

  .home-main .best-sellers-section .product-popular-badge::after {
    display: none;
    animation: none;
  }
}

/* Homepage FAQ: dark editorial pause before the light contact section. */
.home-main .home-faq {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 64px var(--page-gutter);
  overflow: hidden;
  color: #f6f2e9;
  background-color: #071b19;
  background-image: linear-gradient(122deg, #061714 0%, #0b2925 52%, #071c19 100%);
}

.home-main .home-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(23deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(109deg, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px 7px);
  background-size: 7px 9px, 11px 13px;
}

.home-main .home-faq__inner {
  width: min(100%, 920px);
  max-width: 920px;
  margin-inline: auto;
}

.home-main .home-faq h2 {
  margin: 0 0 32px;
  color: #f8f4eb;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-main .home-faq details {
  margin: 0;
  overflow: clip;
  border: 1px solid rgba(218, 232, 225, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color 210ms ease, background-color 210ms ease;
}

.home-main .home-faq details + details {
  margin-top: 10px;
}

.home-main .home-faq details:last-child {
  border-bottom: 1px solid rgba(218, 232, 225, 0.24);
}

.home-main .home-faq details:hover,
.home-main .home-faq details[open] {
  border-color: rgba(226, 239, 232, 0.43);
  background-color: rgba(255, 255, 255, 0.075);
}

.home-main .home-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 64px 18px 22px;
  color: #f8f4eb;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -0.015em;
  text-indent: 0;
  cursor: pointer;
  list-style: none;
  transition: color 210ms ease, text-indent 210ms ease;
}

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

.home-main .home-faq details:hover summary {
  text-indent: 2px;
}

.home-main .home-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(235, 241, 236, 0.34);
  border-radius: 50%;
  place-items: center;
  color: #f8f4eb;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-indent: 0;
  transform: translateY(-50%);
  transition: border-color 210ms ease, background-color 210ms ease, transform 210ms ease;
}

.home-main .home-faq details[open] summary::after {
  content: "\2212";
  border-color: rgba(235, 241, 236, 0.55);
  background-color: rgba(161, 191, 177, 0.17);
}

.home-main .home-faq summary:focus-visible {
  outline: 2px solid rgba(226, 239, 232, 0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

.home-main .home-faq .faq-answer {
  padding: 0 64px 22px 22px;
  color: #cbd5cf;
}

.home-main .home-faq .faq-answer p {
  max-width: 760px;
  margin: 0;
  color: inherit;
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 16px;
  line-height: 1.65;
}

.home-main .home-faq details[open] .faq-answer {
  animation: lynx-dark-faq-reveal 220ms ease-out both;
}

@keyframes lynx-dark-faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .home-main .home-faq {
    padding-block: 56px;
  }

  .home-main .home-faq h2 {
    margin-bottom: 28px;
    font-size: clamp(34px, 9vw, 46px);
  }

  .home-main .home-faq summary {
    min-height: 68px;
    padding: 16px 58px 16px 18px;
    font-size: 17px;
  }

  .home-main .home-faq summary::after {
    right: 16px;
    width: 30px;
    height: 30px;
  }

  .home-main .home-faq .faq-answer {
    padding: 0 58px 20px 18px;
  }
}

@media (max-width: 480px) {
  .home-main .home-faq {
    padding-block: 48px;
  }

  .home-main .home-faq details + details {
    margin-top: 8px;
  }

  .home-main .home-faq summary {
    min-height: 64px;
    padding-right: 54px;
    font-size: 16px;
  }

  .home-main .home-faq .faq-answer {
    padding-right: 18px;
  }

  .home-main .home-faq .faq-answer p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-main .home-faq details,
  .home-main .home-faq summary,
  .home-main .home-faq summary::after {
    transition: none;
  }

  .home-main .home-faq details[open] .faq-answer {
    animation: none;
  }

  .home-main .home-faq details:hover summary {
    text-indent: 0;
  }
}

/* Homepage Shop by Category. Isolated from collection pages and other homepage cards. */
.home-main .category-merch {
  position: relative;
  padding-block: clamp(52px, 5.5vw, 64px);
  border-block: 1px solid rgba(29, 64, 57, .12);
  background: #e9f0e9;
}

.home-main .category-merch h2 {
  margin: 0 0 30px;
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(36px, 3.65vw, 50px);
  font-weight: 700;
  letter-spacing: -.054em;
  line-height: .98;
}

.home-main .category-merch__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(330px, .82fr);
  gap: 18px;
  align-items: stretch;
}

.home-main .category-merch__side {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 1.06fr .9fr 1.04fr;
  gap: 14px;
}

.home-main .category-tile {
  position: relative;
  isolation: isolate;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 68, 59, .17);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 11px 28px rgba(22, 53, 45, .065);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.home-main .category-tile::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.46);
  content: "";
  pointer-events: none;
}

.home-main .category-tile--featured {
  min-height: 580px;
  background: #f6f3eb;
}

.home-main .category-tile--blends,
.home-main .category-tile--core {
  background: #f2f5ef;
}

.home-main .category-tile--neuro {
  background: #f7f4ed;
}

.home-main .category-tile__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.home-main .category-tile__copy {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 20px;
  display: flex;
  max-width: 62%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.home-main .category-tile__copy::before {
  color: var(--lynx);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.home-main .category-tile--featured .category-tile__copy {
  top: 34px;
  bottom: auto;
  left: 34px;
  max-width: 45%;
}

.home-main .category-tile--featured .category-tile__copy::before {
  content: "01 / Metabolic";
}

.home-main .category-tile--blends .category-tile__copy::before {
  content: "02 / Blends";
}

.home-main .category-tile--neuro .category-tile__copy::before {
  content: "03 / Neuropeptides";
}

.home-main .category-tile--core .category-tile__copy::before {
  content: "04 / Peptides";
}

.home-main .category-tile__title {
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(24px, 2.35vw, 32px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.home-main .category-tile--featured .category-tile__title {
  font-size: clamp(42px, 4.15vw, 58px);
  line-height: .94;
}

.home-main .category-tile__action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 0 12px;
  border: 1px solid rgba(232, 240, 233, .56);
  border-radius: 10px;
  background: rgba(8, 53, 47, .84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 6px 16px rgba(7,35,31,.12);
  color: #fbfaf5;
  -webkit-backdrop-filter: blur(9px) saturate(114%);
  backdrop-filter: blur(9px) saturate(114%);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.home-main .category-tile__action::before {
  position: absolute;
  z-index: 0;
  inset: -45% -75%;
  content: "";
  pointer-events: none;
  background: var(--ui-glass-gleam);
  transform: translateX(-76%) skewX(-8deg);
}

.home-main .category-tile__action b {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  transition: transform 220ms ease;
}

.home-main .category-tile__render {
  position: absolute;
  right: 4%;
  bottom: 18px;
  width: min(60%, 430px);
  max-width: none;
  max-height: calc(100% - 36px);
  object-fit: contain;
  filter: drop-shadow(18px 24px 17px rgba(20,30,28,.15));
  transition: transform 220ms ease;
}

.home-main .category-tile--featured .category-tile__render {
  right: 3%;
  bottom: 16px;
  width: min(58%, 470px);
  max-height: calc(100% - 30px);
}

.home-main .category-tile__media .vial {
  position: absolute;
  right: 9%;
  bottom: 17px;
  width: 26%;
  min-width: 76px;
  max-width: 110px;
  height: 70%;
  min-height: 126px;
  max-height: 220px;
  transform: rotate(4deg);
  transition: transform 220ms ease;
}

.home-main .category-tile--neuro .category-tile__media .vial {
  right: 12%;
  height: 66%;
  transform: rotate(-4deg);
}

.home-main .category-tile--core .category-tile__media .vial {
  right: 8%;
  height: 69%;
}

@media (hover: hover) {
  .home-main .category-tile:hover {
    border-color: rgba(33, 88, 76, .34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.78), 0 13px 30px rgba(22,53,45,.085);
  }

  .home-main .category-tile:hover .category-tile__render {
    transform: translateY(-3px) scale(1.008);
  }

  .home-main .category-tile:hover .category-tile__media .vial {
    transform: translateY(-3px) rotate(4deg);
  }

  .home-main .category-tile--neuro:hover .category-tile__media .vial {
    transform: translateY(-3px) rotate(-4deg);
  }

  .home-main .category-tile:hover .category-tile__action::before {
    animation: lynx-glass-gleam 600ms ease-out both;
  }

  .home-main .category-tile:hover .category-tile__action b {
    transform: translateX(3px);
  }
}

.home-main .category-tile:focus-visible {
  border-color: var(--lynx);
  outline: 2px solid var(--lynx);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .home-main .category-merch {
    padding-block: 52px 60px;
  }

  .home-main .category-merch__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-main .category-tile--featured {
    min-height: 500px;
  }

  .home-main .category-merch__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 250px 238px;
    gap: 14px;
  }

  .home-main .category-tile--core {
    grid-column: 1 / -1;
  }

  .home-main .category-tile__copy {
    max-width: 64%;
  }

  .home-main .category-tile__media .vial {
    right: 10%;
    width: 25%;
  }
}

@media (max-width: 560px) {
  .home-main .category-merch {
    padding-block: 48px 56px;
  }

  .home-main .category-merch h2 {
    margin-bottom: 22px;
    font-size: clamp(34px, 10.4vw, 42px);
  }

  .home-main .category-tile--featured {
    min-height: 430px;
  }

  .home-main .category-merch__side {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .home-main .category-tile--core {
    grid-column: auto;
  }

  .home-main .category-tile--featured .category-tile__copy {
    top: 24px;
    left: 22px;
    max-width: 58%;
  }

  .home-main .category-tile--featured .category-tile__title {
    font-size: clamp(37px, 11.4vw, 46px);
  }

  .home-main .category-tile__copy {
    bottom: 18px;
    left: 18px;
    max-width: 60%;
  }

  .home-main .category-tile__title {
    font-size: 25px;
  }

  .home-main .category-tile--featured .category-tile__render {
    right: 1%;
    width: min(66%, 300px);
  }

  .home-main .category-tile__media .vial {
    right: 11%;
    width: 24%;
    min-width: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-main .category-tile,
  .home-main .category-tile__render,
  .home-main .category-tile__media .vial,
  .home-main .category-tile__action b {
    transition: none;
  }

  .home-main .category-tile__action::before {
    display: none;
    animation: none;
  }
}

/* Homepage evidence region. */
.home-main .home-evidence {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  padding-block: 64px;
  border-bottom: 1px solid rgba(39, 67, 60, .14);
}

.home-main .home-evidence__intro {
  max-width: 480px;
}

.home-main .home-evidence__intro .eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .06em;
}

.home-main .home-evidence__intro h2 {
  margin: 0;
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .98;
}

.home-main .home-evidence__intro > p:not(.eyebrow) {
  max-width: 460px;
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-main .home-evidence__points {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(39, 67, 60, .18);
  list-style: none;
}

.home-main .home-evidence__points li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(39, 67, 60, .18);
}

.home-main .home-evidence__points li > span {
  padding-top: 3px;
  color: var(--lynx);
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.home-main .home-evidence__points strong {
  display: block;
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 19px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.home-main .home-evidence__points p {
  max-width: 560px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-main .home-evidence .button {
  min-height: 46px;
}

.home-main .home-faq .eyebrow {
  color: rgba(224, 236, 229, .78);
  font-size: 12px;
  letter-spacing: .06em;
}

@media (max-width: 820px) {
  .home-main .home-evidence {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 56px;
  }

  .home-main .home-evidence__intro {
    max-width: 620px;
  }
}

@media (max-width: 480px) {
  .home-main .home-evidence {
    gap: 32px;
    padding-block: 48px;
  }

  .home-main .home-evidence__intro h2 {
    font-size: 38px;
  }

  .home-main .home-evidence__points li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }
}

/* Legacy documentation rules remain isolated from the streamlined evidence markup. */
/* Homepage Product Documentation. Scoped to the rebuilt credibility section only. */
.home-main .home-documentation {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(350px, .86fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: center;
  padding-block: clamp(68px, 7vw, 92px);
  border-block: 1px solid rgba(64, 57, 45, .12);
  background: #f4efe6;
  box-shadow: 0 0 0 100vmax #f4efe6;
  clip-path: inset(0 -100vmax);
}

.home-main .home-documentation__visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(49, 70, 62, .16);
  border-radius: 16px;
  background-color: #e8e2d7;
  background-image: repeating-linear-gradient(0deg, transparent 0 31px, rgba(18,63,58,.035) 31px 32px), repeating-linear-gradient(90deg, transparent 0 31px, rgba(18,63,58,.028) 31px 32px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 14px 34px rgba(40, 43, 36, .075);
}

.home-main .home-documentation__visual::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  content: "";
  pointer-events: none;
}

.home-main .home-documentation__sheet {
  position: absolute;
  z-index: 1;
  top: 38px;
  left: 36px;
  display: flex;
  width: min(58%, 380px);
  min-height: 365px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(32, 67, 58, .16);
  border-radius: 12px;
  background: rgba(252, 250, 245, .93);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 13px 28px rgba(35, 46, 40, .085);
}

.home-main .home-documentation__sheet-label {
  margin-bottom: 30px;
  color: var(--lynx);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-main .home-documentation__sheet > strong {
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(23px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}

.home-main .home-documentation__sheet-lines {
  display: grid;
  gap: 7px;
  padding-block: 25px;
}

.home-main .home-documentation__sheet-lines span {
  display: block;
  height: 1px;
  background: rgba(18,63,58,.2);
}

.home-main .home-documentation__sheet-lines span:nth-child(1) { width: 88%; }
.home-main .home-documentation__sheet-lines span:nth-child(2) { width: 68%; }
.home-main .home-documentation__sheet-lines span:nth-child(3) { width: 77%; }

.home-main .home-documentation__sheet-fields {
  display: grid;
  margin-top: auto;
  border-top: 1px solid rgba(18,63,58,.14);
}

.home-main .home-documentation__sheet-fields > span {
  display: grid;
  grid-template-columns: minmax(70px, .72fr) 1.28fr;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(18,63,58,.11);
}

.home-main .home-documentation__sheet-fields small,
.home-main .home-documentation__sheet-fields b {
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 10px;
  line-height: 1.25;
}

.home-main .home-documentation__sheet-fields small {
  color: #7a7c75;
}

.home-main .home-documentation__sheet-fields b {
  color: var(--lynx-deep);
  font-weight: 700;
}

.home-main .home-documentation__product {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 0;
  display: grid;
  width: min(47%, 310px);
  height: 91%;
  place-items: end center;
}

.home-main .home-documentation__product img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(18px 25px 18px rgba(20,30,28,.17));
}

.home-main .home-documentation__record {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 30px;
  display: grid;
  width: min(48%, 300px);
  gap: 5px;
  padding: 17px 18px;
  border: 1px solid rgba(230,240,232,.56);
  border-radius: 11px;
  background: rgba(7, 49, 43, .82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 10px 24px rgba(7,35,31,.16);
  color: #fbfaf5;
  -webkit-backdrop-filter: blur(11px) saturate(115%);
  backdrop-filter: blur(11px) saturate(115%);
}

.home-main .home-documentation__record span,
.home-main .home-documentation__record strong,
.home-main .home-documentation__record small {
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
}

.home-main .home-documentation__record span {
  color: rgba(247,248,242,.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-main .home-documentation__record strong {
  font-size: 14px;
  font-weight: 700;
}

.home-main .home-documentation__record small {
  color: rgba(247,248,242,.76);
  font-size: 11px;
}

.home-main .home-documentation__content {
  max-width: 470px;
}

.home-main .home-documentation__content h2 {
  margin: 0 0 18px;
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(40px, 4.05vw, 56px);
  font-weight: 700;
  letter-spacing: -.058em;
  line-height: .95;
}

.home-main .home-documentation__content > p {
  max-width: 440px;
  margin: 0 0 28px;
  color: #60635d;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
  font-size: 16px;
  line-height: 1.58;
}

.home-main .home-documentation__list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0 0 26px;
  border-top: 1px solid rgba(18,63,58,.17);
  list-style: none;
}

.home-main .home-documentation__list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18,63,58,.14);
}

.home-main .home-documentation__icon {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(18,63,58,.2);
  border-radius: 9px;
  background: rgba(255,255,252,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}

.home-main .home-documentation__icon::before,
.home-main .home-documentation__icon::after {
  position: absolute;
  content: "";
}

.home-main .home-documentation__list li:nth-child(1) .home-documentation__icon::before {
  inset: 8px 10px;
  border: 1px solid var(--lynx);
}

.home-main .home-documentation__list li:nth-child(1) .home-documentation__icon::after {
  top: 14px;
  left: 14px;
  width: 8px;
  height: 5px;
  border-block: 1px solid var(--lynx);
}

.home-main .home-documentation__list li:nth-child(2) .home-documentation__icon::before {
  inset: 9px 8px 7px 12px;
  border: 1px solid var(--lynx);
  box-shadow: -4px -3px 0 rgba(255,255,252,.72), -5px -4px 0 rgba(18,63,58,.55);
}

.home-main .home-documentation__list li:nth-child(3) .home-documentation__icon::before {
  inset: 8px;
  border: 1px solid var(--lynx);
  border-radius: 50%;
}

.home-main .home-documentation__list li:nth-child(3) .home-documentation__icon::after {
  top: 16px;
  left: 16px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lynx);
}

.home-main .home-documentation__list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.home-main .home-documentation__list p {
  margin: 0;
  color: #6b6d67;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .home-main .home-documentation {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 62px 72px;
  }

  .home-main .home-documentation__content {
    order: 1;
    max-width: 620px;
  }

  .home-main .home-documentation__visual {
    order: 2;
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .home-main .home-documentation {
    gap: 28px;
    padding-block: 50px 62px;
  }

  .home-main .home-documentation__content h2 {
    font-size: clamp(39px, 11.4vw, 48px);
  }

  .home-main .home-documentation__content > p {
    margin-bottom: 23px;
    font-size: 15px;
  }

  .home-main .home-documentation__visual {
    min-height: 460px;
  }

  .home-main .home-documentation__sheet {
    top: 20px;
    left: 18px;
    width: 70%;
    min-height: 330px;
    padding: 20px;
  }

  .home-main .home-documentation__sheet-label {
    margin-bottom: 22px;
  }

  .home-main .home-documentation__sheet > strong {
    font-size: 23px;
  }

  .home-main .home-documentation__product {
    right: -2%;
    width: 53%;
    height: 83%;
  }

  .home-main .home-documentation__record {
    bottom: 18px;
    left: 18px;
    width: 66%;
    padding: 14px 15px;
  }
}

/* Homepage Why Researchers Choose Lynx. Premium comparison treatment only. */
.home-main .lynx-comparison {
  position: relative;
  isolation: isolate;
  padding-block: clamp(72px, 7.2vw, 96px) clamp(78px, 7.8vw, 104px);
  border-bottom: 1px solid rgba(35, 57, 51, .12);
  background: #edeae3;
  box-shadow: 0 0 0 100vmax #edeae3;
  clip-path: inset(0 -100vmax);
}

.home-main .lynx-comparison__intro {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.home-main .lynx-comparison__intro h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: clamp(42px, 4.35vw, 60px);
  font-weight: 700;
  letter-spacing: -.058em;
  line-height: .96;
}

.home-main .lynx-comparison__intro p {
  margin: 0;
  color: #666861;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
  font-size: 17px;
  line-height: 1.5;
}

.home-main .lynx-comparison__table {
  position: relative;
  display: grid;
  padding-block: 12px;
  border: 1px solid rgba(31, 61, 54, .12);
  border-radius: 18px;
  background: rgba(249, 247, 242, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 15px 34px rgba(37, 47, 41, .06);
}

.home-main .lynx-comparison__table::before {
  position: absolute;
  z-index: 0;
  top: -11px;
  bottom: -11px;
  left: 27.5%;
  width: 38%;
  border: 1px solid rgba(236, 242, 235, .36);
  border-radius: 17px;
  background: rgba(6, 48, 43, .96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 17px 32px rgba(8, 39, 34, .14);
  content: "";
  pointer-events: none;
}

.home-main .lynx-comparison__head,
.home-main .lynx-comparison__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 27.5% 38% 34.5%;
}

.home-main .lynx-comparison__head > span {
  display: flex;
  min-height: 96px;
  align-items: center;
  padding: 20px clamp(18px, 2.2vw, 30px);
  color: #74766f;
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-main .lynx-comparison__brand {
  justify-content: center;
  border: 0;
  background: transparent;
  color: #fbfaf5;
}

.home-main .lynx-comparison__brand img {
  width: 112px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.home-main .lynx-comparison__brand b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.home-main .lynx-comparison__body {
  display: block;
}

.home-main .lynx-comparison__row {
  border: 0;
}

.home-main .lynx-comparison__row > * {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 18px clamp(18px, 2.2vw, 30px);
  border-top: 1px solid rgba(28, 63, 55, .12);
  font-size: 14px;
  line-height: 1.45;
}

.home-main .lynx-comparison__feature {
  color: var(--lynx-deep);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-size: 15px;
  font-weight: 700;
}

.home-main .lynx-comparison__lynx {
  position: relative;
  padding-left: clamp(18px, 2.2vw, 30px);
  border-color: rgba(244, 247, 241, .16);
  background: transparent;
  color: #fbfaf5;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
  font-weight: 600;
}

.home-main .lynx-comparison__vendor {
  position: relative;
  padding-left: clamp(18px, 2.2vw, 30px);
  background: rgba(223, 218, 208, .28);
  color: #6e706a;
  font-family: var(--font-body, "Inter", Arial, sans-serif);
}

.home-main .lynx-comparison__lynx::before,
.home-main .lynx-comparison__vendor::before {
  display: none;
  content: none;
}

.home-main .lynx-comparison__check,
.home-main .lynx-comparison__dash {
  position: relative;
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
}

.home-main .lynx-comparison__check {
  border: 1px solid rgba(242, 247, 240, .56);
  border-radius: 50%;
  background: rgba(235, 242, 233, .1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

.home-main .lynx-comparison__check::after {
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid #f8f8f1;
  border-left: 1.5px solid #f8f8f1;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.home-main .lynx-comparison__dash::after {
  width: 14px;
  height: 1px;
  background: #9b9d96;
  content: "";
}

@media (max-width: 900px) {
  .home-main .lynx-comparison {
    padding-block: 66px 78px;
  }

  .home-main .lynx-comparison__table::before {
    left: 26%;
    width: 39%;
  }

  .home-main .lynx-comparison__head,
  .home-main .lynx-comparison__row {
    grid-template-columns: 26% 39% 35%;
  }

  .home-main .lynx-comparison__head > span,
  .home-main .lynx-comparison__row > * {
    padding-inline: 17px;
  }

  .home-main .lynx-comparison__brand img {
    width: 94px;
    height: 62px;
  }
}

@media (max-width: 640px) {
  .home-main .lynx-comparison {
    padding-block: 56px 66px;
  }

  .home-main .lynx-comparison__intro {
    margin-bottom: 28px;
  }

  .home-main .lynx-comparison__intro h2 {
    font-size: clamp(39px, 11.5vw, 48px);
  }

  .home-main .lynx-comparison__intro p {
    font-size: 15px;
  }

  .home-main .lynx-comparison__table {
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-main .lynx-comparison__table::before {
    display: none;
  }

  .home-main .lynx-comparison__head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-main .lynx-comparison__head > span:first-child,
  .home-main .lynx-comparison__head > span:last-child {
    display: none;
  }

  .home-main .lynx-comparison__brand {
    display: flex;
    min-height: 84px;
    padding: 8px 18px;
    border: 1px solid rgba(236, 242, 235, .38);
    border-radius: 15px;
    background: rgba(6, 48, 43, .96);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 25px rgba(8,39,34,.12);
  }

  .home-main .lynx-comparison__brand img {
    width: 100px;
    height: 66px;
  }

  .home-main .lynx-comparison__body {
    display: grid;
    gap: 14px;
  }

  .home-main .lynx-comparison__row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(28, 63, 55, .14);
    border-radius: 15px;
    background: rgba(249, 247, 242, .68);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 8px 20px rgba(37,47,41,.045);
  }

  .home-main .lynx-comparison__row > * {
    min-height: auto;
    padding: 15px 17px;
    border-top: 0;
  }

  .home-main .lynx-comparison__feature {
    border-bottom: 1px solid rgba(28, 63, 55, .12);
    font-size: 16px;
  }

  .home-main .lynx-comparison__lynx,
  .home-main .lynx-comparison__vendor {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
  }

  .home-main .lynx-comparison__lynx {
    background: rgba(6, 48, 43, .96);
  }

  .home-main .lynx-comparison__vendor {
    border-top: 1px solid rgba(28, 63, 55, .12);
    background: rgba(223, 218, 208, .34);
  }

  .home-main .lynx-comparison__lynx::before,
  .home-main .lynx-comparison__vendor::before {
    position: static;
    display: block;
    width: auto;
    height: auto;
    grid-column: 1 / -1;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
  }

  .home-main .lynx-comparison__lynx::before {
    color: rgba(249,250,244,.7);
    content: "Lynx Peptides";
  }

  .home-main .lynx-comparison__vendor::before {
    color: #85877f;
    content: "Typical Budget Vendor";
  }
}

/* Shared approved product-render integration. Placeholder geometry remains unchanged. */
.image.has-product-render,
.product-img.has-product-render,
.card-image.has-product-render,
.shop-card__image.has-product-render,
.basket-item__image.has-product-render {
  background: var(--product-photo-surface);
  background-image: var(--product-photo-surface-fill);
}

.image.has-product-render,
.product-img.has-product-render,
.card-image.has-product-render,
.shop-card__image.has-product-render {
  padding: clamp(10px, 1.5vw, 18px);
}

.image.has-product-render .product-render,
.product-img.has-product-render .product-render,
.card-image.has-product-render .product-render,
.shop-card__image.has-product-render .product-render {
  width: auto;
  height: 86%;
  max-width: 82%;
  max-height: 86%;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(10px 15px 13px rgba(24,35,31,.12));
  transition: transform 220ms ease, filter 220ms ease;
}

.home-main .category-tile__media.has-product-render .product-render {
  position: absolute;
  right: 4%;
  bottom: 16px;
  width: auto;
  height: 78%;
  max-width: 48%;
  max-height: calc(100% - 30px);
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(15px 20px 15px rgba(20,30,28,.13));
  transition: transform 220ms ease;
}

.home-main .category-tile--featured .category-tile__media.has-product-render .product-render {
  right: 3%;
  bottom: 16px;
  height: 91%;
  max-width: 58%;
  max-height: calc(100% - 30px);
}

@media (hover: hover) {
  .card:hover .has-product-render .product-render,
  .shop-card:hover .has-product-render .product-render {
    filter: drop-shadow(11px 17px 14px rgba(24,35,31,.15));
  }

  .home-main .category-tile:hover .category-tile__media.has-product-render .product-render {
    transform: translateY(-3px) scale(1.008);
    filter: drop-shadow(16px 22px 16px rgba(20,30,28,.15));
  }
}

/* Carry the measured studio tone through editorial surfaces that contain real renders. */
.home-main .best-sellers-section .card:has(.product-img.has-product-render),
.home-main .category-tile:has(.category-tile__media.has-product-render),
.home-main .home-documentation__visual:has(.home-documentation__product.has-product-render) {
  background: var(--product-photo-surface);
  background-image: var(--product-photo-surface-fill);
}

.home-main .home-documentation__product.has-product-render img {
  border-radius: 0;
}

@media (max-width: 560px) {
  .image.has-product-render,
  .product-img.has-product-render,
  .card-image.has-product-render,
  .shop-card__image.has-product-render {
    padding: 8px;
  }

  .image.has-product-render .product-render,
  .product-img.has-product-render .product-render,
  .card-image.has-product-render .product-render,
  .shop-card__image.has-product-render .product-render {
    height: 84%;
    max-width: 88%;
    max-height: 84%;
  }

  .home-main .category-tile__media.has-product-render .product-render {
    right: 5%;
    height: 72%;
    max-width: 48%;
  }

  .home-main .category-tile--featured .category-tile__media.has-product-render .product-render {
    right: 1%;
    height: 88%;
    max-width: 64%;
  }
}

.basket-item__quantity button,
.cart-quantity button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(18, 63, 58, .2);
  border-radius: 7px;
  background: rgba(250, 249, 246, .88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
  color: var(--lynx-deep);
  -webkit-backdrop-filter: blur(7px) saturate(108%);
  backdrop-filter: blur(7px) saturate(108%);
  font-family: var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  font-weight: 700;
  transition: background-color var(--ui-transition), border-color var(--ui-transition), color var(--ui-transition), transform var(--ui-transition), box-shadow var(--ui-transition);
}

.basket-item__quantity button:focus-visible,
.cart-quantity button:focus-visible,
.basket-item__quantity input:focus-visible,
.checkout-field input:focus-visible,
.checkout-field select:focus-visible,
.checkout-fields input:focus-visible,
.checkout-fields select:focus-visible,
.lynx-enquiry input:focus-visible,
.lynx-enquiry select:focus-visible,
.lynx-enquiry textarea:focus-visible {
  outline: 2px solid var(--lynx);
  outline-offset: 2px;
}

.basket-item__quantity button:hover,
.cart-quantity button:hover {
  border-color: var(--lynx);
  background: rgba(231, 238, 232, .94);
  color: var(--lynx-deep);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 5px 14px rgba(11,46,43,.1);
}

.checkout-field input,
.checkout-field select,
.checkout-fields input,
.checkout-fields select,
.lynx-enquiry input,
.lynx-enquiry select,
.lynx-enquiry textarea,
.basket-item__quantity input {
  min-height: var(--ui-control-height);
  border-color: var(--line);
  border-radius: var(--ui-radius);
  background: #fff;
  transition: border-color var(--ui-transition), box-shadow var(--ui-transition), background-color var(--ui-transition);
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-fields input:focus,
.checkout-fields select:focus,
.lynx-enquiry input:focus,
.lynx-enquiry select:focus,
.lynx-enquiry textarea:focus,
.basket-item__quantity input:focus {
  border-color: var(--lynx);
  box-shadow: 0 0 0 3px rgba(18,63,58,.1);
}

.basket-layout,
.commerce-layout,
.checkout-layout {
  align-items: start;
}

.basket-summary,
.commerce-summary {
  border-color: #d5dad2;
  border-radius: var(--ui-radius);
  background: var(--ui-warm);
}

.basket-item {
  gap: clamp(16px,2vw,24px);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--line);
}

.basket-item__quantity > div,
.cart-quantity {
  overflow: hidden;
  border-radius: 8px;
}

.basket-item__total button,
.basket-actions button,
.basket-item__remove,
.basket-clear {
  min-height: 32px;
  transition: color var(--ui-transition), border-color var(--ui-transition);
}

.home-documentation {
  background: #fff;
}

.home-documentation__visual {
  border-radius: var(--ui-radius);
  background: #f7f5ef;
}

.home-documentation__detail {
  border-radius: 0 0 var(--ui-radius) 0;
}

.home-documentation__list li {
  transition: border-color var(--ui-transition), background-color var(--ui-transition);
}

.home-documentation__list li:hover {
  background: rgba(231,238,232,.42);
}

@media (max-width: 1024px) {
  .home-documentation {
    background: #fff;
  }
}

@media (max-width: 760px) {
  .label {
    font-size: 10px;
  }

  .label small {
    font-size: 9px;
  }

  .card-body {
    min-height: 150px;
  }

  .card .product-action,
  .card .view {
    width: 100%;
    justify-content: center;
  }

  .button,
  .btn,
  .purchase-add,
  .checkout-payment,
  .bac-upsell__action,
  .shop-card__action,
  .product-action,
  .card .view,
  .card-body > a,
  .basket-actions > a {
    min-height: 46px;
  }

  .basket-summary,
  .commerce-summary {
    border-radius: 8px;
  }

  .basket-item {
    gap: var(--s3);
  }
}

@media (max-width: 480px) {
  .product-action,
  .shop-card__action,
  .card .view {
    min-height: 46px;
    font-size: 13px;
  }

  .home-documentation__visual,
  .basket-summary,
  .commerce-summary {
    border-radius: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lynx-glass-button,
  .button,
  .btn,
  .purchase-add,
  .checkout-payment,
  .bac-upsell__action,
  .product-action,
  .shop-card__action,
  .card .view,
  .card-body > a,
  .basket-actions > a,
  .homehero--cinematic .hero-secondary,
  .basket-item__quantity button,
  .cart-quantity button,
  .checkout-field input,
  .checkout-field select,
  .checkout-fields input,
  .checkout-fields select,
  .lynx-enquiry input,
  .lynx-enquiry select,
  .lynx-enquiry textarea {
    transition: none;
  }

  .lynx-glass-button::before,
  .button::before,
  .btn::before,
  .purchase-add::before,
  .checkout-payment::before,
  .bac-upsell__action::before,
  .shop-card__action::before,
  .product-action::before,
  .card .view::before,
  .card-body > a::before,
  .basket-actions > a::before,
  .homehero--cinematic .hero-secondary::before {
    display: none;
    animation: none;
  }

  .lynx-glass-button:hover,
  .button:hover,
  .btn:hover,
  .purchase-add:hover:not(:disabled),
  .checkout-payment:hover:not(:disabled),
  .bac-upsell__action:hover:not(:disabled),
  .shop-card__action:hover,
  .product-action:hover,
  .card .view:hover,
  .card-body > a:hover,
  .basket-actions > a:hover,
  .homehero--cinematic .hero-secondary:hover,
  .basket-item__quantity button:hover,
  .cart-quantity button:hover {
    transform: none;
  }
}

/* Shared public footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(62px, 6vw, 82px) 0 24px;
  color: #f3efe5;
  background-color: #071917;
  background-image: linear-gradient(118deg, #061512 0%, #0b2a26 54%, #071b18 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(17deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(103deg, rgba(0, 0, 0, 0.15) 0 1px, transparent 1px 10px);
  background-size: 11px 13px, 17px 19px;
}

.site-footer .page-container {
  position: relative;
  z-index: 1;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(120px, .55fr));
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
  padding: 0 0 clamp(42px, 5vw, 62px);
}

.site-footer .footer-brand {
  max-width: 390px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.footer-brand__name {
  display: inline-grid;
  gap: 2px;
  color: #f7f3e9;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  text-decoration: none;
}

.footer-brand__name > span {
  font-size: 30px;
  font-weight: 650;
  line-height: 0.95;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand__name > small {
  color: #a9c1b8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer .footer-brand p {
  max-width: 330px;
  margin: 22px 0 0;
  color: #b9c5be;
  font: 400 15px/1.6 var(--font-body, Inter, sans-serif);
  letter-spacing: 0;
  text-transform: none;
}

.site-footer .footer-brand .footer-research-notice {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(231, 238, 232, 0.16);
  color: #aebbb4;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer .footer-nav,
.site-footer .footer-support {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer .footer-nav h2,
.site-footer .footer-support h2 {
  margin: 0 0 12px;
  color: #f7f3e9;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer .footer-nav a,
.site-footer .footer-support a {
  display: inline-flex;
  width: fit-content;
  gap: 9px;
  align-items: center;
  margin: 0;
  padding-block: 3px;
  color: #dfe6df;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-footer .footer-nav a span,
.site-footer .footer-support a span {
  color: #9dbbb0;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-nav a:hover,
.site-footer .footer-support a:hover {
  color: #fffdf7;
}

.site-footer .footer-nav a:hover span,
.site-footer .footer-support a:hover span,
.site-footer .footer-nav a:focus-visible span,
.site-footer .footer-support a:focus-visible span {
  color: #dce9e2;
  transform: translateX(3px);
}

.site-footer a:focus-visible {
  outline: 2px solid rgba(225, 239, 232, 0.88);
  outline-offset: 4px;
  border-radius: 3px;
}

.site-footer .footer-support > p {
  margin: 17px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(231, 238, 232, 0.16);
  color: #aebbb4;
  font: 400 13px/1.65 var(--font-body, Inter, sans-serif);
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(231, 238, 232, 0.18);
  color: #98a8a1;
  font: 400 12px/1.5 var(--font-body, Inter, sans-serif);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1024px) {
  .site-footer {
    padding-top: 58px;
  }

  .site-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px 32px;
  }

  .site-footer .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .site-footer {
    padding: 52px 0 20px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 40px;
  }

  .site-footer .footer-brand {
    grid-column: auto;
  }

  .site-footer .footer-brand p {
    margin-top: 18px;
  }

  .site-footer .footer-nav a,
  .site-footer .footer-support a {
    min-height: 44px;
    padding-block: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer .footer-nav a,
  .site-footer .footer-support a,
  .site-footer .footer-nav a span,
  .site-footer .footer-support a span {
    transition: none;
  }

  .site-footer .footer-nav a:hover span,
  .site-footer .footer-support a:hover span,
  .site-footer .footer-nav a:focus-visible span,
  .site-footer .footer-support a:focus-visible span {
    transform: none;
  }
}

/* Public basket page */
/* Shared premium cart drawer. The existing basket remains the single state owner. */
body.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  z-index: 1200;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 240ms step-end;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s step-start;
}

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 22, 20, .36);
  opacity: 0;
  transition: opacity 240ms ease;
}

.cart-drawer.is-open .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: min(420px, calc(100vw - 24px));
  height: 100%;
  max-height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-left: 1px solid rgba(22, 66, 60, .18);
  outline: none;
  background: #fbfaf6;
  box-shadow: -18px 0 48px rgba(5, 28, 25, .15);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(.22, .72, .24, 1);
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__panel:focus-visible {
  box-shadow: -18px 0 48px rgba(5, 28, 25, .15), inset 0 0 0 2px rgba(37, 111, 99, .32);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(22, 66, 60, .14);
}

.cart-drawer__header p {
  margin: 0 0 4px;
  color: #73807b;
  font: 650 10px/1.2 var(--font-display, "Inter Tight", sans-serif);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cart-drawer__header h2 {
  margin: 0;
  color: var(--lynx-deep);
  font: 700 30px/.95 var(--font-display, "Inter Tight", sans-serif);
  letter-spacing: -.04em;
}

.cart-drawer__close {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(22, 66, 60, .2);
  border-radius: 50%;
  background: rgba(255, 255, 252, .7);
  color: var(--lynx-deep);
  font: 400 25px/1 var(--font-body, Inter, sans-serif);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.cart-drawer__close:hover {
  border-color: rgba(22, 66, 60, .42);
  background: #fff;
  transform: rotate(4deg);
}

.cart-drawer__close:focus-visible,
.cart-drawer__quantity button:focus-visible,
.cart-drawer__remove:focus-visible,
.cart-drawer__continue:focus-visible,
.cart-drawer__empty a:focus-visible {
  outline: 2px solid var(--lynx);
  outline-offset: 3px;
}

.cart-drawer__content {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.cart-drawer__items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 24px;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(22, 66, 60, .12);
  border-radius: 12px;
  background: rgba(255, 255, 252, .72);
}

.cart-drawer__image {
  display: grid;
  width: 70px;
  height: 90px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--product-photo-surface-fill);
}

.cart-drawer__image .product-picture,
.cart-drawer__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-drawer__image .basket-item__placeholder {
  display: grid;
  width: 42px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(23, 68, 62, .22);
  border-radius: 4px 4px 7px 7px;
  background: #fffdf8;
  color: var(--lynx-deep);
  font: 700 10px/1 var(--font-display, "Inter Tight", sans-serif);
}

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

.cart-drawer__details h3 {
  margin: 1px 0 4px;
  font: 700 17px/1.08 var(--font-display, "Inter Tight", sans-serif);
  letter-spacing: -.025em;
}

.cart-drawer__details h3 a {
  color: var(--ink);
  text-decoration: none;
}

.cart-drawer__details > p {
  margin: 0 0 12px;
  color: #697570;
  font: 500 12px/1.45 var(--font-body, Inter, sans-serif);
}

.cart-drawer__line-price {
  padding-top: 2px;
  color: var(--lynx-deep);
  font: 700 14px/1.2 var(--font-display, "Inter Tight", sans-serif);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.cart-drawer__quantity {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(22, 66, 60, .2);
  border-radius: 8px;
  background: rgba(255, 255, 252, .78);
}

.cart-drawer__quantity button,
.cart-drawer__quantity span {
  display: grid;
  height: 32px;
  place-items: center;
}

.cart-drawer__quantity button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lynx-deep);
  font: 500 15px/1 var(--font-body, Inter, sans-serif);
  cursor: pointer;
}

.cart-drawer__quantity button:hover {
  background: rgba(215, 227, 214, .54);
}

.cart-drawer__quantity span {
  border-inline: 1px solid rgba(22, 66, 60, .14);
  font: 650 12px/1 var(--font-body, Inter, sans-serif);
  font-variant-numeric: tabular-nums;
}

.cart-drawer__remove {
  display: flex;
  min-width: 58px;
  min-height: 40px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 12px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid rgba(84, 98, 92, .28);
  background: transparent;
  color: #6b7773;
  font: 600 11px/1.2 var(--font-display, "Inter Tight", sans-serif);
  cursor: pointer;
}

.cart-drawer__remove:hover {
  border-color: #764b45;
  color: #764b45;
}

.cart-drawer__summary {
  padding: 22px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(145deg, #123f3a 0%, #0a322e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.cart-drawer__summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  font: 700 17px/1.2 var(--font-display, "Inter Tight", sans-serif);
}

.cart-drawer__summary > div strong {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.cart-drawer__summary > p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .72);
  font: 500 11px/1.4 var(--font-body, Inter, sans-serif);
}

.cart-drawer__summary > p.cart-drawer__delivery {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.cart-drawer__checkout {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  text-transform: uppercase;
  border-color: rgba(255, 255, 255, .82);
  background: #fff;
  box-shadow: 0 8px 22px rgba(3, 22, 19, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
  color: var(--lynx-deep);
}

.cart-drawer__checkout:hover {
  border-color: #fff;
  background: #f3f5ef;
  color: #082c29;
}

.cart-drawer__checkout:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.cart-drawer__continue {
  display: block;
  min-height: 40px;
  margin: 8px auto 0;
  padding: 6px 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font: 650 12px/1.2 var(--font-display, "Inter Tight", sans-serif);
  cursor: pointer;
}

.cart-drawer__continue:hover {
  color: #fff;
}

.cart-drawer__empty {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  min-height: 100%;
  padding: 40px 24px;
  text-align: center;
}

.cart-drawer__empty p {
  margin: 0;
  color: var(--lynx-deep);
  font: 700 25px/1.1 var(--font-display, "Inter Tight", sans-serif);
  letter-spacing: -.03em;
}

.cart-drawer__empty a {
  color: #51625c;
  font: 650 13px/1.3 var(--font-display, "Inter Tight", sans-serif);
}

@media (max-width: 420px) {
  .cart-drawer__panel {
    width: calc(100vw - 12px);
  }

  .cart-drawer__header,
  .cart-drawer__items,
  .cart-drawer__summary {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cart-drawer__item {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .cart-drawer__image {
    width: 60px;
    height: 80px;
  }

  .cart-drawer__remove {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer,
  .cart-drawer__overlay,
  .cart-drawer__panel,
  .cart-drawer__close {
    transition-duration: .01ms;
  }
}

body.basket-page {
  background-color: #e9ece5;
  background-image:
    linear-gradient(118deg, rgba(246, 242, 233, 0.94) 0%, rgba(229, 236, 228, 0.96) 58%, rgba(239, 235, 226, 0.94) 100%),
    repeating-linear-gradient(21deg, rgba(18, 63, 58, 0.035) 0 1px, transparent 1px 7px);
}

.basket-page .commerce-page {
  min-height: 58vh;
  padding-top: 0;
  padding-bottom: clamp(72px, 8vw, 108px);
}

.basket-page .crumb {
  margin-bottom: clamp(38px, 5vw, 62px);
  padding-block: 18px;
  border-color: rgba(27, 68, 62, 0.16);
  font-family: var(--font-body, Inter, sans-serif);
}

.basket-page .basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.92fr) minmax(290px, 0.92fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: start;
}

.basket-page .basket-lines {
  min-width: 0;
  border: 0;
}

.basket-page .basket-lines > h1,
.basket-page .basket-empty h1 {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: clamp(42px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.basket-page .basket-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) minmax(130px, 0.62fr) minmax(98px, 0.42fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: center;
  margin: 0 0 14px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(28, 74, 67, 0.18);
  border-radius: 15px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 12px 32px rgba(16, 48, 44, 0.06);
}

.basket-page .basket-item__image {
  display: grid;
  width: 132px;
  height: 160px;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(29, 75, 68, 0.12);
  border-radius: 11px;
  background: #f3efe7;
  text-decoration: none;
}

.basket-page .basket-item__image .product-picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.basket-page .basket-item__image .product-render,
.basket-page .basket-item__image .rt3-render {
  width: auto;
  height: 82%;
  max-width: 84%;
  max-height: 82%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(8px 11px 9px rgba(18, 48, 43, 0.13));
}

.basket-page .basket-item__placeholder {
  display: grid;
  width: 58px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(23, 68, 62, 0.24);
  border-radius: 4px 4px 8px 8px;
  color: var(--lynx-deep);
  background: #fffdf8;
  box-shadow: 7px 9px 13px rgba(16, 45, 41, 0.08);
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.basket-page .basket-item__details {
  min-width: 0;
}

.basket-page .basket-item__details h2 {
  margin: 0 0 8px;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.basket-page .basket-item__details h2 a {
  color: var(--ink);
  text-decoration: none;
}

.basket-page .basket-item__details h2 a:hover {
  color: var(--lynx-deep);
}

.basket-page .basket-item__details p,
.basket-page .basket-item__total span {
  margin: 0;
  color: #66726e;
  font: 400 13px/1.5 var(--font-body, Inter, sans-serif);
}

.basket-page .basket-item__details .basket-item__price {
  margin-top: 9px;
  color: #294c47;
  font-weight: 600;
}

.basket-page .basket-item__quantity label {
  display: block;
  margin: 0 0 9px;
  color: #294c47;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.basket-page .basket-item__quantity > div {
  display: inline-grid;
  grid-template-columns: 44px 44px 44px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(19, 68, 61, 0.25);
  border-radius: 10px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.basket-page .basket-item__quantity button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(239, 242, 235, 0.78);
  box-shadow: none;
  color: var(--lynx-deep);
  font-size: 18px;
}

.basket-page .basket-item__quantity input {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-inline: 1px solid rgba(19, 68, 61, 0.16);
  border-radius: 0;
  background: rgba(255, 253, 247, 0.9);
  color: var(--ink);
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  font-variant-numeric: tabular-nums;
  appearance: textfield;
}

.basket-page .basket-item__quantity input::-webkit-inner-spin-button,
.basket-page .basket-item__quantity input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.basket-page .basket-item__total {
  display: grid;
  gap: 7px;
  justify-items: end;
  text-align: right;
}

.basket-page .basket-item__total strong {
  color: var(--ink);
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.basket-page .basket-item__total button,
.basket-page .basket-actions button {
  min-height: 36px;
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid rgba(69, 86, 81, 0.3);
  border-radius: 0;
  color: #63706c;
  background: transparent;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.basket-page .basket-item__total button:hover,
.basket-page .basket-actions button:hover {
  border-color: #6f4742;
  color: #6f4742;
}

.basket-page .basket-item__total button:focus-visible,
.basket-page .basket-actions button:focus-visible {
  outline: 2px solid var(--lynx);
  outline-offset: 3px;
}

.basket-page .basket-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 0;
}

.basket-page .basket-actions > a {
  min-height: 46px;
  border-color: rgba(18, 63, 58, 0.3);
  background: rgba(255, 253, 247, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 6px 16px rgba(15, 48, 43, 0.07);
  color: var(--lynx-deep);
}

.basket-page .basket-actions > a:hover {
  border-color: rgba(18, 63, 58, 0.52);
  background: rgba(247, 248, 242, 0.92);
  color: var(--lynx-deep);
}

.basket-page .basket-summary {
  position: sticky;
  top: 94px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(24, 71, 65, 0.2);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 18px 42px rgba(14, 47, 43, 0.08);
}

.basket-page .basket-summary h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.basket-page .basket-summary > div {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid rgba(28, 73, 66, 0.16);
  color: #5e6b67;
  font: 400 14px/1.45 var(--font-body, Inter, sans-serif);
}

.basket-page .basket-summary > div strong {
  color: var(--ink);
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.basket-page .basket-summary .basket-summary__total {
  padding-block: 17px;
  font-family: var(--font-display, "Inter Tight", sans-serif);
  font-size: 17px;
  font-weight: 700;
}

.basket-page .basket-summary > p {
  margin: 8px 0 22px;
  color: #65726e;
  font: 400 13px/1.55 var(--font-body, Inter, sans-serif);
}

.basket-page .basket-summary > .button {
  width: 100%;
  min-height: 48px;
}

.basket-page .basket-empty {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px);
  border: 1px solid rgba(28, 74, 67, 0.18);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 16px 38px rgba(16, 48, 44, 0.07);
  text-align: center;
}

.basket-page .basket-empty h1 {
  margin-bottom: 18px;
}

.basket-page .basket-empty p {
  max-width: 460px;
  margin: 0 auto 28px;
  color: #56645f;
  font: 400 16px/1.6 var(--font-body, Inter, sans-serif);
}

.basket-page .basket-empty .button {
  min-height: 48px;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .basket-page .basket-item {
    grid-template-columns: 104px minmax(0, 1fr) minmax(100px, auto);
    align-items: start;
  }

  .basket-page .basket-item__image {
    width: 104px;
    height: 136px;
    grid-row: 1 / span 2;
  }

  .basket-page .basket-item__quantity {
    grid-column: 2;
  }

  .basket-page .basket-item__total {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 900px) {
  .basket-page .basket-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .basket-page .basket-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .basket-page .commerce-page {
    padding-bottom: 72px;
  }

  .basket-page .crumb {
    margin-bottom: 34px;
  }

  .basket-page .basket-item {
    grid-template-columns: 104px minmax(0, 1fr) minmax(105px, auto);
    align-items: start;
    padding: 18px;
  }

  .basket-page .basket-item__image {
    width: 104px;
    height: 136px;
    grid-row: 1 / span 2;
  }

  .basket-page .basket-item__quantity {
    grid-column: 2;
  }

  .basket-page .basket-item__total {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 560px) {
  .basket-page .basket-lines > h1,
  .basket-page .basket-empty h1 {
    font-size: 42px;
  }

  .basket-page .basket-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .basket-page .basket-item__image {
    width: 92px;
    height: 122px;
    grid-row: 1 / span 3;
  }

  .basket-page .basket-item__details h2 {
    font-size: 20px;
  }

  .basket-page .basket-item__quantity,
  .basket-page .basket-item__total {
    grid-column: 2;
    grid-row: auto;
  }

  .basket-page .basket-item__total {
    grid-template-columns: auto auto;
    justify-content: start;
    justify-items: start;
    text-align: left;
  }

  .basket-page .basket-item__total button {
    grid-column: 1 / -1;
  }

  .basket-page .basket-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .basket-page .basket-actions > a {
    width: 100%;
  }

  .basket-page .basket-actions button {
    align-self: center;
  }

  .basket-page .basket-summary {
    padding: 24px 20px;
  }
}

@media (max-width: 390px) {
  .basket-page .basket-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .basket-page .basket-item__image {
    width: 80px;
    height: 108px;
  }

  .basket-page .basket-item__quantity > div {
    grid-template-columns: repeat(3, 44px);
  }

  .basket-page .basket-item__quantity button,
  .basket-page .basket-item__quantity input {
    width: 44px;
    min-width: 44px;
  }

  .basket-page .basket-empty {
    padding: 38px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .basket-page .basket-item__total button,
  .basket-page .basket-actions button {
    transition: none;
  }
}
/* Catalogue pricing is hydrated from the authoritative variant records. */
.product-card__price,
.shop-card__price {
  margin: 7px 0 10px;
  color: var(--lynx-deep);
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.product-card__price[data-price-state="unavailable"],
.shop-card__price[data-price-state="unavailable"] {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .95fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(40px, 5vw, 64px) 0 64px;
}

.checkout-layout > section {
  min-width: 0;
}

.checkout-layout h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--lynx-deep);
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: clamp(40px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.checkout-intro {
  max-width: 58ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.checkout-intro a {
  color: var(--lynx-deep, #0a3430);
  font-weight: 650;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.checkout-form {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.checkout-fields > label {
  min-width: 0;
  color: var(--lynx-deep);
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.35;
}

.checkout-fields > label:nth-child(1),
.checkout-fields > label:nth-child(2),
.checkout-fields > label:nth-child(3),
.checkout-fields > label:nth-child(4),
.checkout-fields > label:nth-child(7) {
  grid-column: 1 / -1;
}

.checkout-fields > label:nth-child(3) {
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(19, 67, 59, .16);
}

.checkout-fields label > span {
  margin-left: 6px;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.checkout-fields input,
.checkout-fields select {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid rgba(19, 67, 59, .24);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 253, 248, .74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
  color: var(--lynx-deep);
  font: 500 15px/1.4 "Inter", sans-serif;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.checkout-fields select {
  padding-right: 40px;
}

.checkout-fields input:hover,
.checkout-fields select:hover {
  border-color: rgba(19, 67, 59, .42);
  background: rgba(255, 253, 248, .94);
}

.checkout-fields input:focus-visible,
.checkout-fields select:focus-visible {
  border-color: var(--lynx);
  background: #fffdf8;
  box-shadow: 0 0 0 3px rgba(37, 111, 99, .16);
}

.checkout-fields input[aria-invalid="true"],
.checkout-fields select[aria-invalid="true"] {
  border-color: #9d4439;
  box-shadow: 0 0 0 3px rgba(157, 68, 57, .12);
}

.checkout-delivery {
  min-width: 0;
  margin: 0;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid rgba(19, 67, 59, .14);
  border-bottom: 1px solid rgba(19, 67, 59, .14);
}

.checkout-delivery legend {
  padding: 0;
  color: var(--lynx-deep);
  font: 700 20px/1.15 "Inter Tight", "Inter", sans-serif;
  letter-spacing: -.02em;
}

.checkout-delivery > p {
  margin: 8px 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.checkout-delivery__options {
  display: grid;
  gap: 10px;
}

.checkout-delivery__option {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(19, 67, 59, .18);
  border-radius: 12px;
  background: rgba(255, 253, 248, .72);
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.checkout-delivery__option:hover,
.checkout-delivery__option:has(input:checked) {
  border-color: rgba(19, 67, 59, .48);
  background: rgba(220, 233, 222, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .78);
}

.checkout-delivery__option:has(input:focus-visible) {
  outline: 3px solid rgba(37, 111, 99, .2);
  outline-offset: 2px;
}

.checkout-delivery__option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--lynx);
}

.checkout-delivery__option span,
.checkout-delivery__option strong,
.checkout-delivery__option small {
  display: block;
  min-width: 0;
}

.checkout-delivery__option .checkout-delivery__service {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.checkout-delivery__service img {
  display: block;
  width: 48px;
  height: auto;
}

.checkout-delivery__option strong {
  color: var(--lynx-deep);
  font: 700 14px/1.3 "Inter Tight", "Inter", sans-serif;
}

.checkout-delivery__option small {
  margin-top: 4px;
  color: var(--muted);
  font: 500 12px/1.45 "Inter", sans-serif;
}

.checkout-delivery__option b {
  color: var(--lynx-deep);
  font: 700 15px/1 "Inter Tight", "Inter", sans-serif;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.checkout-delivery__error {
  color: #8b3f37;
}

.research-ack {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(19, 67, 59, .14);
  border-bottom: 1px solid rgba(19, 67, 59, .14);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.research-ack input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--lynx);
}

.research-ack input:focus-visible {
  outline: 3px solid rgba(37, 111, 99, .22);
  outline-offset: 3px;
}

.checkout-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-status:not(:empty) {
  padding: 12px 14px;
  border-left: 3px solid rgba(19, 67, 59, .45);
  background: rgba(216, 227, 214, .34);
}

.checkout-form > .button {
  width: 100%;
  min-height: 52px;
  justify-content: center;
}

.checkout-form > .button:disabled,
.checkout-form > .button[aria-disabled="true"] {
  border-color: rgba(19, 67, 59, .14);
  background: #dce3dd;
  box-shadow: none;
  color: rgba(19, 50, 45, .62);
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.checkout-form > .button:disabled::before,
.checkout-form > .button[aria-disabled="true"]::before {
  display: none;
}

.checkout-summary {
  position: sticky;
  top: 124px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(19, 67, 59, .18);
  border-radius: 14px;
  background: rgba(238, 235, 224, .74);
  box-shadow: 0 18px 44px rgba(13, 43, 38, .07), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.checkout-summary h2 {
  margin: 0 0 20px;
  color: var(--lynx-deep);
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.checkout-summary ul {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.checkout-summary li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(19, 67, 59, .13);
  color: var(--lynx-deep);
  font-size: 14px;
  line-height: 1.4;
}

.checkout-summary li:first-child {
  padding-top: 0;
}

.checkout-summary li span {
  min-width: 0;
  font-weight: 650;
}

.checkout-summary li small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.checkout-summary li strong {
  white-space: nowrap;
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.checkout-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.checkout-summary > div strong {
  color: var(--lynx-deep);
  font-weight: 700;
  text-align: right;
}

.checkout-summary .checkout-summary__total {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(19, 67, 59, .22);
  color: var(--lynx-deep);
  font-family: "Inter Tight", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.checkout-summary .checkout-summary__total strong {
  font-size: 28px;
  letter-spacing: -.025em;
}

.checkout-summary > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .checkout-summary {
    position: static;
    top: auto;
  }
}

@media (max-width: 640px) {
  .checkout-layout {
    gap: 32px;
    padding: 32px 0 64px;
  }

  .checkout-layout h1 {
    font-size: clamp(34px, 10vw, 36px);
  }

  .checkout-intro {
    margin-top: 12px;
    font-size: 15px;
  }

  .checkout-form {
    gap: 20px;
    margin-top: 24px;
  }

  .checkout-fields {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .checkout-fields > label,
  .checkout-fields > label:nth-child(1),
  .checkout-fields > label:nth-child(2),
  .checkout-fields > label:nth-child(3),
  .checkout-fields > label:nth-child(4),
  .checkout-fields > label:nth-child(7) {
    grid-column: 1;
  }

  .checkout-fields > label:nth-child(3) {
    margin-top: 6px;
    padding-top: 26px;
  }

  .checkout-summary {
    padding: 24px 20px;
  }
}

@media (max-width: 420px) {
  .checkout-layout {
    padding-top: 24px;
  }

  .checkout-summary {
    padding: 22px 16px;
  }

  .checkout-summary li {
    gap: 12px;
  }

  .checkout-summary .checkout-summary__total strong {
    font-size: 25px;
  }

  .checkout-delivery__option {
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 14px 12px;
  }

  .checkout-delivery__option strong {
    font-size: 13px;
  }

  .checkout-delivery__option .checkout-delivery__service {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 9px;
  }

  .checkout-delivery__service img {
    width: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-fields input,
  .checkout-fields select {
    transition: none;
  }
}
