:root {
  --alx-black: #050505;
  --global-charcoal: #231f20;
  --global-blue: #0082dc;
  --global-sky: #00aeef;
  --global-navy: #003d73;
  --global-cyan: #5bd8ff;
  --global-gradient: linear-gradient(100deg, var(--global-sky) 0%, var(--global-blue) 42%, var(--global-navy) 76%, var(--global-charcoal) 100%);
  --phoenix-magenta: var(--global-sky);
  --phoenix-purple: var(--global-blue);
  --phoenix-blue: var(--global-navy);
  --phoenix-cyan: var(--global-cyan);
  --phoenix-gradient: var(--global-gradient);
  --alx-white: #ffffff;
  --alx-soft-white: #f8f8f8;
  --alx-text: #111111;
  --alx-muted: #777777;
  --alx-line: #e9e9e9;
  --alx-alert-h: 44px;
  --alx-header-h: 76px;
  --alx-trust-reserve-h: 96px;
  --alx-trust-h: 122px;
  --alx-edge: clamp(58px, 6.42vw, 122px);
  --alx-hero-bg: url("../assets/phoenix-hero-bg.png");
  --alx-hero-wordmark: url("../assets/global-peptides-logo.png");
  --alx-fast: 180ms ease;
  --alx-smooth: 280ms cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--alx-text);
  background: var(--alx-white);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

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

.alx-skip-link:focus {
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--alx-white);
  background: var(--alx-black);
  border-radius: 999px;
}

.alx-site-shell { min-height: 100svh; overflow-x: clip; }

.alx-shipping-ribbon {
  display: grid;
  place-items: center;
  height: var(--alx-alert-h);
  padding: 0 18px;
  color: rgba(255, 255, 255, .92);
  background: var(--phoenix-gradient);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  letter-spacing: .045em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.alx-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: var(--alx-header-h);
  padding: 0 var(--alx-edge);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transition: box-shadow var(--alx-fast), transform var(--alx-fast);
}

.alx-header.is-scrolled { box-shadow: 0 16px 36px rgba(0,0,0,.08); }

.alx-primary-nav,
.alx-header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.9vw, 30px);
}

.alx-primary-nav { justify-content: flex-start; }
.alx-header-actions { justify-content: flex-end; }

.alx-header-actions::before {
  width: 1px;
  height: 31px;
  margin-right: 11px;
  background: #dcdcdc;
  content: "";
}

.alx-nav-link,
.alx-action-btn,
.alx-menu-btn {
  border: 0;
  color: var(--alx-black);
  background: transparent;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-nav-link {
  position: relative;
  padding: 30px 0 28px;
}

.alx-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--alx-smooth);
}

.alx-nav-link:hover::after,
.alx-nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.alx-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(104px, 8.42vw, 160px);
  height: 42px;
  padding: 0;
  color: var(--alx-black);
}

.alx-brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.alx-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  white-space: nowrap;
}

.alx-action-btn i,
.alx-menu-btn i { font-size: 27px; line-height: 1; }

.alx-cart-count {
  display: none;
  min-width: 16px;
  height: 16px;
  margin-left: -1px;
  padding: 2px 4px;
  color: var(--alx-white);
  background: var(--alx-black);
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  line-height: 1.15;
}

.alx-cart-count.is-visible { display: inline-grid; place-items: center; }

.alx-menu-btn { display: none; padding: 9px 0 9px 8px; }

.alx-mobile-menu {
  position: fixed;
  z-index: 80;
  top: calc(var(--alx-alert-h) + var(--alx-header-h));
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 4px var(--alx-edge) 18px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  transform: translateY(-115%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--alx-smooth), opacity var(--alx-fast);
}

.alx-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.alx-mobile-menu a {
  padding: 15px 0;
  border-bottom: 1px solid var(--alx-line);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.alx-hero-section {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--alx-alert-h) - var(--alx-header-h) - var(--alx-trust-reserve-h));
  overflow: hidden;
  color: var(--alx-white);
  background: var(--alx-black);
}

.alx-hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--alx-hero-bg);
  background-position: center center;
  background-size: cover;
  filter: contrast(1.07) brightness(.78);
  transform: scale(1.006);
}

.alx-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 52% 34%, rgba(255,255,255,.045), transparent 32%),
    radial-gradient(circle at 80% 16%, rgba(255,255,255,.08), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.10) 54%, rgba(0,0,0,.15));
  pointer-events: none;
}

.alx-hero-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 1280px);
  min-height: auto;
  padding: 0 18px;
  text-align: center;
  transform: translateY(16px);
}

.alx-hero-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: min(61vw, 1160px);
  max-width: calc(100vw - 72px);
  margin: 0;
  line-height: 1;
  filter: drop-shadow(0 18px 16px rgba(0,0,0,.62));
  transform: translateY(0);
  user-select: none;
}

.alx-hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}


.alx-hero-copy {
  display: grid;
  justify-items: center;
  margin-top: 0;
}

.alx-hero-kicker {
  margin: 0;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 3.2vw, 60px);
  line-height: .86;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0,0,0,.5);
}

.alx-hero-subtitle {
  max-width: 660px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, .95);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(11px, .86vw, 15px);
  letter-spacing: .038em;
  line-height: 1.08;
  text-transform: uppercase;
}

.alx-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 202px;
  min-height: 60px;
  padding: 18px 32px;
  color: var(--alx-black);
  background: var(--alx-white);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--alx-smooth), box-shadow var(--alx-smooth), color var(--alx-smooth), background var(--alx-smooth);
}

.alx-cta i { font-size: 20px; transition: transform var(--alx-smooth); }
.alx-cta:hover,
.alx-cta:focus-visible {
  color: var(--alx-white);
  background: var(--alx-black);
  box-shadow: 0 22px 42px rgba(0,0,0,.35);
  transform: translateY(-2px);
}
.alx-cta:hover i,
.alx-cta:focus-visible i { transform: translate(2px, -2px); }

.alx-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: var(--alx-trust-h);
  background: #f7f7f7;
  border-top: 1px solid var(--alx-line);
}

.alx-trust-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
  min-height: var(--alx-trust-h);
  padding: 44px var(--alx-edge) 30px;
  border-right: 1px solid #e7e7e7;
  background: rgba(255,255,255,.42);
  transition: background var(--alx-smooth), transform var(--alx-smooth);
}

.alx-trust-card:last-child { border-right: 0; }
.alx-trust-card:hover { background: #ffffff; }

.alx-trust-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--alx-black);
  flex: 0 0 auto;
}

.alx-trust-icon i { font-size: 58px; line-height: 1; }

.alx-trust-card h2 {
  margin: 0 0 12px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  line-height: .95;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.alx-trust-card p {
  max-width: 360px;
  margin: 0;
  color: #7a7a7a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.alx-loader-icon {
  position: relative;
  width: 52px;
  height: 52px;
  animation: alxSpin 6s linear infinite;
}

.alx-loader-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--alx-black);
  border-radius: 50%;
  transform: rotate(var(--angle, 0deg)) translateY(-22px);
}
.alx-loader-icon span:nth-child(1) { --angle: 0deg; }
.alx-loader-icon span:nth-child(2) { --angle: 60deg; opacity: .84; }
.alx-loader-icon span:nth-child(3) { --angle: 120deg; opacity: .70; }
.alx-loader-icon span:nth-child(4) { --angle: 180deg; opacity: .56; }
.alx-loader-icon span:nth-child(5) { --angle: 240deg; opacity: .42; }
.alx-loader-icon span:nth-child(6) { --angle: 300deg; opacity: .30; }

.alx-package-icon svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

@keyframes alxSpin { to { transform: rotate(360deg); } }


.alx-new-gear {
  position: relative;
  padding: 61px 0 146px var(--alx-edge);
  background: var(--alx-white);
  overflow: hidden;
}

.alx-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-right: var(--alx-edge);
  margin-bottom: 25px;
}

.alx-section-head h2,
.alx-potential h2 {
  margin: 0;
  color: var(--alx-black);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -.012em;
  line-height: .88;
  text-transform: uppercase;
}

.alx-carousel-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 28px;
  padding: 0 3px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.025);
}

.alx-carousel-btn {
  display: grid;
  place-items: center;
  width: 27px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  color: #d5d5d5;
  background: transparent;
  transition: color var(--alx-fast), background var(--alx-fast), transform var(--alx-fast);
}

.alx-carousel-btn i { font-size: 16px; line-height: 1; }
.alx-carousel-btn:hover,
.alx-carousel-btn:focus-visible { color: var(--alx-black); background: #f5f5f5; }
.alx-carousel-btn:active { transform: scale(.94); }

.alx-product-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.alx-product-viewport::-webkit-scrollbar { display: none; }
.alx-product-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.alx-product-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 1.26vw, 24px);
  min-width: max-content;
  padding-right: var(--alx-edge);
}

.alx-product-card {
  flex: 0 0 clamp(258px, 24.2vw, 390px);
  color: var(--alx-black);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.alx-product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 217 / 144;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 4px;
  transform: translateZ(0);
}

.alx-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), filter 420ms cubic-bezier(.2,.8,.2,1);
}

.alx-product-card:hover .alx-product-media img,
.alx-product-card:focus-within .alx-product-media img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.alx-product-meta {
  margin: 12px 0 7px;
  color: #9b9b9b;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(7px, .73vw, 11px);
  letter-spacing: .07em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alx-product-card h3 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 1.64vw, 25px);
  font-weight: 400;
  letter-spacing: -.004em;
  line-height: .96;
  text-transform: uppercase;
}

.alx-product-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size var(--alx-smooth);
}

.alx-product-card h3 a:hover,
.alx-product-card h3 a:focus-visible { background-size: 100% 1px; }

.alx-product-price {
  margin: 0;
  color: var(--alx-black);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(11px, 1.08vw, 15px);
  font-weight: 700;
  line-height: 1.2;
}

.alx-product-price span {
  margin-left: 5px;
  color: #9b9b9b;
  font-size: .72em;
  font-weight: 700;
  text-decoration: none;
}

.alx-potential {
  padding: 0 var(--alx-edge) 78px;
  background: var(--alx-white);
}

.alx-potential h2 { margin-bottom: 20px; }

.alx-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  width: 100%;
}

.alx-category-card {
  display: grid;
  min-width: 0;
  color: var(--alx-black);
  outline-offset: 5px;
}

.alx-category-image {
  display: block;
  height: clamp(242px, 28.72vw, 420px);
  overflow: hidden;
  background: #e9e9e9;
}

.alx-category-card:first-child .alx-category-image { border-radius: 6px 0 0 6px; }
.alx-category-card:last-child .alx-category-image { border-radius: 0 6px 6px 0; }

.alx-category-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), filter 520ms cubic-bezier(.2,.8,.2,1);
}

.alx-category-card:hover .alx-category-image img,
.alx-category-card:focus-visible .alx-category-image img {
  transform: scale(1.045);
  filter: contrast(1.06) brightness(.98);
}

.alx-category-title {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 13px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(13px, 1.38vw, 21px);
  letter-spacing: -.008em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.alx-category-title i {
  font-size: .88em;
  line-height: 1;
  transition: transform var(--alx-smooth);
}

.alx-category-card:hover .alx-category-title i,
.alx-category-card:focus-visible .alx-category-title i { transform: translate(2px, -2px); }

.alx-proof-marquee {
  position: relative;
  display: flex;
  align-items: center;
  height: 43px;
  overflow: hidden;
  color: var(--alx-white);
  background: var(--phoenix-gradient);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.alx-proof-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 50px);
  min-width: max-content;
  padding-right: clamp(24px, 3.2vw, 50px);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(17px, 2vw, 31px);
  letter-spacing: .018em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
  animation: alxMarquee 26s linear infinite;
}

.alx-proof-track i {
  color: rgba(255,255,255,.92);
  font-size: .42em;
  line-height: 1;
}

.alx-proof-marquee:hover .alx-proof-track { animation-play-state: paused; }

@keyframes alxMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.alx-world-peptides {
  padding: clamp(76px, 8.2vw, 118px) var(--alx-edge) clamp(56px, 7.2vw, 92px);
  background: var(--alx-white);
}

.alx-world-peptides h2 {
  margin: 0 0 27px;
  color: var(--alx-black);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(46px, 5.45vw, 82px);
  font-weight: 400;
  letter-spacing: -.016em;
  line-height: .86;
  text-transform: uppercase;
}

.alx-world-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px clamp(10px, 1.12vw, 16px);
}

.alx-world-card,
.alx-world-offer-card,
.alx-world-banner {
  min-width: 0;
  color: var(--alx-black);
  outline-offset: 5px;
}

.alx-world-media,
.alx-world-offer-card,
.alx-world-banner {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f4f5f5;
  border-radius: 4px;
  transform: translateZ(0);
}

.alx-world-media {
  aspect-ratio: 217 / 144;
}

.alx-world-card--tall .alx-world-media {
  aspect-ratio: 1 / 1;
}

.alx-world-offer-card {
  aspect-ratio: 218 / 259;
  min-height: 100%;
}

.alx-world-media img,
.alx-world-offer-card img,
.alx-world-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: transform 480ms cubic-bezier(.2,.8,.2,1), filter 480ms cubic-bezier(.2,.8,.2,1);
}

.alx-world-card:hover .alx-world-media img,
.alx-world-card:focus-within .alx-world-media img,
.alx-world-offer-card:hover img,
.alx-world-offer-card:focus-visible img,
.alx-world-banner:hover img,
.alx-world-banner:focus-visible img {
  transform: scale(1.035);
  filter: contrast(1.04);
}

.alx-world-meta {
  margin: 12px 0 7px;
  color: #9c9c9c;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(7px, .72vw, 11px);
  letter-spacing: .072em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alx-world-card h3 {
  margin: 0 0 8px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(17px, 1.62vw, 25px);
  font-weight: 400;
  letter-spacing: -.006em;
  line-height: .95;
  text-transform: uppercase;
}

.alx-world-card h3 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size var(--alx-smooth);
}

.alx-world-card h3 a:hover,
.alx-world-card h3 a:focus-visible { background-size: 100% 1px; }

.alx-world-price {
  margin: 0;
  color: var(--alx-black);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(11px, 1.03vw, 15px);
  font-weight: 700;
  line-height: 1.2;
}

.alx-world-price span {
  margin-left: 5px;
  color: #9a9a9a;
  font-size: .72em;
  font-weight: 700;
  text-decoration: none;
}

.alx-world-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.12vw, 16px);
  margin-top: clamp(58px, 6.8vw, 78px);
}

.alx-world-banner {
  aspect-ratio: 446 / 315;
}

/* Story, inspiration, and newsletter sections */
.alx-peptide-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) 122px minmax(0, .98fr);
  align-items: center;
  column-gap: clamp(34px, 5.2vw, 86px);
  min-height: 330px;
  padding: clamp(58px, 6.8vw, 76px) var(--alx-edge) clamp(58px, 6.8vw, 78px);
  background: var(--alx-white);
}

.alx-story-heading h2 {
  margin: 0;
  color: var(--alx-black);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(46px, 5.08vw, 78px);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: .88;
  text-transform: uppercase;
}

.alx-story-badge {
  display: grid;
  place-items: center;
  width: clamp(92px, 9.05vw, 122px);
  height: clamp(92px, 9.05vw, 122px);
  justify-self: center;
}

.alx-story-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  animation: alxBadgeFloat 8s ease-in-out infinite;
}

.alx-story-copy {
  justify-self: end;
  max-width: 392px;
  color: var(--alx-black);
}

.alx-story-copy p {
  margin: 0;
  color: #4b4b4b;
  font-size: clamp(10px, .91vw, 13px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.47;
}

.alx-story-copy .alx-story-lead {
  margin-bottom: clamp(18px, 1.8vw, 25px);
  color: var(--alx-black);
  font-size: clamp(13px, 1.18vw, 17px);
  font-weight: 700;
  line-height: 1.34;
}

.alx-text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--alx-black);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(10px, .92vw, 13px);
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity var(--alx-fast), transform var(--alx-smooth);
}

.alx-text-link i {
  font-size: 1em;
  transition: transform var(--alx-smooth);
}

.alx-text-link:hover,
.alx-text-link:focus-visible { opacity: .72; }
.alx-text-link:hover i,
.alx-text-link:focus-visible i { transform: translate(2px, -2px); }

.alx-proof-marquee--story { margin-top: 0; }

.alx-inspiration {
  padding: clamp(72px, 8.25vw, 98px) var(--alx-edge) 12px;
  background: var(--alx-white);
}

.alx-inspiration-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.alx-inspiration-head h2,
.alx-inspiration-head a,
.alx-newsletter h2 {
  margin: 0;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: .88;
  text-transform: uppercase;
}

.alx-inspiration-head h2 {
  color: var(--alx-black);
  font-size: clamp(38px, 4.18vw, 63px);
}

.alx-inspiration-head a {
  color: #cfcfcf;
  font-size: clamp(34px, 3.72vw, 56px);
  transition: color var(--alx-smooth), transform var(--alx-smooth);
}

.alx-inspiration-head a:hover,
.alx-inspiration-head a:focus-visible {
  color: var(--alx-black);
  transform: translateY(-2px);
}

.alx-inspiration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
}

.alx-inspiration-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 5px;
  background: #efefef;
  outline-offset: 5px;
  transform: translateZ(0);
}

.alx-inspiration-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.alx-inspiration-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), filter 520ms cubic-bezier(.2,.8,.2,1);
}

.alx-inspiration-card:hover img,
.alx-inspiration-card:focus-visible img {
  transform: scale(1.055);
  filter: contrast(1.05) brightness(.98);
}

.alx-newsletter {
  position: relative;
  isolation: isolate;
  min-height: clamp(220px, 23.8vw, 282px);
  margin-top: clamp(14px, 1.5vw, 18px);
  overflow: hidden;
  border-radius: 5px;
  color: var(--alx-white);
  background: var(--alx-black);
}

.alx-newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/alx-newsletter-bg.png") center / cover no-repeat;
  filter: contrast(1.06) brightness(.78);
  transform: scale(1.005);
}

.alx-newsletter::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.05) 54%, rgba(0,0,0,.1));
  content: "";
  pointer-events: none;
}

.alx-newsletter-content {
  position: relative;
  display: grid;
  min-height: inherit;
  padding: clamp(24px, 2.15vw, 31px) clamp(22px, 2.15vw, 32px);
}

.alx-newsletter h2 {
  max-width: 620px;
  color: var(--alx-white);
  font-size: clamp(44px, 5.05vw, 76px);
  text-shadow: 0 3px 18px rgba(0,0,0,.26);
}

.alx-newsletter-form {
  position: absolute;
  right: clamp(22px, 2.1vw, 32px);
  bottom: clamp(22px, 2.05vw, 31px);
  left: clamp(22px, 2.1vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  align-items: center;
  gap: 0;
  min-height: 20px;
  border-bottom: 8px solid rgba(255,255,255,.96);
  border-radius: 999px;
}

.alx-newsletter-form input {
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 0 12px 8px 0;
  border: 0;
  outline: 0;
  color: var(--alx-white);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.alx-newsletter-form input::placeholder { color: rgba(255,255,255,.36); }

.alx-newsletter-form button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: var(--alx-black);
  background: rgba(255,255,255,.92);
  opacity: 0;
  transform: translateY(2px) scale(.92);
  transition: opacity var(--alx-smooth), transform var(--alx-smooth), background var(--alx-smooth);
}

.alx-newsletter:hover .alx-newsletter-form button,
.alx-newsletter-form:focus-within button {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.alx-newsletter-form button:hover,
.alx-newsletter-form button:focus-visible { background: var(--alx-white); }
.alx-newsletter-form button i { font-size: 17px; line-height: 1; }

.alx-newsletter-message {
  position: absolute;
  left: clamp(22px, 2.1vw, 32px);
  bottom: 6px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--alx-smooth), transform var(--alx-smooth);
}

.alx-newsletter-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes alxBadgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}


/* Footer */
.alx-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(10px, 1.05vw, 14px) var(--alx-edge) 0;
  color: var(--alx-black);
  background: var(--alx-white);
}

.alx-footer-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
}

.alx-footer-panel {
  min-height: clamp(150px, 15.8vw, 166px);
  padding: clamp(22px, 2.3vw, 28px) clamp(20px, 2.1vw, 26px);
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  background: var(--alx-white);
}

.alx-footer-panel h3 {
  margin: 0 0 22px;
  color: var(--alx-black);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 1.62vw, 24px);
  font-weight: 400;
  letter-spacing: -.006em;
  line-height: .92;
  text-transform: uppercase;
}

.alx-footer-links,
.alx-footer-contact {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.alx-footer-links a,
.alx-footer-contact a,
.alx-footer-contact span,
.alx-footer-legal a,
.alx-footer-bottom p,
.alx-footer-payments > span:first-child {
  color: #777;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(10px, .86vw, 12px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-footer-links a,
.alx-footer-contact a,
.alx-footer-legal a {
  position: relative;
  transition: color var(--alx-smooth), transform var(--alx-smooth);
}

.alx-footer-links a::after,
.alx-footer-contact a::after,
.alx-footer-legal a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--alx-smooth);
}

.alx-footer-links a:hover,
.alx-footer-contact a:hover,
.alx-footer-legal a:hover,
.alx-footer-links a:focus-visible,
.alx-footer-contact a:focus-visible,
.alx-footer-legal a:focus-visible {
  color: var(--alx-black);
  transform: translateX(1px);
}

.alx-footer-links a:hover::after,
.alx-footer-contact a:hover::after,
.alx-footer-legal a:hover::after,
.alx-footer-links a:focus-visible::after,
.alx-footer-contact a:focus-visible::after,
.alx-footer-legal a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.alx-footer-social {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 32px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  color: #c9c9c9;
  background: #fafafa;
  transition: color var(--alx-smooth), border-color var(--alx-smooth), transform var(--alx-smooth);
}

.alx-footer-social i { font-size: 13px; }
.alx-footer-social:hover,
.alx-footer-social:focus-visible {
  color: var(--alx-black);
  border-color: #d9d9d9;
  transform: translateY(-2px);
}

.alx-footer-wordmark {
  display: block;
  height: clamp(168px, 20.4vw, 262px);
  margin: clamp(16px, 1.82vw, 22px) -18px 0;
  overflow: hidden;
  border-bottom: 9px solid #f3f3f3;
  outline-offset: -5px;
}

.alx-footer-wordmark img {
  display: block;
  width: calc(100% + 36px);
  max-width: none;
  height: auto;
  margin-left: -18px;
  user-select: none;
  transform: translateY(0);
  transition: transform 520ms cubic-bezier(.2,.8,.2,1);
}

.alx-footer-wordmark:hover img,
.alx-footer-wordmark:focus-visible img { transform: translateY(-4px); }

.alx-footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 61px;
  gap: 18px;
  padding: 0 0 8px;
}

.alx-footer-bottom p { margin: 0; }

.alx-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.15vw, 18px);
}

.alx-footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.alx-footer-payments > span:first-child {
  margin-right: 2px;
  color: var(--alx-black);
}

.alx-payment-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 20px;
  padding: 4px 7px;
  border-radius: 3px;
  color: #222;
  background: #f5f5f5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: lowercase;
  white-space: nowrap;
}

.alx-payment-chip i { font-size: 11px; line-height: 1; }
.alx-payment-chip--orange { background: #f5aa27; color: #111; text-transform: none; font-size: 8px; letter-spacing: -.055em; }
.alx-payment-chip--coin i { color: #f79a21; }
.alx-payment-chip--eth i { color: #627eea; }

.alx-back-to-top {
  position: absolute;
  right: clamp(11px, 1.05vw, 17px);
  bottom: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  color: var(--alx-black);
  background: var(--alx-white);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: color var(--alx-smooth), background var(--alx-smooth), transform var(--alx-smooth);
}

.alx-back-to-top i { font-size: 14px; }
.alx-back-to-top:hover,
.alx-back-to-top:focus-visible {
  color: var(--alx-white);
  background: var(--alx-black);
  transform: translateY(-3px);
}

.alx-ui-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0,0,0,.56);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity var(--alx-smooth);
}
.alx-ui-overlay.is-visible { opacity: 1; }

.alx-search-modal,
.alx-account-panel,
.alx-cart-drawer {
  position: fixed;
  z-index: 130;
  color: var(--alx-black);
  background: var(--alx-white);
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
}

.alx-search-modal {
  top: 50%;
  left: 50%;
  width: min(calc(100% - 32px), 720px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  transform: translate(-50%, -46%) scale(.96);
  opacity: 0;
  transition: opacity var(--alx-smooth), transform var(--alx-smooth);
}

.alx-search-modal.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.alx-account-panel,
.alx-cart-drawer {
  top: 0;
  right: 0;
  width: min(100%, 410px);
  height: 100svh;
  padding: 34px;
  transform: translateX(102%);
  transition: transform var(--alx-smooth);
}

.alx-account-panel.is-visible,
.alx-cart-drawer.is-visible { transform: translateX(0); }

.alx-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--alx-line);
  border-radius: 50%;
  background: var(--alx-white);
}

.alx-close-btn i { font-size: 20px; }

.alx-search-modal h2,
.alx-account-panel h2,
.alx-cart-drawer h2 {
  margin: 0 46px 20px 0;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 38px;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-account-panel p,
.alx-cart-empty p {
  margin: 0 0 22px;
  color: var(--alx-muted);
  font-size: 14px;
  line-height: 1.7;
}

.alx-search-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--alx-line);
  border-radius: 999px;
  background: #fafafa;
}

.alx-search-form i { padding-left: 12px; font-size: 22px; color: #222; }
.alx-search-form input {
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.alx-search-form button,
.alx-account-form button,
.alx-cart-empty button,
.alx-checkout-btn {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 12px 20px;
  color: var(--alx-white);
  background: var(--alx-black);
  border: 1px solid var(--alx-black);
  border-radius: 999px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--alx-smooth), background var(--alx-smooth), color var(--alx-smooth);
}

.alx-search-form button:hover,
.alx-account-form button:hover,
.alx-cart-empty button:hover,
.alx-checkout-btn:hover {
  color: var(--alx-black);
  background: var(--alx-white);
  transform: translateY(-1px);
}

.alx-search-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--alx-muted);
  font-size: 14px;
}

.alx-search-result-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #f7f7f7;
  border: 1px solid var(--alx-line);
  border-radius: 16px;
}

.alx-account-form {
  display: grid;
  gap: 15px;
}
.alx-account-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}
.alx-account-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--alx-line);
  border-radius: 14px;
  outline: 0;
}
.alx-account-form input:focus { border-color: #111; }
.alx-account-form a {
  justify-self: center;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.alx-cart-empty {
  display: grid;
  justify-items: center;
  padding: 48px 18px;
  text-align: center;
  border: 1px dashed #d8d8d8;
  border-radius: 20px;
}
.alx-cart-empty i { margin-bottom: 10px; font-size: 46px; }

.alx-cart-item {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--alx-line);
  border-bottom: 1px solid var(--alx-line);
}
.alx-cart-item:not([hidden]) { display: flex; }
.alx-cart-item strong,
.alx-cart-item span { display: block; }
.alx-cart-item span { margin-top: 6px; color: var(--alx-muted); font-size: 13px; }

.alx-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--alx-line);
  border-radius: 999px;
  overflow: hidden;
}
.alx-qty-control button,
.alx-qty-control span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 34px;
  border: 0;
  background: var(--alx-white);
  font-weight: 800;
}
.alx-checkout-btn { width: 100%; margin-top: 20px; }

body.alx-lock-scroll { overflow: hidden; }

@media (max-width: 1120px) {
  :root { --alx-edge: clamp(58px, 6.42vw, 90px); }
  .alx-primary-nav { gap: 18px; }
  .alx-nav-link, .alx-action-btn { font-size: 14px; }
  .alx-action-btn i, .alx-menu-btn i { font-size: 23px; }
  .alx-header-actions::before { margin-right: 2px; }
  .alx-trust-card { padding-inline: 36px; }
}

@media (max-width: 920px) {
  :root { --alx-header-h: 64px; --alx-trust-reserve-h: 0px; --alx-trust-h: auto; --alx-edge: 32px; }
  .alx-header { grid-template-columns: auto 1fr auto; }
  .alx-primary-nav { display: none; }
  .alx-brand { justify-self: start; min-width: auto; }
  .alx-header-actions { gap: 12px; }
  .alx-action-btn span { display: none; }
  .alx-header-actions::before { display: none; }
  .alx-menu-btn { display: inline-grid; place-items: center; }
  .alx-hero-section { min-height: calc(100svh - var(--alx-alert-h) - var(--alx-header-h)); }
  .alx-hero-logo { width: min(88vw, 760px); }
  .alx-hero-content { min-height: 500px; transform: translateY(0); }
  .alx-trust-strip { grid-template-columns: 1fr; }
  .alx-trust-card {
    min-height: 104px;
    padding: 24px var(--alx-edge);
    border-right: 0;
    border-bottom: 1px solid var(--alx-line);
  }
  .alx-trust-card:last-child { border-bottom: 0; }
}

@media (max-width: 620px) {
  :root { --alx-alert-h: 30px; --alx-header-h: 58px; --alx-edge: 18px; }
  .alx-shipping-ribbon { font-size: 9px; line-height: 1.2; }
  .alx-header { padding-inline: var(--alx-edge); }
  .alx-brand { width: 104px; height: 32px; }
  .alx-brand-logo { max-height: 32px; }
  .alx-header-actions { gap: 8px; }
  .alx-action-btn { padding-inline: 2px; }
  .alx-hero-content {
    justify-content: center;
    min-height: 560px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .alx-hero-logo {
    width: min(94vw, 470px);
    max-width: 470px;
  }
  .alx-hero-copy { margin-top: 0; }
  .alx-hero-kicker { font-size: 38px; }
  .alx-hero-subtitle { max-width: 330px; margin-top: 14px; margin-bottom: 22px; font-size: 10px; }
  .alx-cta { min-width: 156px; min-height: 46px; padding: 14px 24px; font-size: 13px; }
  .alx-trust-card {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }
  .alx-search-modal { border-radius: 18px; }
  .alx-search-form { grid-template-columns: auto 1fr; border-radius: 18px; }
  .alx-search-form button { grid-column: 1 / -1; width: 100%; }
  .alx-account-panel, .alx-cart-drawer { padding: 28px 20px; }
}


@media (max-width: 920px) {
  .alx-new-gear { padding-top: 50px; padding-bottom: 86px; }
  .alx-section-head { align-items: flex-end; margin-bottom: 22px; }
  .alx-product-card { flex-basis: 286px; }
  .alx-product-meta { font-size: 8px; }
  .alx-product-card h3 { font-size: 21px; }
  .alx-potential { padding-bottom: 58px; }
  .alx-world-peptides { padding-top: 64px; }
  .alx-world-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 14px; }
  .alx-world-banner-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .alx-world-offer-card { min-height: auto; }
  .alx-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
  .alx-category-image { height: clamp(220px, 48vw, 360px); border-radius: 6px !important; }
  .alx-proof-track { animation-duration: 22s; }
}

@media (max-width: 620px) {
  .alx-new-gear { padding: 42px 0 62px var(--alx-edge); }
  .alx-section-head { gap: 16px; padding-right: var(--alx-edge); margin-bottom: 18px; }
  .alx-section-head h2,
  .alx-potential h2 { font-size: 42px; line-height: .9; }
  .alx-carousel-controls { width: 58px; height: 28px; }
  .alx-product-track { gap: 12px; }
  .alx-product-card { flex-basis: min(84vw, 316px); }
  .alx-potential { padding: 0 var(--alx-edge) 46px; }
  .alx-potential h2 { margin-bottom: 17px; }
  .alx-category-grid { grid-template-columns: 1fr; gap: 18px; }
  .alx-category-image { height: min(72vw, 330px); }
  .alx-category-title { margin-top: 10px; font-size: 18px; }
  .alx-proof-marquee { height: 39px; }
  .alx-proof-track { font-size: 20px; gap: 28px; padding-right: 28px; }
  .alx-world-peptides { padding: 52px var(--alx-edge) 56px; }
  .alx-world-peptides h2 { margin-bottom: 22px; font-size: 42px; line-height: .9; }
  .alx-world-product-grid { grid-template-columns: 1fr; gap: 28px; }
  .alx-world-card--tall .alx-world-media { aspect-ratio: 217 / 144; }
  .alx-world-offer-card { aspect-ratio: 218 / 190; }
  .alx-world-banner-grid { gap: 14px; margin-top: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

.alx-carousel-btn:disabled {
  opacity: .38;
  pointer-events: none;
}

@media (max-width: 920px) {
  .alx-peptide-story {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 58px var(--alx-edge) 62px;
  }
  .alx-story-badge { justify-self: start; order: 2; }
  .alx-story-copy { justify-self: start; order: 3; max-width: 640px; }
  .alx-story-heading { order: 1; }
  .alx-inspiration { padding-top: 70px; }
  .alx-inspiration-head { align-items: flex-end; margin-bottom: 24px; }
  .alx-inspiration-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .alx-newsletter { min-height: 244px; }
}

@media (max-width: 620px) {
  .alx-peptide-story { padding: 48px var(--alx-edge) 52px; gap: 22px; }
  .alx-story-heading h2 { font-size: 44px; line-height: .9; }
  .alx-story-badge { width: 86px; height: 86px; }
  .alx-story-copy .alx-story-lead { font-size: 14px; }
  .alx-story-copy p { font-size: 12px; line-height: 1.55; }
  .alx-inspiration { padding: 56px var(--alx-edge) 10px; }
  .alx-inspiration-head { display: grid; gap: 12px; margin-bottom: 20px; }
  .alx-inspiration-head h2 { font-size: 40px; }
  .alx-inspiration-head a { font-size: 30px; }
  .alx-inspiration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .alx-inspiration-card:last-child { grid-column: 1 / -1; aspect-ratio: 2 / 1; }
  .alx-newsletter { min-height: 220px; margin-top: 12px; }
  .alx-newsletter h2 { font-size: 42px; }
  .alx-newsletter-form { border-bottom-width: 6px; }
  .alx-newsletter-form button { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .alx-footer { padding-top: 22px; }
  .alx-footer-panels { grid-template-columns: 1fr; }
  .alx-footer-panel { min-height: 138px; }
  .alx-footer-social { margin-top: 22px; }
  .alx-footer-wordmark {
    height: clamp(112px, 23vw, 180px);
    margin-inline: -10px;
  }
  .alx-footer-wordmark img {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .alx-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 13px;
    padding: 18px 42px 22px 0;
  }
  .alx-footer-legal { justify-content: flex-start; flex-wrap: wrap; }
  .alx-footer-payments { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .alx-footer { padding-top: 18px; }
  .alx-footer-panel {
    min-height: 124px;
    padding: 20px;
  }
  .alx-footer-panel h3 { margin-bottom: 17px; font-size: 22px; }
  .alx-footer-wordmark {
    height: 88px;
    margin-top: 12px;
    border-bottom-width: 7px;
  }
  .alx-footer-bottom {
    min-height: auto;
    padding-top: 15px;
    padding-bottom: 23px;
  }
  .alx-footer-legal { gap: 12px; }
  .alx-payment-chip { min-height: 19px; padding: 4px 6px; }
  .alx-back-to-top { right: 10px; bottom: 14px; }
}

.alx-nav-link[aria-current="page"],
.alx-mobile-menu a[aria-current="page"] {
  color: #005f9f;
}

.alx-nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Global footer newsletter + structured payment footer overrides */
.alx-footer-newsletter-shell {
  width: min(100%, 1660px);
  margin: 0 auto clamp(14px, 1.55vw, 22px);
}

.alx-footer .alx-newsletter--global {
  min-height: clamp(250px, 24.5vw, 332px);
  margin-top: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.alx-footer .alx-newsletter--global .alx-newsletter-bg {
  background-position: 52% 50%;
  filter: contrast(1.13) brightness(.68) saturate(.9);
}

.alx-footer .alx-newsletter--global::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18)),
    linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.04) 54%, rgba(0,0,0,.28));
}

.alx-footer .alx-newsletter--global .alx-newsletter-content {
  padding: clamp(26px, 2.4vw, 38px) clamp(28px, 2.45vw, 42px);
}

.alx-footer .alx-newsletter--global h2 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 92px);
  line-height: .84;
  letter-spacing: -.018em;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form {
  right: clamp(28px, 2.45vw, 42px);
  bottom: clamp(29px, 2.4vw, 40px);
  left: clamp(28px, 2.45vw, 42px);
  grid-template-columns: minmax(0, 1fr) 44px;
  min-height: 34px;
  border-bottom: 9px solid rgba(255,255,255,.98);
  border-radius: 999px;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form input {
  height: 44px;
  padding-bottom: 12px;
  color: var(--alx-white);
  font-size: 16px;
  font-weight: 800;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form input::placeholder {
  color: rgba(255,255,255,.44);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form button {
  width: 40px;
  height: 40px;
  margin-bottom: 9px;
  border: 1px solid rgba(255,255,255,.3);
  opacity: 1;
  transform: none;
}

.alx-footer .alx-newsletter--global .alx-newsletter-message {
  left: clamp(28px, 2.45vw, 42px);
  bottom: 8px;
  font-size: 13px;
}

.alx-footer-bottom-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(310px, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 66px;
  padding: 10px 42px 14px 0;
  border-top: 8px solid #f3f3f3;
}

.alx-footer-bottom-card p {
  margin: 0;
}

.alx-footer-bottom-card p,
.alx-footer-bottom-card .alx-footer-legal a,
.alx-footer-bottom-card .alx-footer-payments > span:first-child {
  color: #737373;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(11px, .9vw, 13px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: .038em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-footer-bottom-card .alx-footer-payments > span:first-child {
  color: var(--alx-black);
  margin-right: 4px;
}

.alx-footer-bottom-card .alx-footer-payments {
  justify-content: flex-end;
  gap: 7px;
}

.alx-payment-badge {
  display: block;
  width: auto;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  transition: transform var(--alx-smooth), filter var(--alx-smooth);
}

.alx-payment-badge:hover,
.alx-payment-badge:focus-visible {
  filter: contrast(1.04);
  transform: translateY(-1px);
}

@media (max-width: 940px) {
  .alx-footer-newsletter-shell { margin-bottom: 14px; }

  .alx-footer .alx-newsletter--global {
    min-height: 238px;
  }

  .alx-footer-bottom-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding: 18px 42px 22px 0;
  }

  .alx-footer-bottom-card .alx-footer-legal,
  .alx-footer-bottom-card .alx-footer-payments {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .alx-footer .alx-newsletter--global {
    min-height: 218px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-content {
    padding: 22px 20px;
  }

  .alx-footer .alx-newsletter--global h2 {
    font-size: 48px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form {
    right: 20px;
    left: 20px;
    bottom: 26px;
    grid-template-columns: minmax(0, 1fr) 38px;
    border-bottom-width: 7px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form input {
    height: 38px;
    font-size: 13px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form button {
    width: 34px;
    height: 34px;
    margin-bottom: 7px;
  }

  .alx-footer-bottom-card {
    padding-top: 15px;
    padding-bottom: 23px;
    gap: 13px;
  }

  .alx-payment-badge { height: 22px; }
}

/* Requested footer/newsletter refinements */
.alx-footer .alx-newsletter--global {
  min-height: clamp(276px, 25.2vw, 350px);
}

.alx-footer .alx-newsletter--global .alx-newsletter-content {
  position: relative;
  padding: clamp(30px, 2.7vw, 46px) clamp(30px, 2.9vw, 50px);
}

.alx-footer .alx-newsletter--global .alx-newsletter-content::after {
  position: absolute;
  right: clamp(30px, 2.9vw, 50px);
  bottom: clamp(31px, 2.55vw, 42px);
  left: clamp(30px, 2.9vw, 50px);
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  content: "";
  pointer-events: none;
  transform-origin: left center;
  transition: opacity var(--alx-smooth), transform var(--alx-smooth);
}

.alx-footer .alx-newsletter--global.is-newsletter-open .alx-newsletter-content::after {
  opacity: 0;
  transform: scaleX(.1);
}

.alx-footer .alx-newsletter--global h2 {
  max-width: 840px;
  font-size: clamp(62px, 5.7vw, 98px);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form {
  right: auto;
  bottom: clamp(19px, 1.95vw, 31px);
  left: clamp(30px, 2.9vw, 50px);
  z-index: 2;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  width: 56px;
  min-height: 56px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: width 520ms cubic-bezier(.2,.8,.2,1), background var(--alx-smooth), box-shadow var(--alx-smooth);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form.is-open {
  width: min(650px, calc(100% - clamp(60px, 5.8vw, 100px)));
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 58px rgba(0,0,0,.24);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form input {
  height: 56px;
  min-width: 0;
  padding: 0 24px 0 5px;
  color: var(--alx-black);
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
  transition: opacity 280ms ease 140ms, transform 380ms cubic-bezier(.2,.8,.2,1) 80ms;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form.is-open input {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form input::placeholder {
  color: rgba(0,0,0,.42);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form button,
.alx-footer .alx-newsletter--global .alx-newsletter-form .alx-newsletter-action {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  color: var(--alx-black);
  background: var(--alx-white);
  opacity: 1;
  transform: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  transition: color var(--alx-smooth), background var(--alx-smooth), transform var(--alx-smooth), box-shadow var(--alx-smooth);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form.is-open button,
.alx-footer .alx-newsletter--global .alx-newsletter-form.is-open .alx-newsletter-action {
  color: var(--alx-white);
  background: var(--alx-black);
  box-shadow: none;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form button:hover,
.alx-footer .alx-newsletter--global .alx-newsletter-form button:focus-visible {
  transform: translateY(-2px);
}

.alx-footer .alx-newsletter--global .alx-newsletter-form button i {
  font-size: 22px;
}

.alx-footer .alx-newsletter--global .alx-newsletter-message {
  left: clamp(98px, 7vw, 128px);
  bottom: clamp(5px, .6vw, 10px);
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.alx-footer-panel h3 {
  font-size: clamp(24px, 2vw, 33px);
}

.alx-footer-links,
.alx-footer-contact {
  gap: 13px;
}

.alx-footer-links a,
.alx-footer-contact a,
.alx-footer-contact span {
  font-size: clamp(14px, 1.08vw, 18px);
  line-height: 1.08;
}

.alx-footer-bottom-card p,
.alx-footer-bottom-card .alx-footer-legal a,
.alx-footer-bottom-card .alx-footer-payments > span:first-child {
  font-size: clamp(12px, .96vw, 15px);
}

@media (max-width: 620px) {
  .alx-footer .alx-newsletter--global {
    min-height: 238px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-content {
    padding: 24px 20px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-content::after {
    right: 20px;
    bottom: 29px;
    left: 20px;
    height: 7px;
  }

  .alx-footer .alx-newsletter--global h2 {
    font-size: 50px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form {
    left: 20px;
    bottom: 13px;
    grid-template-columns: 48px minmax(0, 1fr);
    width: 48px;
    min-height: 48px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form.is-open {
    width: calc(100% - 40px);
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form input {
    height: 48px;
    padding-right: 18px;
    font-size: 14px;
  }

  .alx-footer .alx-newsletter--global .alx-newsletter-form button,
  .alx-footer .alx-newsletter--global .alx-newsletter-form .alx-newsletter-action {
    width: 48px;
    height: 48px;
  }

  .alx-footer-panel h3 { font-size: 28px; }
  .alx-footer-links a,
  .alx-footer-contact a,
  .alx-footer-contact span { font-size: 16px; }
}

.alx-footer .alx-newsletter--global .alx-newsletter-form input {
  visibility: hidden;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form.is-open input {
  visibility: visible;
}

/* Final footer and newsletter refinements */
.alx-footer .alx-newsletter--global {
  min-height: 400px;
  border-radius: 16px;
}

.alx-footer .alx-newsletter--global .alx-newsletter-form {
  bottom: 70px;
}

.alx-footer .alx-newsletter--global .alx-newsletter-content::after {
  bottom: 82px;
}

.alx-footer .alx-newsletter--global .alx-newsletter-message {
  bottom: 33px;
}

.alx-footer-bottom-card {
  width: min(100%, 1660px);
  margin: 18px auto 22px;
  padding: 18px clamp(18px, 2.2vw, 34px);
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.035);
  grid-template-columns: minmax(260px, 1fr) auto minmax(280px, 1fr);
  min-height: 0;
}

.alx-footer-bottom-copy,
.alx-footer-bottom-copy span,
.alx-footer-bottom-card p,
.alx-footer-bottom-card .alx-footer-legal a,
.alx-footer-bottom-card .alx-footer-payments > span:first-child {
  color: #565656;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-footer-bottom-copy {
  justify-self: start;
}

.alx-footer-bottom-card .alx-footer-legal {
  justify-self: center;
  gap: clamp(18px, 1.7vw, 30px);
}

.alx-footer-bottom-card .alx-footer-payments {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.alx-footer-payment-badges {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.alx-payment-badge {
  height: 27px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  background: #fff;
}

.alx-footer-panel h3 {
  font-size: clamp(28px, 2.25vw, 38px);
}

.alx-footer-links a,
.alx-footer-contact a,
.alx-footer-contact span {
  font-size: clamp(16px, 1.2vw, 21px);
}

@media (max-width: 940px) {
  .alx-footer .alx-newsletter--global {
    min-height: 320px;
  }
  .alx-footer .alx-newsletter--global .alx-newsletter-form {
    bottom: 50px;
  }
  .alx-footer .alx-newsletter--global .alx-newsletter-content::after {
    bottom: 62px;
  }
  .alx-footer-bottom-card {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }
  .alx-footer-bottom-card .alx-footer-legal,
  .alx-footer-bottom-card .alx-footer-payments {
    justify-self: start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .alx-footer .alx-newsletter--global {
    min-height: 260px;
    border-radius: 12px;
  }
  .alx-footer .alx-newsletter--global .alx-newsletter-form {
    bottom: 35px;
  }
  .alx-footer .alx-newsletter--global .alx-newsletter-content::after {
    bottom: 47px;
  }
  .alx-footer-bottom-card {
    margin-top: 14px;
    padding: 16px;
    border-radius: 12px;
  }
  .alx-footer-bottom-copy,
  .alx-footer-bottom-copy span,
  .alx-footer-bottom-card p,
  .alx-footer-bottom-card .alx-footer-legal a,
  .alx-footer-bottom-card .alx-footer-payments > span:first-child {
    font-size: 14px;
  }
  .alx-payment-badge { height: 24px; }
}

/* Draggable carousel polish */
.alx-product-viewport,
.alx-related-track {
  cursor: grab;
  touch-action: pan-y;
}
.alx-product-viewport.is-dragging,
.alx-related-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.alx-product-viewport.is-dragging a,
.alx-related-track.is-dragging a {
  pointer-events: none;
}
.alx-product-viewport img,
.alx-related-track img {
  -webkit-user-drag: none;
  user-select: none;
}

/* Product loop, cart, footer, and ticker refinements */
.alx-proof-marquee {
  background: var(--phoenix-gradient);
}

.alx-product-body { min-width: 0; }
.alx-product-media .alx-badge { pointer-events: none; }
.alx-product-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.alx-product-card .alx-product-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  flex: 0 0 auto;
  margin-top: -2px;
  padding: 0 14px;
  border: 1px solid var(--alx-black);
  border-radius: 999px;
  color: var(--alx-black);
  background: var(--alx-white);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  letter-spacing: .035em;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--alx-smooth), background var(--alx-smooth), transform var(--alx-smooth), border-color var(--alx-smooth);
}
.alx-product-card .alx-product-add:hover,
.alx-product-card .alx-product-add:focus-visible,
.alx-product-card .alx-product-add.is-added {
  color: var(--alx-white);
  background: var(--alx-black);
  transform: translateY(-1px);
}
.alx-product-card .alx-product-add i { font-size: 15px; }
.alx-product-card.is-hidden { display: none; }
.alx-product-card--world { flex: initial; scroll-snap-align: unset; }
.alx-product-card--world .alx-product-media { aspect-ratio: 295 / 196; }
.alx-product-card--world.alx-product-card:first-child .alx-product-media { background: #f1f3f3; }
.alx-product-card--world .alx-product-meta { font-size: clamp(10px, .73vw, 13px); }
.alx-product-card--world h3 { font-size: clamp(26px, 2.15vw, 38px); }
.alx-product-card--world .alx-product-price { font-size: 16px; }
.alx-product-card--world .alx-product-foot { align-items: center; }
.alx-product-card--shop { flex: initial; scroll-snap-align: unset; }
.alx-product-card--shop .alx-product-media { aspect-ratio: 295 / 196; }
.alx-product-card--shop .alx-product-meta { font-size: clamp(10px, .73vw, 13px); }
.alx-product-card--shop h3 { font-size: clamp(26px, 2.15vw, 38px); }
.alx-product-card--shop .alx-product-price { font-size: 16px; }

.alx-toast {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1000;
  max-width: min(340px, calc(100vw - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--alx-white);
  background: rgba(0,0,0,.88);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}
.alx-toast.is-visible { opacity: 1; transform: translateY(0); }

.alx-footer .alx-newsletter--global {
  min-height: 400px;
  border-radius: 16px;
}
.alx-footer .alx-newsletter--global .alx-newsletter-form {
  bottom: 120px;
}
.alx-footer-panel { border-radius: 12px; }
.alx-footer-wordmark img { height: 120%; }

@media (max-width: 900px) {
  .alx-product-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .alx-footer .alx-newsletter--global { min-height: 340px; }
  .alx-footer .alx-newsletter--global .alx-newsletter-form { bottom: 94px; }
  .alx-footer-wordmark img { height: 112%; }
}

@media (max-width: 620px) {
  .alx-product-card .alx-product-add { width: 100%; justify-content: center; min-height: 38px; }
  .alx-footer .alx-newsletter--global { min-height: 280px; }
  .alx-footer .alx-newsletter--global .alx-newsletter-form { bottom: 72px; }
  .alx-footer-wordmark img { height: 105%; }
}
.alx-product-card .alx-product-media img { object-fit: contain; }
.alx-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 19px;
  padding: 0 7px;
  border-radius: 3px;
  color: #fff;
  background: #a9a9a9;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.alx-badge--dark { background: #050505; }

/* Home World Class Peptides grid: 7 global product cards + 1 fixed promo tile */
.alx-world-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.alx-world-product-grid > .alx-product-card--world,
.alx-world-product-grid > .alx-world-offer-card {
  min-height: 100%;
}

.alx-product-card--world {
  display: flex;
  flex-direction: column;
}

.alx-product-card--world .alx-product-media {
  aspect-ratio: 218 / 259;
  min-height: clamp(300px, 27.4vw, 444px);
}

.alx-product-card--world .alx-product-media img {
  padding: clamp(18px, 1.6vw, 28px);
}

.alx-product-card--world .alx-product-body {
  flex: 0 0 auto;
}

.alx-world-offer-card {
  height: 100%;
  min-height: clamp(398px, 38vw, 585px);
}

@media (max-width: 1024px) {
  .alx-world-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .alx-product-card--world .alx-product-media {
    min-height: clamp(280px, 48vw, 460px);
  }
  .alx-world-offer-card {
    min-height: clamp(400px, 64vw, 620px);
  }
}

@media (max-width: 620px) {
  .alx-world-product-grid {
    grid-template-columns: 1fr;
  }
  .alx-product-card--world .alx-product-media {
    aspect-ratio: 1 / 1.12;
    min-height: clamp(340px, 98vw, 520px);
  }
  .alx-product-card--world .alx-product-media img {
    padding: 22px;
  }
  .alx-world-offer-card {
    min-height: clamp(420px, 116vw, 620px);
  }
}

/* Product grid structure fix: balanced 4x2 layout with 7 products + 1 promo tile */
.alx-world-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: start;
  gap: clamp(22px, 2.1vw, 34px) clamp(12px, 1.15vw, 18px);
}

.alx-world-product-grid > .alx-product-card--world,
.alx-world-product-grid > .alx-world-offer-card {
  min-width: 0;
  min-height: 0;
  height: auto;
}

.alx-product-card--world {
  display: block;
  min-height: 0;
}

.alx-product-card--world .alx-product-media {
  aspect-ratio: 295 / 214;
  min-height: 0;
  height: auto;
  background: #f4f5f5;
}

.alx-product-card--world .alx-product-media img {
  width: 100%;
  height: 100%;
  padding: clamp(16px, 1.35vw, 24px);
  object-fit: contain;
}

.alx-product-card--world .alx-product-meta {
  margin-top: 11px;
  margin-bottom: 7px;
  font-size: clamp(8px, .68vw, 11px);
}

.alx-product-card--world h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.48vw, 27px);
}

.alx-product-card--world .alx-product-price {
  font-size: clamp(13px, .95vw, 16px);
}

.alx-product-card--world .alx-product-add {
  min-height: 30px;
  padding-inline: 12px;
  font-size: 13px;
}

.alx-world-offer-card {
  display: block;
  aspect-ratio: 295 / 326;
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: hidden;
}

.alx-world-offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .alx-world-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alx-product-card--world .alx-product-media {
    aspect-ratio: 295 / 218;
    min-height: 0;
  }

  .alx-world-offer-card {
    aspect-ratio: 295 / 322;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .alx-world-product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .alx-product-card--world .alx-product-media {
    aspect-ratio: 295 / 226;
    min-height: 0;
  }

  .alx-product-card--world .alx-product-media img {
    padding: 20px;
  }

  .alx-world-offer-card {
    aspect-ratio: 295 / 310;
    min-height: 0;
  }
}

/* Final product grid and carousel interaction corrections */
.alx-product-viewport.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
}
.alx-product-viewport.is-dragging * {
  user-select: none;
}
.alx-product-viewport .alx-product-add {
  touch-action: manipulation;
}

.alx-world-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.alx-world-product-grid > .alx-product-card--world,
.alx-world-product-grid > .alx-world-offer-card {
  height: 100%;
  min-height: 0;
}
.alx-product-card--world {
  display: flex;
  flex-direction: column;
}
.alx-product-card--world .alx-product-media {
  flex: 0 0 auto;
  aspect-ratio: 295 / 214;
  min-height: 0;
}
.alx-product-card--world .alx-product-body {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
  flex-direction: column;
}
.alx-product-card--world .alx-product-foot {
  margin-top: auto;
}
.alx-world-offer-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #050505;
  aspect-ratio: auto;
}
.alx-world-offer-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .alx-world-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }
}

@media (max-width: 620px) {
  .alx-world-product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .alx-world-offer-card {
    aspect-ratio: 295 / 214;
    height: auto;
  }
  .alx-world-offer-card img {
    position: static;
  }
}

/* Refined inline promo tile: same grid footprint as product cards, no overlap */
.alx-world-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.alx-world-product-grid > .alx-product-card--world,
.alx-world-product-grid > .alx-world-offer-card--inline {
  min-width: 0;
  height: 100%;
  min-height: 0;
}

.alx-world-offer-card--inline {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: clamp(16px, 1.45vw, 24px);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, .22), transparent 24%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .18), transparent 30%),
    linear-gradient(138deg, #050505 0%, #1f1f1f 46%, #595959 100%);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.alx-world-offer-card--inline:hover,
.alx-world-offer-card--inline:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, .2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .14), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.alx-world-offer-card--inline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 22px), linear-gradient(0deg, rgba(255,255,255,.055) 0 1px, transparent 1px 22px);
  opacity: .35;
  mask-image: linear-gradient(135deg, #000 0%, transparent 72%);
}

.alx-world-offer-glow {
  position: absolute;
  right: -28%;
  bottom: -36%;
  z-index: -1;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  filter: blur(22px);
}

.alx-world-offer-kicker,
.alx-world-offer-main,
.alx-world-offer-copy,
.alx-world-offer-cta {
  position: relative;
  z-index: 2;
}

.alx-world-offer-kicker {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(12px, .9vw, 16px);
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-world-offer-main {
  max-width: 68%;
  margin-top: auto;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(42px, 4.25vw, 76px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.alx-world-offer-copy {
  max-width: 72%;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(11px, .86vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.alx-world-offer-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-top: 4px;
  padding: 0 13px;
  border-radius: 999px;
  color: #000;
  background: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.alx-world-offer-card--inline .alx-world-offer-product {
  position: absolute !important;
  right: -15% !important;
  bottom: -16% !important;
  z-index: 1;
  display: block;
  width: 68% !important;
  max-width: 280px;
  height: auto !important;
  opacity: .48;
  object-fit: contain !important;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,.5));
  pointer-events: none;
  transform: rotate(-7deg);
}

.alx-world-offer-card--inline:hover .alx-world-offer-product,
.alx-world-offer-card--inline:focus-visible .alx-world-offer-product {
  transform: rotate(-5deg) translateY(-4px);
}

@media (max-width: 1024px) {
  .alx-world-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .alx-world-offer-main { max-width: 62%; }
  .alx-world-offer-copy { max-width: 64%; }
  .alx-world-offer-card--inline .alx-world-offer-product {
    right: -9% !important;
    bottom: -17% !important;
    width: 56% !important;
    max-width: 260px;
  }
}

@media (max-width: 620px) {
  .alx-world-product-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .alx-world-offer-card--inline {
    min-height: 310px;
    height: auto;
    padding: 22px;
  }

  .alx-world-offer-main { max-width: 58%; font-size: clamp(52px, 19vw, 82px); }
  .alx-world-offer-copy { max-width: 58%; }
  .alx-world-offer-card--inline .alx-world-offer-product {
    right: -12% !important;
    bottom: -20% !important;
    width: 58% !important;
    max-width: 250px;
  }
}

/* Final responsive product card hover UI + hero fixes */
.alx-product-card {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.alx-product-card:hover,
.alx-product-card:focus-within {
  background: #fff;
  border-color: #dedede;
  box-shadow: 0 20px 44px rgba(0,0,0,.11);
  transform: translateY(-2px);
}

.alx-product-media {
  position: relative;
  border-radius: 10px;
  background: #f4f4f4;
}

.alx-product-image-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  outline-offset: 4px;
}

.alx-product-image-link img,
.alx-product-media > img {
  object-fit: contain !important;
  padding: clamp(18px, 1.75vw, 30px);
}

.alx-product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.alx-product-badges .alx-badge {
  position: static;
  top: auto;
  left: auto;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 13px;
}

.alx-product-hover-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.alx-product-card:hover .alx-product-hover-actions,
.alx-product-card:focus-within .alx-product-hover-actions {
  opacity: 1;
  transform: translateX(0);
}

.alx-product-hover-actions button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #050505;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.alx-product-hover-actions button:hover,
.alx-product-hover-actions button:focus-visible,
.alx-product-hover-actions button.is-active {
  color: #fff;
  background: #050505;
  transform: translateY(-2px);
}

.alx-product-hover-actions i { font-size: 25px; line-height: 1; }

.alx-product-quick {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  min-width: 154px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #006bb6;
  box-shadow: 0 14px 26px rgba(0,130,220,.25);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.alx-product-card:hover .alx-product-quick,
.alx-product-card:focus-within .alx-product-quick {
  opacity: 1;
  transform: translate(-50%, 0);
}

.alx-product-quick:hover,
.alx-product-quick:focus-visible { background: #003d73; }

.alx-product-body {
  padding-top: 12px;
}

.alx-product-card:hover .alx-product-body,
.alx-product-card:focus-within .alx-product-body {
  padding-inline: 22px;
  padding-bottom: 22px;
}

.alx-product-foot {
  align-items: center;
}

.alx-product-card .alx-product-add {
  min-height: 46px;
  padding: 0 22px;
  border-color: #050505;
  color: #fff;
  background: #050505;
  font-size: 19px;
  white-space: nowrap;
}

.alx-product-card .alx-product-add:hover,
.alx-product-card .alx-product-add:focus-visible,
.alx-product-card .alx-product-add.is-added {
  color: #050505;
  background: #fff;
  border-color: #050505;
}

.alx-product-card--carousel {
  flex-basis: clamp(300px, 27vw, 432px);
}

.alx-product-card--carousel .alx-product-media {
  aspect-ratio: 1 / .72;
}

.alx-product-card--world,
.alx-product-card--shop {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.alx-product-card--world .alx-product-media,
.alx-product-card--shop .alx-product-media {
  aspect-ratio: 1 / .72;
  min-height: 0 !important;
}

.alx-product-card--world .alx-product-body,
.alx-product-card--shop .alx-product-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.alx-product-card--world .alx-product-foot,
.alx-product-card--shop .alx-product-foot {
  margin-top: auto;
}

.alx-world-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: clamp(22px, 2.2vw, 36px) clamp(14px, 1.35vw, 24px);
}

.alx-world-product-grid > .alx-product-card--world,
.alx-world-product-grid > .alx-world-offer-card--inline {
  height: 100%;
  min-height: 0;
}

.alx-world-offer-card--inline {
  border-radius: 14px;
}

.alx-shop-grid {
  align-items: stretch;
}

.alx-shop-grid .alx-product-card--shop {
  height: 100%;
}

.alx-shop-grid.is-list .alx-product-card--shop {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px;
}

.alx-shop-grid.is-list .alx-product-card--shop .alx-product-media {
  aspect-ratio: 295 / 170;
}

.alx-shop-grid.is-list .alx-product-card--shop .alx-product-body {
  padding-top: 0;
}

/* Quick view modal */
.alx-quick-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.alx-quick-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.alx-quick-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(4px);
}

.alx-quick-modal-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(260px, 440px);
  gap: clamp(24px, 4vw, 56px);
  width: min(920px, 100%);
  padding: clamp(24px, 3vw, 42px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  transform: translateY(18px) scale(.98);
  transition: transform 220ms ease;
}

.alx-quick-modal.is-visible .alx-quick-modal-card { transform: translateY(0) scale(1); }

.alx-quick-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
}

.alx-quick-modal-close i { font-size: 24px; }
.alx-quick-modal-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 14px;
  background: #f4f4f4;
}
.alx-quick-modal-media img {
  width: min(72%, 320px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.15));
}
.alx-quick-modal-copy { align-self: center; }
.alx-quick-modal-copy p {
  margin: 0 0 12px;
  color: #999;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  letter-spacing: .06em;
  line-height: 1.1;
  text-transform: uppercase;
}
.alx-quick-modal-copy h2 {
  margin: 0 0 14px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(44px, 5.5vw, 78px);
  line-height: .86;
  text-transform: uppercase;
}
.alx-quick-modal-copy strong {
  display: block;
  margin-bottom: 26px;
  font-size: 22px;
}
.alx-quick-modal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.alx-quick-modal-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #050505;
  border-radius: 999px;
  color: #050505;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

/* Hero responsive corrections */
@media (max-width: 1180px) {
  .alx-hero-section {
    min-height: clamp(600px, 78svh, 820px);
  }
  .alx-hero-logo {
    width: min(78vw, 900px);
    max-width: calc(100vw - 42px);
  }
  .alx-hero-content {
    padding-inline: 22px;
    transform: translateY(4px);
  }
}

@media (max-width: 900px) {
  .alx-hero-section {
    min-height: clamp(620px, 82svh, 780px);
  }
  .alx-hero-background {
    background-position: 58% center;
  }
  .alx-hero-logo {
    width: min(94vw, 760px);
  }
  .alx-hero-kicker {
    font-size: clamp(44px, 10vw, 72px);
  }
  .alx-hero-subtitle {
    max-width: 520px;
    font-size: clamp(12px, 2.2vw, 15px);
  }
  .alx-cta {
    min-width: 176px;
    min-height: 52px;
    padding: 14px 26px;
  }
  .alx-world-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .alx-product-card:hover .alx-product-body,
  .alx-product-card:focus-within .alx-product-body {
    padding-inline: 16px;
    padding-bottom: 18px;
  }
  .alx-product-card .alx-product-add {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 17px;
  }
}

@media (hover: none) {
  .alx-product-hover-actions,
  .alx-product-quick {
    opacity: 1;
    transform: none;
  }
  .alx-product-quick { transform: translateX(-50%); }
}

@media (max-width: 620px) {
  .alx-hero-section {
    min-height: clamp(560px, 84svh, 700px);
  }
  .alx-hero-content {
    justify-content: center;
    padding-inline: 14px;
  }
  .alx-hero-logo {
    width: min(108vw, 560px);
    max-width: none;
  }
  .alx-hero-kicker {
    font-size: clamp(38px, 13vw, 58px);
  }
  .alx-hero-subtitle {
    max-width: 340px;
    margin: 12px 0 20px;
    font-size: 11px;
  }
  .alx-product-card--carousel {
    flex-basis: min(86vw, 340px);
  }
  .alx-world-product-grid,
  .alx-shop-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .alx-product-card--world .alx-product-media,
  .alx-product-card--shop .alx-product-media,
  .alx-product-card--carousel .alx-product-media {
    aspect-ratio: 1 / .88;
  }
  .alx-product-hover-actions {
    top: 12px;
    right: 12px;
    gap: 8px;
  }
  .alx-product-hover-actions button {
    width: 42px;
    height: 42px;
  }
  .alx-product-hover-actions i { font-size: 22px; }
  .alx-product-quick {
    min-width: 138px;
    min-height: 42px;
    bottom: 16px;
    font-size: 20px;
  }
  .alx-product-foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .alx-product-card .alx-product-add {
    width: 100%;
    justify-content: center;
  }
  .alx-shop-grid.is-list .alx-product-card--shop {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .alx-quick-modal-card {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 32px);
    overflow: auto;
  }
  .alx-quick-modal-media { min-height: 260px; }
}

.alx-quick-modal-actions .alx-product-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #050505;
  border-radius: 999px;
  color: #fff;
  background: #050505;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.alx-quick-modal-actions .alx-product-add:hover,
.alx-quick-modal-actions .alx-product-add:focus-visible,
.alx-quick-modal-actions .alx-product-add.is-added {
  color: #050505;
  background: #fff;
  transform: translateY(-1px);
}

/* Requested polish: stable padded product cards, black quick-view, mobile trust-card spacing */
.alx-product-card {
  padding: clamp(10px, 0.85vw, 14px);
  box-sizing: border-box;
}

.alx-product-card .alx-product-media {
  border-radius: 10px;
}

.alx-product-card .alx-product-body {
  padding: 14px 2px 0;
}

.alx-product-card:hover .alx-product-body,
.alx-product-card:focus-within .alx-product-body {
  padding: 14px 2px 0;
}

.alx-product-quick {
  background: #050505;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18);
}

.alx-product-quick:hover,
.alx-product-quick:focus-visible {
  color: #050505;
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
}

@media (max-width: 620px) {
  .alx-trust-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
  }

  .alx-trust-icon {
    width: 48px;
    height: 48px;
  }

  .alx-trust-icon i,
  .alx-trust-icon svg {
    font-size: 48px;
    width: 48px;
    height: 48px;
  }
}

/* Final UX polish: compact quick view, unclipped carousel shadows, mobile alignment, and hero responsiveness */
.alx-product-viewport {
  padding-block: 24px 34px;
  margin-block: -24px -34px;
}

.alx-product-track {
  padding-block: 0;
}

.alx-product-quick {
  min-width: 124px;
  min-height: 38px;
  padding-inline: 18px;
  bottom: 18px;
  font-size: 18px;
}

.alx-product-card:hover,
.alx-product-card:focus-within {
  transform: none;
}

.alx-hero-section {
  min-height: min(820px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h) - var(--alx-trust-reserve-h)));
}

@media (max-width: 900px) {
  .alx-hero-section {
    min-height: clamp(540px, 76svh, 700px);
  }

  .alx-hero-content {
    width: 100%;
    min-height: auto;
    padding: 48px 24px 54px;
    transform: none;
  }

  .alx-hero-logo {
    width: min(90vw, 680px);
    max-width: 90vw;
  }

  .alx-hero-copy {
    width: min(100%, 620px);
    margin-top: 2px;
  }

  .alx-hero-kicker {
    font-size: clamp(38px, 8.6vw, 64px);
    line-height: .9;
  }

  .alx-hero-subtitle {
    max-width: 460px;
    margin: 12px auto 22px;
    font-size: clamp(11px, 1.8vw, 14px);
    line-height: 1.14;
  }
}

@media (max-width: 620px) {
  .alx-hero-section {
    min-height: clamp(480px, 72svh, 620px);
  }

  .alx-hero-background {
    background-position: 56% center;
  }

  .alx-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 42px 16px 48px;
    text-align: center;
  }

  .alx-hero-logo {
    width: min(92vw, 430px);
    max-width: 92vw;
    filter: drop-shadow(0 12px 14px rgba(0,0,0,.55));
  }

  .alx-hero-copy {
    display: grid;
    justify-items: center;
    width: min(100%, 360px);
  }

  .alx-hero-kicker {
    font-size: clamp(32px, 10.8vw, 48px);
    line-height: .9;
    letter-spacing: .005em;
  }

  .alx-hero-subtitle {
    max-width: 300px;
    margin: 10px auto 18px;
    font-size: 10px;
    line-height: 1.16;
  }

  .alx-cta {
    min-width: 142px;
    min-height: 42px;
    padding: 12px 20px;
    font-size: 12px;
  }

  .alx-product-viewport {
    padding-block: 22px 32px;
    margin-block: -22px -32px;
  }

  .alx-product-card {
    text-align: center;
  }

  .alx-product-card .alx-product-body {
    display: grid;
    justify-items: center;
    padding-inline: 4px;
  }

  .alx-product-meta {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
  }

  .alx-product-card h3,
  .alx-product-price {
    text-align: center;
  }

  .alx-product-foot {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .alx-product-card .alx-product-add {
    width: min(100%, 220px);
    margin-inline: auto;
  }

  .alx-product-hover-actions {
    right: 10px;
  }

  .alx-product-quick {
    min-width: 112px;
    min-height: 36px;
    padding-inline: 15px;
    bottom: 14px;
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .alx-hero-section {
    min-height: 460px;
  }

  .alx-hero-logo {
    width: 94vw;
    max-width: 94vw;
  }

  .alx-hero-kicker {
    font-size: clamp(30px, 11vw, 42px);
  }

  .alx-hero-subtitle {
    max-width: 280px;
  }
}

/* Final requested sizing tweaks: compact product actions, larger hero CTA, and extra carousel breathing room */
.alx-cta {
  font-size: 20px;
  letter-spacing: .045em;
}
.alx-cta i { font-size: 23px; }

.alx-product-viewport {
  padding-block: 28px 62px;
  margin-block: -28px -62px;
}

.alx-product-card .alx-product-add {
  min-height: 38px;
  padding: 0 16px;
  font-size: 16px;
  letter-spacing: .04em;
  gap: 5px;
}
.alx-product-card .alx-product-add i { font-size: 14px; }

@media (max-width: 760px) {
  .alx-product-card .alx-product-add {
    width: auto;
    min-width: 138px;
    max-width: max-content;
    justify-content: center;
    min-height: 36px;
    padding: 0 15px;
    font-size: 15px;
    margin-inline: auto;
  }
  .alx-product-foot {
    justify-content: center;
    align-items: center;
  }
  .alx-product-viewport {
    padding-block: 24px 58px;
    margin-block: -24px -58px;
  }
}

@media (max-width: 620px) {
  .alx-cta {
    min-width: 150px;
    min-height: 44px;
    padding: 12px 20px;
    font-size: 15px;
  }
  .alx-cta i { font-size: 18px; }
}


/* Global Peptide Sciences rebrand accents */
.alx-hero-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 100%, rgba(0,130,220,.28), transparent 62%);
  content: "";
  pointer-events: none;
}
.alx-hero-logo { width: min(58vw, 980px); }
.alx-brand { width: clamp(56px, 4.6vw, 82px); height: 58px; }
.alx-brand-logo { max-height: 58px; filter: drop-shadow(0 6px 12px rgba(0,130,220,.20)); }
.alx-cta,
.alx-product-card .alx-product-add:hover,
.alx-product-card .alx-product-add:focus-visible,
.alx-product-card .alx-product-add.is-added,
.alx-quick-modal-actions .alx-product-add:hover,
.alx-quick-modal-actions .alx-product-add:focus-visible,
.alx-quick-modal-actions .alx-product-add.is-added {
  color: var(--alx-white);
  background: var(--phoenix-gradient);
  border-color: transparent;
}
.alx-cta:hover,
.alx-cta:focus-visible { box-shadow: 0 18px 34px rgba(0,130,220,.28); }
.alx-trust-icon,
.alx-footer-social:hover,
.alx-footer-social:focus-visible { color: var(--phoenix-purple); }
.alx-badge,
.alx-badge--dark { background: var(--phoenix-gradient); color: #fff; }
.alx-footer-wordmark { background: #050505; border-bottom-color: rgba(0,130,220,.22); }
.alx-footer-wordmark img { object-fit: contain; object-position: center; padding: 18px min(5vw, 72px); }
.alx-proof-track i { color: rgba(255,255,255,.96); }
@media (max-width: 620px) {
  .alx-brand { width: 46px; height: 46px; }
  .alx-brand-logo { max-height: 46px; }
  .alx-hero-logo { width: min(88vw, 620px); }
}

/* Global Peptide Sciences requested refinements v4 */
:root {
  --phoenix-grad-text: linear-gradient(100deg, #00aeef 0%, #0082dc 38%, #005f9f 72%, #231f20 100%);
}

/* Header navigation refinements */
.alx-primary-nav .alx-nav-link {
  font-size: clamp(17px, 1vw, 19px);
  letter-spacing: .045em;
}
.alx-brand {
  width: clamp(150px, 13.4vw, 225px) !important;
  height: 64px !important;
}
.alx-brand-logo {
  width: 100%;
  max-height: 64px !important;
  object-fit: contain;
}

/* Desktop hero with blue/black brand wash, watermark icon, and live text title */
.alx-hero-section {
  background:
    radial-gradient(circle at 77% 14%, rgba(91, 216, 255, .18), transparent 25%),
    radial-gradient(circle at 35% 42%, rgba(0, 174, 239, .22), transparent 34%),
    #050505;
}
.alx-hero-background {
  filter: contrast(1.08) brightness(.52) saturate(1.08);
}
.alx-hero-vignette {
  background:
    linear-gradient(116deg, rgba(5,5,5,.74) 0%, rgba(54,19,108,.62) 43%, rgba(5,5,5,.70) 100%),
    radial-gradient(circle at 62% 38%, rgba(0,130,220,.36), transparent 44%),
    radial-gradient(circle at 78% 28%, rgba(91,216,255,.18), transparent 32%);
}
.alx-hero-content--desktop {
  display: grid;
  place-items: center;
  width: min(100% - (var(--alx-edge) * 2), 1220px);
  min-height: min(660px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h) - var(--alx-trust-reserve-h)));
  transform: none;
  padding-block: clamp(64px, 7vw, 104px);
}
.alx-hero-content--mobile { display: none; }
.alx-hero-watermark {
  position: absolute;
  z-index: -1;
  width: min(55vw, 720px);
  max-height: 74%;
  object-fit: contain;
  opacity: .16;
  filter: drop-shadow(0 28px 58px rgba(0,0,0,.5)) saturate(1.22);
  transform: translateY(-2%) rotate(-3deg);
  pointer-events: none;
  user-select: none;
}
.alx-hero-copy--desktop {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  padding: clamp(28px, 3.2vw, 48px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(5,5,5,.46), rgba(0,130,220,.12));
  box-shadow: 0 36px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
}
.alx-hero-copy--desktop .alx-hero-kicker {
  max-width: 820px;
  font-size: clamp(48px, 5.2vw, 86px);
  line-height: .88;
  letter-spacing: -.018em;
}
.alx-hero-copy--desktop .alx-hero-kicker span,
.alx-gradient-text {
  background: var(--phoenix-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.alx-hero-copy--desktop .alx-hero-subtitle {
  max-width: 720px;
  margin-top: 18px;
  margin-bottom: 30px;
}
.alx-hero-content--desktop .alx-cta {
  color: #fff;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(5,5,5,.46);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
  transition: border-color var(--alx-smooth), box-shadow var(--alx-smooth), transform var(--alx-smooth), background var(--alx-smooth);
}
.alx-hero-content--desktop .alx-cta:hover,
.alx-hero-content--desktop .alx-cta:focus-visible {
  border-color: transparent;
  background: linear-gradient(#050505, #050505) padding-box, var(--phoenix-gradient) border-box;
  box-shadow: 0 0 0 1px rgba(0,174,239,.16), 0 20px 44px rgba(0,130,220,.34);
  transform: translateY(-2px);
}

/* Product tags: restored dark/neutral style with cleaner top-left spacing */
.alx-product-badges {
  top: 12px;
  left: 12px;
  max-width: calc(100% - 86px);
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
}
.alx-product-badges .alx-badge,
.alx-badge,
.alx-badge--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 21px;
  padding: 0 8px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  color: #191919;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .055em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.alx-product-badges .alx-badge--dark,
.alx-badge--dark {
  color: #fff;
  background: #050505;
  border-color: #050505;
}

/* Home product-grid offer card sizing and sale typography */
.alx-world-product-grid {
  align-items: stretch;
}
.alx-world-offer-card--inline {
  align-self: end;
  height: calc(100% - clamp(12px, 1.15vw, 22px));
  min-height: 0;
  margin-top: clamp(12px, 1.15vw, 22px);
  padding: clamp(14px, 1.2vw, 20px);
}
.alx-world-offer-main {
  max-width: 72%;
  font-size: clamp(36px, 3.15vw, 58px);
  line-height: .86;
}
.alx-world-offer-copy {
  max-width: 74%;
  font-size: clamp(10px, .78vw, 13px);
}
.alx-world-offer-card--inline .alx-world-offer-product {
  width: 62% !important;
  right: -13% !important;
  bottom: -15% !important;
}

/* Footer newsletter: brand gradient overlay + gradient arrow hover */
.alx-footer .alx-newsletter--global::after {
  background:
    linear-gradient(116deg, rgba(5,5,5,.78) 0%, rgba(0,130,220,.50) 42%, rgba(0,107,182,.32) 70%, rgba(5,5,5,.70) 100%),
    radial-gradient(circle at 80% 18%, rgba(91,216,255,.30), transparent 35%),
    radial-gradient(circle at 15% 78%, rgba(0,174,239,.28), transparent 35%);
}
.alx-footer .alx-newsletter--global .alx-newsletter-bg {
  filter: contrast(1.13) brightness(.55) saturate(1.08);
}
.alx-newsletter-form button:hover i,
.alx-newsletter-form button:focus-visible i,
.alx-footer .alx-newsletter--global .alx-newsletter-form button:hover i,
.alx-footer .alx-newsletter--global .alx-newsletter-form button:focus-visible i {
  background: var(--phoenix-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Footer full-width wordmark text */
.alx-footer-wordmark {
  display: grid !important;
  place-items: center;
  width: 100vw;
  height: clamp(118px, 18vw, 260px);
  margin: clamp(18px, 2vw, 28px) calc(50% - 50vw) 0 !important;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 9px solid #f3f3f3;
  color: #fff;
  background:
    radial-gradient(circle at 22% 0%, rgba(0,174,239,.22), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(91,216,255,.20), transparent 30%),
    #050505 !important;
}
.alx-footer-wordmark img { display: none !important; }
.alx-footer-wordmark-text {
  display: block;
  width: 100%;
  padding-inline: clamp(12px, 2.2vw, 36px);
  font-family: "Pirata One", "Bebas Neue", "Plus Jakarta Sans", cursive;
  font-size: clamp(52px, 14.2vw, 258px);
  line-height: .74;
  text-align: center;
  letter-spacing: .015em;
  white-space: nowrap;
  background: linear-gradient(180deg, #fff 0%, #e7f7ff 36%, #0082dc 72%, #5bd8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.42));
  transform: translateY(.05em);
  transition: transform 520ms cubic-bezier(.2,.8,.2,1), filter 520ms cubic-bezier(.2,.8,.2,1);
}
.alx-footer-wordmark:hover .alx-footer-wordmark-text,
.alx-footer-wordmark:focus-visible .alx-footer-wordmark-text {
  transform: translateY(-.01em) scale(1.01);
  filter: drop-shadow(0 28px 44px rgba(0,130,220,.36));
}

/* Gradient section titles on internal pages */
.alx-shop-hero h1,
.alx-faq-hero h1,
.alx-contact-hero h1,
.alx-cart-hero h1,
.alx-checkout-hero h1,
.alx-product-summary h1,
.alx-related-products h2,
.alx-contact-info h2,
.alx-contact-message h2,
.alx-faq-prompt h2,
.alx-checkout-section-title,
.alx-cart-summary h2 {
  background: var(--phoenix-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

/* Story section title update and creative Phoenix quality badge */
.alx-story-heading h2 {
  letter-spacing: -.012em;
}
.alx-story-badge {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: clamp(108px, 10.5vw, 152px);
  height: clamp(108px, 10.5vw, 152px);
  border-radius: 999px;
  background:
    linear-gradient(#050505, #050505) padding-box,
    var(--phoenix-gradient) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 42px rgba(0,0,0,.18), inset 0 0 24px rgba(0,130,220,.12);
  animation: alxBadgeFloat 8s ease-in-out infinite;
}
.alx-story-badge::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: inherit;
}
.alx-story-badge::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 120deg, rgba(0,174,239,.0), rgba(0,174,239,.48), rgba(91,216,255,.48), rgba(0,174,239,.0));
  filter: blur(12px);
  opacity: .42;
}
.alx-story-badge-orbit {
  position: absolute;
  inset: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  overflow: visible;
  animation: alxStoryBadgeSpin 18s linear infinite;
}
.alx-story-badge-orbit text {
  fill: rgba(255,255,255,.90);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.alx-story-badge-core {
  display: grid;
  place-items: center;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 52% 20%, rgba(255,255,255,.12), transparent 32%), rgba(255,255,255,.04);
}
.alx-story-badge-core img,
.alx-story-badge img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  animation: none !important;
  filter: drop-shadow(0 12px 16px rgba(0,0,0,.38));
}
@keyframes alxStoryBadgeSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  .alx-brand { width: clamp(132px, 22vw, 185px) !important; }
  .alx-primary-nav .alx-nav-link { font-size: 16px; }
  .alx-world-offer-card--inline { height: auto; margin-top: 0; }
}

@media (max-width: 900px) {
  .alx-hero-content--desktop { display: none; }
  .alx-hero-content--mobile { display: grid; }
  .alx-hero-vignette {
    background:
      radial-gradient(circle at 52% 34%, rgba(255,255,255,.045), transparent 32%),
      radial-gradient(circle at 80% 16%, rgba(255,255,255,.08), transparent 25%),
      linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.10) 54%, rgba(0,0,0,.15));
  }
}

@media (max-width: 760px) {
  .alx-brand {
    width: 54px !important;
    height: 54px !important;
    overflow: hidden;
  }
  .alx-brand-logo {
    width: auto;
    max-width: none;
    height: 54px;
    max-height: 54px !important;
    object-position: left center;
  }
  .alx-mobile-menu a { font-size: 20px; }
  .alx-footer-wordmark { height: clamp(94px, 22vw, 150px); }
  .alx-footer-wordmark-text { font-size: clamp(42px, 13vw, 96px); white-space: normal; line-height: .82; }
  .alx-story-badge { width: 118px; height: 118px; }
}

@media (max-width: 620px) {
  .alx-product-badges { top: 9px; left: 9px; max-width: calc(100% - 68px); gap: 4px; }
  .alx-product-badges .alx-badge { height: 19px; padding-inline: 7px; font-size: 10px; }
}

/* Global Peptide Sciences v5 requested refinements */

/* Restore the cleaner desktop hero layout from the previous pass while keeping the smaller title and gradient Peptides word. */
.alx-hero-section--desktop {
  display: grid;
  min-height: clamp(620px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h) - var(--alx-trust-reserve-h)), 860px);
  place-items: center stretch;
  background: #030206;
}
.alx-hero-section--mobile { display: none; }
.alx-hero-section--desktop .alx-hero-background {
  z-index: -5;
  opacity: .76;
  filter: contrast(1.15) brightness(.40) saturate(1.15);
}
.alx-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 73% 46%, rgba(0,130,220,.50), transparent 33%),
    radial-gradient(circle at 18% 18%, rgba(0,174,239,.32), transparent 31%),
    radial-gradient(circle at 85% 12%, rgba(91,216,255,.22), transparent 28%),
    linear-gradient(115deg, rgba(0,0,0,.96) 0%, rgba(32,8,56,.88) 42%, rgba(0,0,0,.94) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.alx-hero-section--desktop .alx-hero-vignette {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.35) 48%, rgba(0,0,0,.78)),
    radial-gradient(circle at 50% 103%, rgba(0,130,220,.18), transparent 56%);
}
.alx-hero-section--desktop .alx-hero-watermark {
  position: absolute;
  top: 50%;
  right: clamp(36px, 6.8vw, 120px);
  z-index: -3;
  width: min(43vw, 620px);
  height: auto;
  max-height: none;
  opacity: .16;
  filter: saturate(1.1) drop-shadow(0 0 60px rgba(0,130,220,.36));
  transform: translateY(-50%) rotate(-2deg);
  user-select: none;
  pointer-events: none;
}

.alx-hero-section--desktop .alx-hero-product {
  position: absolute;
  top: 50%;
  right: clamp(84px, 12vw, 220px);
  z-index: 0;
  width: min(23vw, 330px);
  height: auto;
  max-height: min(68vh, 520px);
  object-fit: contain;
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.58)) drop-shadow(0 0 34px rgba(0,130,220,.24));
  transform: translateY(-43%);
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(34px, 7vw, 86px);
    width: min(28vw, 270px);
    opacity: .9;
  }
}
.alx-hero-section--desktop .alx-hero-content--desktop {
  z-index: 1;
  display: grid;
  justify-items: start;
  width: min(100%, 1420px);
  min-height: auto;
  padding: clamp(86px, 8vw, 126px) var(--alx-edge);
  text-align: left;
  transform: none;
}
.alx-hero-section--desktop .alx-hero-copy--desktop {
  display: grid;
  justify-items: start;
  width: auto;
  max-width: min(720px, 54vw);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.alx-hero-eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 1.7vw, 30px);
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}
.alx-hero-heading {
  margin: 0;
  color: var(--alx-white);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(72px, 7.4vw, 132px);
  letter-spacing: -.018em;
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 18px 44px rgba(0,0,0,.55);
}
.alx-hero-heading span {
  background: var(--phoenix-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.alx-hero-section--desktop .alx-hero-subtitle {
  max-width: 620px;
  margin: 26px 0 34px;
  color: rgba(255,255,255,.86);
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: .06em;
  line-height: 1.18;
}
.alx-hero-section--desktop .alx-cta {
  color: #050505;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(#fff, #fff) border-box;
  box-shadow: 0 18px 34px rgba(0,0,0,.26);
}
.alx-hero-section--desktop .alx-cta:hover,
.alx-hero-section--desktop .alx-cta:focus-visible {
  color: #050505;
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box, var(--phoenix-gradient) border-box;
  box-shadow: 0 0 0 1px rgba(0,174,239,.18), 0 20px 44px rgba(0,130,220,.34);
  transform: translateY(-2px);
}

/* Footer wordmark: transparent area, black lettering, white erased bottom edge. */
.alx-footer-wordmark {
  position: relative;
  display: grid !important;
  place-items: center;
  width: 100vw;
  height: clamp(118px, 18vw, 260px);
  margin: clamp(18px, 2vw, 28px) calc(50% - 50vw) 0 !important;
  overflow: hidden;
  border: 0 !important;
  color: #050505;
  background: transparent !important;
}
.alx-footer-wordmark::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  height: 32%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.72) 52%, #fff 100%);
  pointer-events: none;
}
.alx-footer-wordmark-text {
  position: relative;
  z-index: 1;
  color: #050505;
  background: linear-gradient(180deg, #231f20 0%, #050505 58%, #0082dc 78%, #ffffff 98%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: none;
}
.alx-footer-wordmark:hover .alx-footer-wordmark-text,
.alx-footer-wordmark:focus-visible .alx-footer-wordmark-text {
  filter: none;
}

/* Home product-grid sale card: Global Peptide Sciences blue-branded background without fighting the product-card heights. */
.alx-world-offer-card--inline {
  border-color: rgba(0,130,220,.30);
  background:
    radial-gradient(circle at 74% 76%, rgba(91,216,255,.34), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(0,174,239,.38), transparent 36%),
    linear-gradient(140deg, #050505 0%, #160725 36%, #31106f 68%, #061837 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 42px rgba(35,11,83,.18);
}
.alx-world-offer-card--inline::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.09) 0 1px, transparent 1px 22px),
    linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 22px),
    linear-gradient(145deg, rgba(255,255,255,.16), transparent 48%);
  opacity: .42;
}
.alx-world-offer-glow {
  background: var(--phoenix-gradient);
  opacity: .62;
  filter: blur(34px);
}
.alx-world-offer-main { font-size: clamp(34px, 2.92vw, 54px); }
.alx-world-offer-kicker {
  color: #fff;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.alx-world-offer-cta {
  color: #050505;
  background: #fff;
}

/* Story title and plain black rotating Phoenix badge. */
.alx-story-heading h2 {
  max-width: 760px;
  font-family: "Plus Jakarta Sans", "Bebas Neue", sans-serif;
  font-size: clamp(34px, 4.15vw, 66px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.05em;
  text-transform: none;
}
.alx-story-badge {
  background: #050505 !important;
  border: 0 !important;
  box-shadow: 0 18px 42px rgba(0,0,0,.18) !important;
}
.alx-story-badge::before,
.alx-story-badge::after { display: none !important; }
.alx-story-badge-orbit {
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}
.alx-story-badge-orbit text {
  fill: rgba(255,255,255,.95);
  font-size: 13px;
  letter-spacing: 1.55px;
  font-weight: 700;
}
.alx-story-badge-core {
  width: 52%;
  background: transparent !important;
}
.alx-story-badge-core img,
.alx-story-badge img {
  width: 88%;
  height: 88%;
  filter: brightness(0) invert(1) drop-shadow(0 8px 12px rgba(0,0,0,.35));
}

@media (max-width: 1024px) {
  .alx-hero-heading { font-size: clamp(66px, 8.6vw, 118px); }
  .alx-hero-section--desktop .alx-hero-copy--desktop { max-width: min(620px, 58vw); }
}

@media (max-width: 900px) {
  .alx-hero-section--desktop { display: none; }
  .alx-hero-section--mobile { display: grid; }
  .alx-hero-section--mobile .alx-hero-content { display: grid; }
}

@media (max-width: 760px) {
  .alx-story-heading h2 {
    font-size: clamp(32px, 9.5vw, 52px);
    letter-spacing: -.045em;
  }
  .alx-footer-wordmark::after { height: 38%; }
}

/* Global Peptide Sciences v1.1 WooCommerce integration + wide hero alignment */
@media (min-width: 901px) {
  .alx-hero-section--desktop .alx-hero-content--desktop {
    width: min(100%, 1600px);
    padding-inline: clamp(58px, 6.42vw, 122px);
  }

  .alx-hero-section--desktop .alx-hero-copy--desktop {
    width: min(100%, clamp(660px, 48vw, 940px));
    max-width: clamp(660px, 48vw, 940px);
  }

  .alx-hero-section--desktop .alx-hero-heading {
    max-width: 10.5ch;
  }

  .alx-hero-section--desktop .alx-hero-subtitle {
    max-width: min(760px, 90%);
  }

  .alx-hero-section--desktop .alx-hero-watermark,
  .alx-hero-section--desktop .alx-hero-product {
    top: 50%;
    transform: translateY(-50%);
  }

  .alx-hero-section--desktop .alx-hero-watermark {
    right: clamp(96px, 12vw, 260px);
    width: clamp(360px, 32vw, 650px);
  }

  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(56px, 8vw, 190px);
    width: clamp(220px, 17vw, 350px);
    max-height: min(70vh, 560px);
  }
}

@media (min-width: 1700px) {
  .alx-hero-section--desktop .alx-hero-copy--desktop {
    max-width: 980px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .alx-hero-section--desktop .alx-hero-copy--desktop {
    max-width: min(650px, 58vw);
  }

  .alx-hero-section--desktop .alx-hero-watermark {
    right: clamp(36px, 7vw, 96px);
    width: min(38vw, 480px);
  }

  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(28px, 5vw, 80px);
    width: min(26vw, 280px);
  }
}

.alx-product-card .alx-product-add,
.alx-quick-modal-actions .alx-product-add {
  text-decoration: none;
}

.alx-product-card .alx-product-add[disabled],
.alx-product-card .alx-product-add.is-loading,
.alx-quick-modal-actions .alx-product-add[disabled],
.alx-quick-modal-actions .alx-product-add.is-loading {
  opacity: .58;
  cursor: not-allowed;
  pointer-events: none;
}

.alx-shop-page--woocommerce .alx-shop-grid:empty + .alx-shop-empty {
  display: block;
}

.alx-woocommerce-content {
  padding-bottom: clamp(72px, 8vw, 132px);
  color: var(--alx-black);
}

.alx-woocommerce-content .woocommerce-notices-wrapper,
.alx-woocommerce-content .woocommerce-message,
.alx-woocommerce-content .woocommerce-info,
.alx-woocommerce-content .woocommerce-error {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.alx-woocommerce-content .woocommerce-message,
.alx-woocommerce-content .woocommerce-info {
  border-top-color: var(--phoenix-purple);
}

.alx-woocommerce-content .woocommerce-message::before,
.alx-woocommerce-content .woocommerce-info::before {
  color: var(--phoenix-purple);
}

.alx-woocommerce-content .button,
.alx-woocommerce-content button.button,
.alx-woocommerce-content input.button,
.alx-woocommerce-content #place_order,
.alx-woocommerce-content .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: #050505 !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: .035em;
  line-height: 1 !important;
  text-transform: uppercase;
  transition: transform var(--alx-fast), box-shadow var(--alx-fast), background var(--alx-fast);
}

.alx-woocommerce-content .button:hover,
.alx-woocommerce-content button.button:hover,
.alx-woocommerce-content input.button:hover,
.alx-woocommerce-content #place_order:hover,
.alx-woocommerce-content .checkout-button:hover,
.alx-woocommerce-content .button:focus-visible,
.alx-woocommerce-content button.button:focus-visible,
.alx-woocommerce-content input.button:focus-visible,
.alx-woocommerce-content #place_order:focus-visible,
.alx-woocommerce-content .checkout-button:focus-visible {
  background: linear-gradient(100deg, var(--phoenix-magenta), var(--phoenix-purple), var(--phoenix-blue)) !important;
  box-shadow: 0 18px 34px rgba(0,130,220,.22);
  transform: translateY(-2px);
}

.alx-woocommerce-content table.shop_table {
  border-radius: 18px !important;
  overflow: hidden;
  border-color: #dedede !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.alx-woocommerce-content table.shop_table th {
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.alx-woocommerce-content table.shop_table td,
.alx-woocommerce-content table.shop_table th {
  padding: 18px !important;
}

.alx-woocommerce-content input.input-text,
.alx-woocommerce-content textarea,
.alx-woocommerce-content select {
  min-height: 48px;
  border: 1px solid #dedede;
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.alx-woocommerce-content--single {
  padding-top: clamp(54px, 5vw, 96px);
}

.alx-woocommerce-content--single div.product {
  display: flow-root;
}

.alx-woocommerce-content--single div.product .product_title,
.alx-woocommerce-content--single .related.products > h2,
.alx-woocommerce-content--single .upsells.products > h2 {
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(48px, 5vw, 92px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .86;
  text-transform: uppercase;
  background: var(--phoenix-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.alx-woocommerce-content--single div.product p.price,
.alx-woocommerce-content--single div.product span.price {
  color: #050505;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 800;
}

.alx-woocommerce-content--single div.product form.cart .variations label,
.alx-woocommerce-content--single div.product .woocommerce-tabs ul.tabs li a {
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  letter-spacing: .035em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .alx-woocommerce-content table.shop_table_responsive tr td::before {
    font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
}

/* Global Peptide Sciences v1.2 requested WooCommerce/product-card refinements */
.alx-hero-section--desktop .alx-hero-heading {
  max-width: 100% !important;
}

@media (min-width: 901px) {
  .alx-hero-section--desktop {
    --alx-hero-art-center-x: min(78vw, calc(100% - clamp(178px, 12vw, 280px)));
  }

  .alx-hero-section--desktop .alx-hero-watermark,
  .alx-hero-section--desktop .alx-hero-product {
    left: var(--alx-hero-art-center-x) !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .alx-hero-section--desktop .alx-hero-watermark {
    width: clamp(390px, 34vw, 680px) !important;
  }

  .alx-hero-section--desktop .alx-hero-product {
    width: clamp(230px, 18vw, 370px) !important;
    max-height: min(72vh, 570px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .alx-hero-section--desktop {
    --alx-hero-art-center-x: min(80vw, calc(100% - clamp(105px, 10vw, 150px)));
  }
}

.alx-product-card {
  cursor: pointer;
}

.alx-product-card a,
.alx-product-card button {
  cursor: pointer;
}

.alx-product-price span,
.alx-world-price span,
.alx-shop-card-price span,
.alx-product-price del,
.alx-product-price del .amount,
.alx-product-single-price del,
.alx-product-single-price del .amount {
  text-decoration: none !important;
}

.alx-product-quick {
  min-width: 110px !important;
  min-height: 34px !important;
  padding-inline: 15px !important;
  font-size: 14px !important;
  letter-spacing: .06em !important;
}

.alx-product-badges {
  top: 10px !important;
  left: 10px !important;
  right: 58px;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 5px !important;
  max-width: calc(100% - 72px) !important;
}

.alx-product-badges .alx-badge {
  position: static !important;
  top: auto !important;
  left: auto !important;
  height: 20px !important;
  max-width: 100%;
  padding: 0 7px !important;
  border: 1px solid rgba(5,5,5,.1) !important;
  border-radius: 999px !important;
  overflow: hidden;
  color: #161616 !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.09) !important;
  font-size: 10px !important;
  letter-spacing: .05em !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alx-product-badges .alx-badge--dark {
  color: #fff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

.alx-product-badges .alx-badge--stock {
  color: #fff !important;
  background: linear-gradient(100deg, var(--phoenix-purple), var(--phoenix-blue)) !important;
  border-color: transparent !important;
}

.alx-product-badges .alx-badge--muted {
  background: #777 !important;
}

.alx-product-hover-actions button.is-active {
  color: #fff;
  background: linear-gradient(100deg, var(--phoenix-magenta), var(--phoenix-purple));
}

.alx-woocommerce-transaction-page .alx-woocommerce-content {
  padding-top: 0;
}

.alx-woocommerce-content .woocommerce-cart-form,
.alx-woocommerce-content .cart_totals,
.alx-woocommerce-content form.checkout,
.alx-woocommerce-content #order_review,
.alx-woocommerce-content .woocommerce-checkout-review-order-table {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.alx-woocommerce-content .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.alx-woocommerce-content .coupon .input-text {
  min-width: min(270px, 100%);
}

.alx-woocommerce-content .quantity .qty {
  width: 76px;
  min-height: 44px;
  border: 1px solid #dedede;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
}

.alx-woocommerce-content .woocommerce-billing-fields h3,
.alx-woocommerce-content .woocommerce-shipping-fields h3,
.alx-woocommerce-content #order_review_heading,
.alx-woocommerce-content .cart_totals h2 {
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 3vw, 54px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}

.alx-woocommerce-content .col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 64px);
}

@media (max-width: 860px) {
  .alx-woocommerce-content .col2-set {
    grid-template-columns: 1fr;
  }
}


/* Global Peptide Sciences v1.3.0 refinements */
.alx-hero-section--desktop .alx-hero-heading {
  max-width: 100%;
}

.alx-hero-section--desktop .alx-hero-watermark {
  top: 50%;
  right: clamp(32px, 6.4vw, 118px);
  width: min(44vw, 640px);
  transform: translateY(-50%) rotate(-2deg);
}

.alx-hero-section--desktop .alx-hero-product {
  top: 50%;
  right: clamp(122px, 13vw, 250px);
  width: min(30vw, 450px);
  max-height: min(78vh, 660px);
  transform: translateY(-50%);
  object-fit: contain;
}

.alx-hero-section--desktop .alx-hero-copy--desktop {
  max-width: min(760px, 52vw);
}

.alx-product-card {
  cursor: pointer;
}

.alx-product-card a,
.alx-product-card button {
  cursor: pointer;
}

.alx-product-price span,
.alx-product-price del,
.alx-product-price del .amount,
.alx-product-price .woocommerce-Price-amount + .woocommerce-Price-amount {
  text-decoration: none !important;
}

.alx-product-quick {
  font-size: 11px !important;
  letter-spacing: .09em;
}

.alx-product-badges {
  top: 12px;
  left: 12px;
  right: auto;
  max-width: calc(100% - 82px);
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
}

.alx-product-badges .alx-badge {
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
}

.alx-badge--stock {
  color: #050505;
  background: rgba(255,255,255,.92);
}

.alx-product-add--ghost {
  color: #050505 !important;
  border: 1px solid #d8d8d8 !important;
  background: #fff !important;
}

.alx-category-card {
  position: relative;
}

.alx-category-image {
  position: relative;
  background: #050505;
}

.alx-category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.48));
  pointer-events: none;
}

.alx-category-title {
  white-space: normal;
}


@media (min-width: 1500px) {
  .alx-hero-section--desktop .alx-hero-content--desktop {
    width: min(100%, 1580px);
  }

  .alx-hero-section--desktop .alx-hero-copy--desktop {
    max-width: min(800px, 50vw);
  }
}

@media (max-width: 1080px) {
  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(52px, 9vw, 112px);
    width: min(36vw, 330px);
    transform: translateY(-50%);
  }

  .alx-hero-section--desktop .alx-hero-watermark {
    right: clamp(18px, 4vw, 52px);
    width: min(55vw, 500px);
  }
}

/* Global Peptide Sciences v1.3.2 requested refinements */
.alx-product-badges .alx-badge:first-child,
.alx-product-badges .alx-badge--dark:first-child {
  color: #fff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

.alx-product-badges .alx-badge:not(:first-child),
.alx-product-badges .alx-badge--stock:not(:first-child),
.alx-product-badges .alx-badge--muted:not(:first-child) {
  color: #050505 !important;
  background: #A9A9A9 !important;
  border-color: #A9A9A9 !important;
}

.alx-product-quick {
  font-size: 14px !important;
  letter-spacing: .07em !important;
}

.alx-hero-section--desktop .alx-hero-watermark {
  right: clamp(92px, 10vw, 190px) !important;
  width: min(46vw, 680px) !important;
}

.alx-hero-section--desktop .alx-hero-product {
  right: clamp(188px, 17vw, 330px) !important;
  width: min(33vw, 520px) !important;
  max-height: min(82vh, 720px) !important;
}

.alx-cart-drawer-content {
  display: grid;
  gap: 22px;
}

.alx-cart-drawer-lines {
  display: grid;
  gap: 16px;
  max-height: calc(100svh - 260px);
  overflow-y: auto;
  padding-right: 6px;
}

.alx-cart-drawer-line {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fafafa;
}

.alx-cart-drawer-thumb {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.alx-cart-drawer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.alx-cart-drawer-line-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.alx-cart-drawer-name {
  color: #050505;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  line-height: .95;
  text-transform: uppercase;
}

.alx-cart-drawer-line-copy span {
  margin: 0;
  color: #737373;
  font-size: 13px;
  font-weight: 800;
}

.alx-cart-drawer-line-copy strong {
  color: #050505;
  font-size: 15px;
  font-weight: 900;
}

.alx-cart-drawer-summary {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e5;
}

.alx-cart-drawer-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 900;
}

.alx-cart-drawer-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  color: #050505;
  background: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .alx-hero-section--desktop .alx-hero-watermark {
    right: clamp(40px, 7vw, 100px) !important;
  }
  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(68px, 10vw, 140px) !important;
    width: min(34vw, 380px) !important;
  }
}


/* Global Peptide Sciences v1.3.3 requested refinements */
.alx-product-card {
  cursor: pointer;
}

.alx-product-card :is(a, button, input, select, textarea, label) {
  cursor: auto;
}

.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark,
.alx-product-badges .alx-badge--stock,
.alx-product-badges .alx-badge--muted {
  border-radius: 4px !important;
}

.alx-product-badges .alx-badge:first-child,
.alx-product-badges .alx-badge--dark:first-child {
  color: #fff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

.alx-product-badges .alx-badge:not(:first-child),
.alx-product-badges .alx-badge--stock:not(:first-child),
.alx-product-badges .alx-badge--muted:not(:first-child) {
  color: #fff !important;
  background: #A9A9A9 !important;
  border-color: #A9A9A9 !important;
}

@media (min-width: 901px) {
  .alx-hero-section--desktop .alx-hero-watermark {
    right: clamp(146px, 14vw, 270px) !important;
    width: min(43vw, 640px) !important;
  }

  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(238px, 21vw, 410px) !important;
    width: min(29vw, 455px) !important;
    max-height: min(68vh, 535px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .alx-hero-section--desktop .alx-hero-watermark {
    right: clamp(74px, 10vw, 132px) !important;
    width: min(43vw, 480px) !important;
  }

  .alx-hero-section--desktop .alx-hero-product {
    right: clamp(116px, 14vw, 188px) !important;
    width: min(28vw, 305px) !important;
  }
}

.alx-footer-cta-shell {
  width: min(100% - 2 * var(--alx-edge), 1660px);
  margin: 0 auto clamp(42px, 5vw, 80px);
}

.alx-footer-about-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: clamp(28px, 4.2vw, 62px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(91,216,255,.30), transparent 30%),
    radial-gradient(circle at 12% 96%, rgba(0,174,239,.22), transparent 36%),
    linear-gradient(115deg, #050505 0%, #160829 58%, #050505 100%);
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}

.alx-footer-about-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: inherit;
  pointer-events: none;
}

.alx-footer-cta-eyebrow {
  margin: 0 0 8px;
  color: rgba(255,255,255,.68);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.2vw, 22px);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.alx-footer-about-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(46px, 5.8vw, 104px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .86;
  text-transform: uppercase;
}

.alx-footer-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  color: #050505;
  background: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--alx-fast), box-shadow var(--alx-fast), background var(--alx-fast), color var(--alx-fast);
}

.alx-footer-cta-button:hover,
.alx-footer-cta-button:focus-visible {
  color: #fff;
  background: linear-gradient(100deg, var(--phoenix-magenta), var(--phoenix-purple), var(--phoenix-blue));
  box-shadow: 0 18px 40px rgba(0,130,220,.32);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .alx-footer-about-cta {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 22px;
  }

  .alx-footer-cta-button {
    width: 100%;
  }
}

.alx-product-summary h1,
.alx-product-page--woocommerce .alx-product-summary h1 {
  color: #050505 !important;
  -webkit-text-fill-color: #050505 !important;
  background: none !important;
}

.alx-product-single-badges span {
  border-radius: 4px !important;
}

.alx-product-single-badges span:first-child {
  color: #fff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

.alx-product-single-badges span:not(:first-child) {
  color: #fff !important;
  background: #A9A9A9 !important;
  border-color: #A9A9A9 !important;
}

/* v1.3.5: site chrome safety visibility */
.alx-shipping-ribbon,
.alx-header,
.alx-footer {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Global Peptide Sciences v1.3.6 requested refinements */
/* Use full available footer width for the CTA card, overriding the previous boxed shell. */
.alx-footer .alx-footer-cta-shell {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.alx-footer .alx-footer-about-cta {
  width: 100% !important;
}

/* Slightly larger product-card badges at the top-left corner. */
.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark,
.alx-product-badges .alx-badge--stock,
.alx-product-badges .alx-badge--muted {
  min-height: 24px !important;
  padding: 5px 10px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: .055em !important;
}

@media (max-width: 520px) {
  .alx-product-badges .alx-badge,
  .alx-product-badges .alx-badge--dark,
  .alx-product-badges .alx-badge--stock,
  .alx-product-badges .alx-badge--muted {
    min-height: 22px !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
  }
}

/* v1.3.6 full-bleed footer CTA final override */
.alx-footer .alx-footer-cta-shell {
  width: calc(100% + (2 * var(--alx-edge))) !important;
  margin-left: calc(-1 * var(--alx-edge)) !important;
  margin-right: calc(-1 * var(--alx-edge)) !important;
}

.alx-footer .alx-footer-about-cta {
  border-radius: 0 !important;
}


/* Global Peptide Sciences v1.3.7 fixes: contained footer CTA, stronger cart/shop interactivity. */
.alx-footer .alx-footer-cta-shell {
  width: min(100% - 2 * var(--alx-edge), 1660px) !important;
  max-width: 1660px !important;
  margin: 0 auto clamp(42px, 5vw, 80px) !important;
}

.alx-footer .alx-footer-about-cta {
  width: 100% !important;
  border-radius: 30px !important;
}

.alx-product-card,
.alx-product-card[role="link"],
.alx-shop-page .alx-product-card,
.alx-shop-page .alx-shop-chips button,
.alx-shop-page .alx-shop-controls button,
.alx-shop-page .alx-shop-filter-toggle,
.alx-shop-page [data-alx-clear-filters],
.alx-shop-page .alx-shop-filter-group label,
.alx-shop-page .alx-shop-filter-group input[type="checkbox"] {
  cursor: pointer !important;
}

.alx-product-card :is(a, button),
.alx-product-add,
.alx-product-quick,
[data-alx-quick-view],
[data-alx-add-product],
[data-alx-compare],
[data-alx-wishlist],
[data-alx-cart-open] {
  cursor: pointer !important;
}

.alx-product-card .alx-product-add[disabled] {
  cursor: not-allowed !important;
}


/* Global Peptide Sciences v1.3.8 final requested overrides */
.alx-footer .alx-footer-cta-shell {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.alx-footer-about-cta h2 {
  font-size: 75px !important;
}

.alx-product-card :is(button, a),
.alx-product-hover-actions,
.alx-product-hover-actions button,
.alx-product-quick,
.alx-product-add,
[data-alx-quick-view],
[data-alx-compare],
[data-alx-wishlist],
[data-alx-add-product],
[data-alx-cart-open] {
  pointer-events: auto !important;
  cursor: pointer !important;
}

[data-alx-cart-open].alx-action-btn {
  appearance: none;
  border: 0;
  cursor: pointer !important;
}

@media (max-width: 900px) {
  .alx-footer-about-cta h2 {
    font-size: clamp(42px, 11vw, 75px) !important;
  }
}


/* v1.4.0 home banner overlay + nav interaction hardening */
.alx-header-actions {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}
.alx-header-actions :is(button, a),
.alx-brand,
.alx-primary-nav {
  position: relative;
  z-index: 2;
}

.alx-world-banner--copy {
  position: relative;
  isolation: isolate;
}
.alx-world-banner--copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.22) 28%, rgba(0,0,0,.62) 100%);
  z-index: 0;
}
.alx-world-banner-copy,
.alx-world-banner-cta {
  position: absolute;
  z-index: 1;
  color: #fff;
}
.alx-world-banner-copy {
  top: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  display: grid;
  gap: 6px;
  max-width: min(76%, 320px);
}
.alx-world-banner-eyebrow {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(8px);
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(11px, .85vw, 13px);
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}
.alx-world-banner-title {
  display: block;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  letter-spacing: -.02em;
  line-height: .92;
  text-transform: uppercase;
}
.alx-world-banner-subtitle {
  display: block;
  font-size: clamp(13px, .95vw, 16px);
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.alx-world-banner-cta {
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.alx-world-banner-cta i { font-size: .95em; }
@media (max-width: 767px) {
  .alx-world-banner-copy { max-width: 82%; gap: 4px; }
  .alx-world-banner-title { font-size: clamp(28px, 7vw, 40px); }
  .alx-world-banner-subtitle { font-size: 12px; }
  .alx-world-banner-cta { font-size: 16px; }
}


/* v1.4.3 home instagram images + banner CTA sizing */
.alx-world-banner-cta {
  font-size: clamp(20px, 1.45vw, 26px);
  gap: 8px;
}
@media (max-width: 767px) {
  .alx-world-banner-cta { font-size: 17px; }
}


/* v1.4.4 stability fixes: banner CTA, offer card, search suggestions */
.alx-world-banner-cta {
  font-size: clamp(20px, 1.55vw, 28px) !important;
  gap: 9px !important;
}
.alx-world-product-grid > .alx-world-offer-card--inline {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.alx-search-result-card {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
}
.alx-search-result-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #F5F5F6;
}
@media (max-width: 767px) {
  .alx-world-banner-cta { font-size: 18px !important; }
}


/* v1.4.4 final interactive/filter overrides */
.alx-world-banner-cta {
  font-size: clamp(21px, 1.65vw, 30px) !important;
}
.alx-search-result-card {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr) auto !important;
}


/* Global Peptide Sciences v1.4.8 final global navbar/card/mobile refinements */
.alx-world-offer-card--inline {
  min-height: 100% !important;
  padding: clamp(22px, 2vw, 34px) !important;
  overflow: hidden !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,.34), transparent 20%),
    radial-gradient(circle at 80% 86%, rgba(91,216,255,.34), transparent 28%),
    linear-gradient(135deg, #050505 0%, #003d73 48%, #0082dc 100%) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 70px rgba(0, 61, 115, .28) !important;
}
.alx-world-offer-card--inline::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.25) 48%, rgba(0,0,0,.10) 100%);
  content: "";
  pointer-events: none;
}
.alx-world-offer-card--inline > * { position: relative; z-index: 1; }
.alx-world-offer-kicker {
  width: fit-content !important;
  padding: 8px 12px !important;
  color: #050505 !important;
  background: #fff !important;
  border-radius: 999px !important;
  font-size: clamp(13px, .9vw, 15px) !important;
  letter-spacing: .06em !important;
}
.alx-world-offer-main {
  max-width: 60% !important;
  color: #fff !important;
  font-size: clamp(48px, 4.5vw, 82px) !important;
  line-height: .82 !important;
  text-shadow: 0 10px 30px rgba(0,0,0,.32) !important;
}
.alx-world-offer-copy {
  max-width: 58% !important;
  color: rgba(255,255,255,.86) !important;
  font-size: clamp(13px, .92vw, 16px) !important;
  line-height: 1.45 !important;
}
.alx-world-offer-cta {
  margin-top: auto !important;
  width: fit-content !important;
  padding: 12px 16px !important;
  color: #050505 !important;
  background: #fff !important;
  border-radius: 999px !important;
  font-size: clamp(18px, 1.3vw, 24px) !important;
  letter-spacing: .04em !important;
}
.alx-world-offer-card--inline .alx-world-offer-product {
  right: clamp(-38px, -2vw, -18px) !important;
  bottom: clamp(-28px, -1.6vw, -12px) !important;
  width: min(52%, 310px) !important;
  height: auto !important;
  max-height: 72% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.38)) !important;
}
.alx-world-banner--copy {
  padding: clamp(22px, 2.4vw, 36px) !important;
  border-radius: 30px !important;
}
.alx-world-banner-title { font-size: clamp(42px, 3.9vw, 66px) !important; }
.alx-world-banner-cta { font-size: clamp(24px, 1.9vw, 34px) !important; }
.alx-world-banner-subtitle { font-size: clamp(14px, 1vw, 18px) !important; }
.alx-cart-count {
  position: absolute !important;
  top: 6px !important;
  right: -8px !important;
  margin: 0 !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 2px 5px !important;
  font-size: 10px !important;
  z-index: 3 !important;
}
[data-alx-cart-open].alx-action-btn { position: relative !important; }
.alx-product-image-link,
.alx-product-card h3 a {
  pointer-events: auto !important;
  cursor: pointer !important;
}
.alx-related-track .alx-product-card,
.alx-related-track .alx-product-card :is(a, button) {
  pointer-events: auto !important;
}
@media (max-width: 760px) {
  .alx-brand {
    width: clamp(132px, 44vw, 185px) !important;
    height: 58px !important;
    overflow: visible !important;
  }
  .alx-brand-logo {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 58px !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .alx-product-quick,
  [data-alx-quick-view].alx-product-quick {
    display: none !important;
  }
  .alx-world-offer-card--inline {
    min-height: 260px !important;
    padding: 20px !important;
    border-radius: 24px !important;
  }
  .alx-world-offer-main { max-width: 66% !important; font-size: clamp(46px, 15vw, 66px) !important; }
  .alx-world-offer-copy { max-width: 62% !important; font-size: 12px !important; }
  .alx-world-offer-card--inline .alx-world-offer-product { width: 48% !important; right: -18px !important; }
  .alx-world-banner--copy { padding: 22px !important; border-radius: 24px !important; }
  .alx-world-banner-title { font-size: clamp(38px, 11vw, 54px) !important; }
  .alx-world-banner-cta { font-size: 24px !important; }
}


/* v1.4.8 cart count badge attached to icon */
.alx-action-icon {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.alx-action-icon .alx-cart-count,
[data-alx-cart-open] > .alx-cart-count {
  position: absolute !important;
  top: -8px !important;
  right: -10px !important;
}

/* v1.4.9 home offer card + promo background cards */
.alx-world-offer-card--reference {
  position: relative !important;
  display: block !important;
  min-height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #140437 url('../assets/alx-sale-offer-reference-v149.png') center / cover no-repeat !important;
  box-shadow: inset 0 0 0 1px rgba(86, 64, 168, .38), 0 14px 32px rgba(26, 8, 74, .16) !important;
}
.alx-world-offer-card--reference > * { display: none !important; }
.alx-world-offer-card--reference:hover,
.alx-world-offer-card--reference:focus-visible {
  transform: translateY(-2px) !important;
  box-shadow: inset 0 0 0 1px rgba(86, 64, 168, .44), 0 18px 36px rgba(26, 8, 74, .2) !important;
}

.alx-world-banner--bg {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 27vw, 380px);
  padding: clamp(28px, 3.2vw, 42px) !important;
  border-radius: 28px !important;
  background-color: #1c1c1c;
  background-image: var(--alx-banner-bg) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.alx-world-banner--bg img { display: none !important; }
.alx-world-banner--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.28) 38%, rgba(0,0,0,.62) 100%) !important;
  z-index: 0;
}
.alx-world-banner--bg .alx-world-banner-copy,
.alx-world-banner--bg .alx-world-banner-cta {
  position: absolute;
  z-index: 1;
  color: #fff;
}
.alx-world-banner--bg .alx-world-banner-copy {
  top: clamp(26px, 3vw, 36px);
  left: clamp(24px, 3vw, 34px);
  right: clamp(24px, 3vw, 34px);
  max-width: min(74%, 430px);
  gap: 10px;
}
.alx-world-banner--bg .alx-world-banner-title {
  font-size: clamp(48px, 4vw, 72px) !important;
  line-height: .9;
}
.alx-world-banner--bg .alx-world-banner-subtitle {
  font-size: clamp(16px, 1.12vw, 20px) !important;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
}
.alx-world-banner--bg .alx-world-banner-cta {
  left: clamp(24px, 3vw, 34px);
  right: auto;
  bottom: clamp(24px, 3vw, 34px);
  font-size: clamp(24px, 1.85vw, 34px) !important;
  gap: 10px;
  padding: 0;
}
@media (max-width: 767px) {
  .alx-world-banner--bg {
    min-height: 260px;
    padding: 24px !important;
    border-radius: 22px !important;
  }
  .alx-world-banner--bg .alx-world-banner-copy {
    top: 22px;
    left: 22px;
    right: 22px;
    max-width: 78%;
  }
  .alx-world-banner--bg .alx-world-banner-title { font-size: clamp(34px, 10vw, 48px) !important; }
  .alx-world-banner--bg .alx-world-banner-subtitle { font-size: 14px !important; }
  .alx-world-banner--bg .alx-world-banner-cta { left: 22px; bottom: 22px; font-size: 22px !important; }
  .alx-world-offer-card--reference { border-radius: 22px !important; }
}

/* v1.5.0 rebuild offer card as real HTML/CSS + right-align promo CTAs */
.alx-world-offer-card--designed {
  position: relative !important;
  display: block !important;
  min-height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  padding: clamp(22px, 2.4vw, 34px) !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 86% 88%, rgba(62, 119, 255, .92) 0%, rgba(62, 119, 255, .5) 24%, transparent 52%),
    radial-gradient(circle at 16% 10%, rgba(155, 68, 242, .45) 0%, transparent 43%),
    linear-gradient(140deg, #1f063f 0%, #120628 42%, #0d113f 72%, #3159ea 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(152, 108, 255, .35), 0 18px 42px rgba(22, 9, 55, .22) !important;
  isolation: isolate;
}
.alx-world-offer-card--designed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 34%), radial-gradient(circle at 65% 22%, rgba(255,255,255,.13), transparent 32%);
  z-index: 0;
  pointer-events: none;
}
.alx-world-offer-card--designed > * {
  position: relative;
  z-index: 1;
}
.alx-world-offer-card--designed .alx-world-offer-badge {
  position: absolute;
  top: clamp(18px, 2.3vw, 30px);
  left: clamp(18px, 2.3vw, 30px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  height: clamp(34px, 3.2vw, 54px);
  padding: 0 clamp(18px, 2vw, 30px);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(122, 54, 225, .95), rgba(197, 158, 255, .82));
  color: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 10px 28px rgba(112, 61, 224, .28);
}
.alx-world-offer-card--designed .alx-world-offer-product {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 4vw, 62px);
  left: 21%;
  width: min(48%, 260px) !important;
  height: auto !important;
  object-fit: contain !important;
  transform: rotate(-7deg);
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.34));
}
.alx-world-offer-card--designed .alx-world-offer-content {
  position: absolute;
  left: clamp(22px, 2.8vw, 38px);
  right: clamp(22px, 2.8vw, 38px);
  bottom: clamp(104px, 9.4vw, 138px);
  display: grid;
  gap: clamp(8px, 1vw, 16px);
  color: #fff;
}
.alx-world-offer-card--designed .alx-world-offer-main {
  display: block;
  color: #fff;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(58px, 8.1vw, 118px);
  line-height: .82;
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.alx-world-offer-card--designed .alx-world-offer-copy {
  display: block;
  max-width: 86%;
  color: rgba(255,255,255,.94);
  font-size: clamp(15px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.025em;
}
.alx-world-offer-card--designed .alx-world-offer-copy strong {
  color: #0082dc;
  font-weight: 900;
}
.alx-world-offer-card--designed .alx-world-offer-cta {
  position: absolute;
  left: clamp(22px, 2.8vw, 38px);
  bottom: clamp(24px, 2.7vw, 40px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 20px);
  width: fit-content;
  min-height: clamp(46px, 4.5vw, 72px);
  padding: 0 clamp(22px, 2.7vw, 42px);
  border-radius: 999px;
  background: #fff;
  color: #110728;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.alx-world-offer-card--designed .alx-world-offer-cta i {
  font-size: .78em;
  color: currentColor;
}
.alx-world-offer-card--designed:hover .alx-world-offer-product,
.alx-world-offer-card--designed:focus-visible .alx-world-offer-product {
  transform: rotate(-7deg) translateY(-5px) scale(1.025);
}
.alx-world-banner--bg .alx-world-banner-cta {
  left: auto !important;
  right: clamp(24px, 3vw, 34px) !important;
  bottom: clamp(24px, 3vw, 34px) !important;
}
@media (max-width: 767px) {
  .alx-world-offer-card--designed {
    min-height: 330px !important;
    border-radius: 22px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-product {
    width: 44% !important;
    left: 28%;
    top: 45px;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    bottom: 92px;
  }
  .alx-world-offer-card--designed .alx-world-offer-main {
    font-size: clamp(52px, 18vw, 82px);
  }
  .alx-world-offer-card--designed .alx-world-offer-copy {
    font-size: 14px;
    max-width: 92%;
  }
  .alx-world-offer-card--designed .alx-world-offer-cta {
    font-size: 24px;
    min-height: 48px;
  }
  .alx-world-banner--bg .alx-world-banner-cta {
    left: auto !important;
    right: 22px !important;
    bottom: 22px !important;
  }
}

/* v1.5.1 mobile header logo sizing */
@media (max-width: 760px) {
  .alx-header .alx-brand {
    width: clamp(118px, 38vw, 165px) !important;
    height: 48px !important;
    min-height: 48px !important;
    overflow: visible !important;
  }
  .alx-header .alx-brand-logo {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 48px !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}
@media (max-width: 420px) {
  .alx-header .alx-brand {
    width: clamp(106px, 34vw, 142px) !important;
    height: 44px !important;
    min-height: 44px !important;
  }
  .alx-header .alx-brand-logo { max-height: 44px !important; }
}

/* v1.5.2 product-card price, home offer card, and promo image-card refinements */
.alx-product-card .alx-product-price,
.alx-product-card--world .alx-product-price,
.alx-product-card--shop .alx-product-price,
.alx-product-card .alx-product-price .woocommerce-Price-amount,
.alx-product-card .alx-product-price .amount,
.alx-product-card .alx-product-price ins,
.alx-product-card .alx-product-price ins .amount {
  font-size: clamp(16px, 1.24vw, 20px) !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  letter-spacing: -.02em !important;
}
.alx-product-card .alx-product-price del,
.alx-product-card .alx-product-price del .amount,
.alx-product-card .alx-product-price del .woocommerce-Price-amount {
  font-size: .82em !important;
  font-weight: 800 !important;
  opacity: .7 !important;
}

.alx-world-product-grid > .alx-world-offer-card--designed {
  align-self: stretch !important;
  min-height: 100% !important;
}
.alx-world-offer-card--designed {
  position: relative !important;
  isolation: isolate !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  min-height: 0 !important;
  aspect-ratio: 295 / 326 !important;
  padding: clamp(18px, 1.75vw, 28px) !important;
  border-radius: clamp(18px, 1.8vw, 28px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(135, 103, 255, .28) !important;
  background:
    radial-gradient(circle at 89% 91%, rgba(54, 112, 255, .95) 0%, rgba(49, 84, 229, .74) 27%, transparent 58%),
    radial-gradient(circle at 13% 13%, rgba(159, 73, 247, .58) 0%, rgba(108, 52, 217, .24) 32%, transparent 58%),
    linear-gradient(142deg, #220847 0%, #15062d 46%, #0d123f 72%, #315fea 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 18px 38px rgba(22, 10, 62, .18) !important;
  text-decoration: none !important;
}
.alx-world-offer-card--designed::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 32%),
    radial-gradient(circle at 58% 21%, rgba(255,255,255,.2), transparent 30%) !important;
}
.alx-world-offer-card--designed::after {
  display: none !important;
  content: none !important;
}
.alx-world-offer-card--designed > * {
  position: relative !important;
  z-index: 2 !important;
}
.alx-world-offer-card--designed .alx-world-offer-badge {
  position: absolute !important;
  inset: auto !important;
  top: clamp(16px, 1.55vw, 24px) !important;
  left: clamp(16px, 1.55vw, 24px) !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: clamp(32px, 2.9vw, 46px) !important;
  padding: 0 clamp(16px, 1.55vw, 24px) !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #0082dc 0%, #00aeef 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 12px 30px rgba(82, 28, 180, .24) !important;
  color: #fff !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
  font-size: clamp(16px, 1.55vw, 27px) !important;
  letter-spacing: .07em !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
}
.alx-world-offer-card--designed .alx-world-offer-product {
  position: absolute !important;
  inset: auto !important;
  z-index: 2 !important;
  top: clamp(48px, 4.2vw, 72px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: min(53%, 250px) !important;
  max-width: 58% !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: translateX(-50%) rotate(-7deg) !important;
  filter: drop-shadow(0 20px 24px rgba(0,0,0,.28)) !important;
  pointer-events: none !important;
}
.alx-world-offer-card--designed .alx-world-offer-content {
  position: relative !important;
  inset: auto !important;
  z-index: 3 !important;
  display: grid !important;
  gap: clamp(8px, .9vw, 14px) !important;
  width: 100% !important;
  margin-top: auto !important;
  margin-bottom: clamp(70px, 6.8vw, 106px) !important;
  color: #fff !important;
}
.alx-world-offer-card--designed .alx-world-offer-main {
  display: block !important;
  color: #fff !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
  font-size: clamp(50px, 5.85vw, 92px) !important;
  line-height: .84 !important;
  letter-spacing: -.035em !important;
  text-transform: uppercase !important;
  text-shadow: 0 6px 22px rgba(0,0,0,.18) !important;
}
.alx-world-offer-card--designed .alx-world-offer-copy {
  display: block !important;
  max-width: 96% !important;
  color: rgba(255,255,255,.94) !important;
  font-size: clamp(14px, 1.16vw, 20px) !important;
  font-weight: 850 !important;
  line-height: 1.32 !important;
  letter-spacing: -.025em !important;
}
.alx-world-offer-card--designed .alx-world-offer-copy strong {
  color: #00aeef !important;
  font-weight: 950 !important;
}
.alx-world-offer-card--designed .alx-world-offer-cta {
  position: absolute !important;
  inset: auto auto clamp(18px, 1.65vw, 26px) clamp(18px, 1.65vw, 26px) !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(10px, .95vw, 16px) !important;
  min-height: clamp(44px, 3.85vw, 62px) !important;
  max-width: calc(100% - 36px) !important;
  padding: 0 clamp(20px, 2.1vw, 34px) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #13092c !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
  font-size: clamp(21px, 2vw, 34px) !important;
  line-height: 1 !important;
  letter-spacing: .025em !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  box-shadow: 0 13px 26px rgba(0,0,0,.18) !important;
}
.alx-world-offer-card--designed .alx-world-offer-cta i {
  font-size: .82em !important;
}
.alx-world-offer-card--designed:hover .alx-world-offer-product,
.alx-world-offer-card--designed:focus-visible .alx-world-offer-product {
  transform: translateX(-50%) rotate(-7deg) translateY(-4px) scale(1.025) !important;
}

.alx-world-banner--bg {
  border-radius: 18px !important;
}
.alx-world-banner--bg::after {
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.46) 42%, rgba(0,0,0,.78) 100%) !important;
}
.alx-world-banner--bg .alx-world-banner-copy {
  max-width: min(82%, 470px) !important;
}
.alx-world-banner--bg .alx-world-banner-title,
.alx-world-banner--bg .alx-world-banner-subtitle,
.alx-world-banner--bg .alx-world-banner-cta {
  text-shadow: 0 3px 18px rgba(0,0,0,.48) !important;
}
.alx-world-banner--bg .alx-world-banner-subtitle {
  color: rgba(255,255,255,.96) !important;
  font-weight: 700 !important;
}

@media (max-width: 1024px) {
  .alx-world-offer-card--designed {
    aspect-ratio: 295 / 326 !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-product {
    width: min(45%, 240px) !important;
    top: clamp(54px, 8vw, 82px) !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    margin-bottom: clamp(78px, 10vw, 118px) !important;
  }
}
@media (max-width: 620px) {
  .alx-product-card .alx-product-price,
  .alx-product-card .alx-product-price .woocommerce-Price-amount,
  .alx-product-card .alx-product-price .amount {
    font-size: 18px !important;
  }
  .alx-world-offer-card--designed {
    min-height: 430px !important;
    aspect-ratio: auto !important;
    border-radius: 22px !important;
    padding: 22px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-badge {
    top: 22px !important;
    left: 22px !important;
    height: 38px !important;
    font-size: 20px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-product {
    width: min(48%, 188px) !important;
    top: 60px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    margin-bottom: 78px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-main {
    font-size: clamp(60px, 19vw, 86px) !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-copy {
    max-width: 96% !important;
    font-size: 15px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-cta {
    left: 22px !important;
    bottom: 22px !important;
    min-height: 50px !important;
    font-size: 26px !important;
    padding-inline: 24px !important;
  }
  .alx-world-banner--bg {
    border-radius: 16px !important;
  }
  .alx-world-banner--bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.55) 46%, rgba(0,0,0,.82) 100%) !important;
  }
}

/* v1.5.3 offer card refinement */
.alx-world-product-grid > .alx-world-offer-card--designed {
  align-self: stretch !important;
}
.alx-world-offer-card--designed {
  border-radius: 18px !important;
  padding: clamp(16px, 1.35vw, 22px) !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
}
.alx-world-offer-card--designed > * {
  position: relative !important;
}
.alx-world-offer-card--designed .alx-world-offer-badge {
  top: clamp(12px, 1.05vw, 16px) !important;
  left: clamp(12px, 1.05vw, 16px) !important;
  height: clamp(25px, 2.05vw, 32px) !important;
  padding: 0 clamp(10px, .95vw, 15px) !important;
  font-size: clamp(12px, 1.05vw, 18px) !important;
  letter-spacing: .055em !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2), 0 8px 18px rgba(82, 28, 180, .22) !important;
}
.alx-world-offer-card--designed .alx-world-offer-product {
  position: absolute !important;
  z-index: 1 !important;
  top: clamp(34px, 3vw, 50px) !important;
  left: 50% !important;
  width: min(56%, 220px) !important;
  max-width: 60% !important;
  transform: translateX(-48%) rotate(-7deg) !important;
  opacity: .96 !important;
}
.alx-world-offer-card--designed .alx-world-offer-content {
  position: absolute !important;
  z-index: 3 !important;
  left: clamp(16px, 1.35vw, 22px) !important;
  right: clamp(16px, 1.35vw, 22px) !important;
  bottom: clamp(58px, 5.1vw, 78px) !important;
  margin: 0 !important;
  gap: clamp(5px, .55vw, 8px) !important;
  width: auto !important;
}
.alx-world-offer-card--designed .alx-world-offer-main {
  font-size: clamp(38px, 4.4vw, 66px) !important;
  line-height: .88 !important;
  letter-spacing: -.025em !important;
}
.alx-world-offer-card--designed .alx-world-offer-copy {
  max-width: 92% !important;
  font-size: clamp(12px, .93vw, 15px) !important;
  font-weight: 560 !important;
  line-height: 1.32 !important;
  letter-spacing: -.01em !important;
  color: rgba(255,255,255,.9) !important;
}
.alx-world-offer-card--designed .alx-world-offer-copy strong {
  font-weight: 700 !important;
}
.alx-world-offer-card--designed .alx-world-offer-cta {
  left: clamp(16px, 1.35vw, 22px) !important;
  bottom: clamp(16px, 1.35vw, 22px) !important;
  min-height: clamp(34px, 3vw, 44px) !important;
  padding: 0 clamp(14px, 1.3vw, 20px) !important;
  gap: clamp(6px, .55vw, 9px) !important;
  font-size: clamp(15px, 1.35vw, 22px) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,.16) !important;
}
.alx-world-offer-card--designed .alx-world-offer-cta i {
  font-size: .78em !important;
}
.alx-world-offer-card--designed:hover .alx-world-offer-product,
.alx-world-offer-card--designed:focus-visible .alx-world-offer-product {
  transform: translateX(-48%) rotate(-7deg) translateY(-3px) scale(1.02) !important;
}
@media (max-width: 1024px) {
  .alx-world-offer-card--designed .alx-world-offer-product {
    top: clamp(42px, 6.4vw, 66px) !important;
    width: min(50%, 210px) !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    bottom: clamp(60px, 7vw, 84px) !important;
  }
}
@media (max-width: 620px) {
  .alx-world-offer-card--designed {
    min-height: 360px !important;
    border-radius: 16px !important;
    padding: 18px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-badge {
    top: 16px !important;
    left: 16px !important;
    height: 28px !important;
    padding-inline: 12px !important;
    font-size: 14px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-product {
    top: 46px !important;
    width: min(48%, 172px) !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 64px !important;
    gap: 6px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-main {
    font-size: clamp(44px, 15vw, 60px) !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-copy {
    font-size: 13px !important;
    max-width: 94% !important;
    font-weight: 540 !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-cta {
    left: 18px !important;
    bottom: 18px !important;
    min-height: 38px !important;
    padding-inline: 16px !important;
    font-size: 18px !important;
  }
}


/* v1.5.5 sale card requested sizing/position overrides */
.alx-world-product-grid > .alx-world-offer-card--designed {
    width: 100%;
}
.alx-world-offer-card--designed {
    border-radius: 14px !important;
}
.alx-world-offer-card--designed .alx-world-offer-product {
    position: absolute !important;
    z-index: 1 !important;
    top: 7% !important;
    left: 30% !important;
    width: 100% !important;
    max-width: unset !important;
    transform: translateX(-48%) rotate(-7deg) !important;
    opacity: .96 !important;
}
.alx-world-offer-card--designed .alx-world-offer-badge {
    font-size: 12px !important;
    height: 26px !important;
    padding: 0 12px !important;
}
.alx-world-offer-card--designed .alx-world-offer-main {
    font-size: 54px !important;
    line-height: .88 !important;
    letter-spacing: -.025em !important;
    text-shadow: 0 0 10px black !important;
}
.alx-world-offer-card--designed .alx-world-offer-copy {
    font-size: 13px !important;
    font-weight: 420 !important;
    line-height: 1.28 !important;
    max-width: 86% !important;
}
.alx-world-offer-card--designed .alx-world-offer-copy strong {
    font-weight: 560 !important;
}
.alx-world-offer-card--designed .alx-world-offer-content {
    bottom: 58px !important;
}
.alx-world-offer-card--designed .alx-world-offer-cta {
    min-height: 30px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    gap: 6px !important;
    border-radius: 999px !important;
}
.alx-world-offer-card--designed .alx-world-offer-cta i {
    font-size: .75em !important;
}
.alx-world-offer-card--designed:hover .alx-world-offer-product,
.alx-world-offer-card--designed:focus-visible .alx-world-offer-product {
    transform: translateX(-48%) rotate(-7deg) translateY(-2px) scale(1.01) !important;
}
@media (max-width: 620px) {
  .alx-world-offer-card--designed {
    border-radius: 12px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-product {
    top: 8% !important;
    left: 31% !important;
    width: 96% !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-badge {
    font-size: 11px !important;
    height: 24px !important;
    padding: 0 10px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-main {
    font-size: 46px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-copy {
    font-size: 12px !important;
    max-width: 92% !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    bottom: 54px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-cta {
    min-height: 30px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }
}

/* v1.5.6 badge alignment fixes */
.alx-world-offer-card--designed .alx-world-offer-badge {
  min-height: 0 !important;
  height: auto !important;
  padding: 4px 9px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark,
.alx-product-badges .alx-badge--stock,
.alx-product-badges .alx-badge--muted {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  text-align: center !important;
  vertical-align: middle !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.alx-product-badges {
  align-items: center !important;
}

@media (max-width: 620px) {
  .alx-world-offer-card--designed .alx-world-offer-badge {
    min-height: 0 !important;
    height: auto !important;
    padding: 4px 8px !important;
    line-height: 1 !important;
  }
}

/* v1.5.7 offer positioning + ticker/tag vertical alignment */
.alx-world-offer-card--designed .alx-world-offer-content {
  bottom: 78px !important;
}

.alx-proof-marquee {
  display: flex !important;
  align-items: center !important;
}
.alx-proof-track {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}
.alx-proof-track span,
.alx-proof-track i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  transform: translateY(0.02em);
}

.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark,
.alx-product-badges .alx-badge--stock,
.alx-product-badges .alx-badge--muted {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 0 !important;
  line-height: 1 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  vertical-align: middle !important;
}
.alx-product-badges .alx-badge::before,
.alx-product-badges .alx-badge::after,
.alx-product-badges .alx-badge--dark::before,
.alx-product-badges .alx-badge--dark::after,
.alx-product-badges .alx-badge--stock::before,
.alx-product-badges .alx-badge--stock::after,
.alx-product-badges .alx-badge--muted::before,
.alx-product-badges .alx-badge--muted::after {
  line-height: 1 !important;
}
@media (max-width: 620px) {
  .alx-world-offer-card--designed .alx-world-offer-content {
    bottom: 64px !important;
  }
}

/* v1.5.8 mobile offer-card height + thumbnail containment */
@media (max-width: 767px) {
  .alx-world-product-grid > .alx-world-offer-card--designed,
  .alx-world-offer-card--designed {
    width: 100% !important;
    height: clamp(430px, 122vw, 540px) !important;
    min-height: 430px !important;
    aspect-ratio: auto !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-product {
    top: 6% !important;
    left: 30% !important;
    width: 108% !important;
    max-width: none !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    bottom: 78px !important;
  }
}
@media (max-width: 430px) {
  .alx-world-product-grid > .alx-world-offer-card--designed,
  .alx-world-offer-card--designed {
    height: 440px !important;
    min-height: 440px !important;
  }
  .alx-world-offer-card--designed .alx-world-offer-content {
    bottom: 70px !important;
  }
}

/* v1.5.9 product badge vertical alignment */
.alx-product-badges .alx-badge {
  line-height: 2 !important;
}

/* Global Peptide Sciences hero UI update — reference-matched light clinical hero */
.alx-hero-section--global {
  position: relative !important;
  isolation: isolate;
  display: block !important;
  min-height: clamp(690px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 820px) !important;
  overflow: hidden;
  color: #101828;
  background:
    radial-gradient(circle at 77% 42%, rgba(0, 130, 220, .18), transparent 38%),
    radial-gradient(circle at 84% 3%, rgba(91, 216, 255, .16), transparent 34%),
    linear-gradient(109deg, #ffffff 0%, #fbfdff 44%, #edf6ff 100%) !important;
}

.alx-hero-section--global::before,
.alx-hero-section--global::after {
  content: "";
  position: absolute;
  z-index: -3;
  pointer-events: none;
}

.alx-hero-section--global::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 44%, rgba(234,245,255,.64) 100%),
    radial-gradient(circle at 68% 55%, rgba(0, 91, 179, .10), transparent 42%);
}

.alx-hero-section--global::after {
  right: -8%;
  bottom: -18%;
  width: min(54vw, 880px);
  height: min(54vw, 880px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,130,220,.12) 0%, rgba(0,130,220,.06) 44%, transparent 70%);
  filter: blur(12px);
}

.gp-hero-pattern {
  position: absolute;
  z-index: -2;
  width: clamp(180px, 19vw, 340px);
  height: clamp(240px, 28vw, 480px);
  opacity: .30;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='220' viewBox='0 0 190 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230082dc' stroke-opacity='.24' stroke-width='1.4'%3E%3Cpath d='M48 2 91 27v50L48 102 5 77V27L48 2Z'/%3E%3Cpath d='M143 58 186 83v50l-43 25-43-25V83l43-25Z'/%3E%3Cpath d='M48 114 91 139v50l-43 25-43-25v-50l43-25Z'/%3E%3Cpath d='M91 77 100 83M91 139l9-6M48 102v12'/%3E%3Ccircle cx='48' cy='2' r='2' fill='%230082dc' fill-opacity='.22'/%3E%3Ccircle cx='91' cy='77' r='2' fill='%230082dc' fill-opacity='.22'/%3E%3Ccircle cx='143' cy='58' r='2' fill='%230082dc' fill-opacity='.22'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% auto;
  background-repeat: repeat-y;
}

.gp-hero-pattern--left { top: 4%; left: -58px; }
.gp-hero-pattern--right { top: 20%; right: -44px; transform: scaleX(-1); opacity: .22; }

.gp-hero-dots {
  position: absolute;
  z-index: -1;
  width: 130px;
  height: 72px;
  opacity: .32;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,130,220,.42) 1.4px, transparent 1.8px);
  background-size: 18px 18px;
}
.gp-hero-dots--left { left: clamp(24px, 3vw, 56px); bottom: clamp(24px, 4vw, 70px); }
.gp-hero-dots--right { right: clamp(58px, 7vw, 128px); top: clamp(190px, 26vh, 290px); }

.gp-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 47%) minmax(420px, 53%);
  align-items: center;
  width: min(100%, 1717px);
  min-height: clamp(690px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 820px);
  margin: 0 auto;
  padding: clamp(64px, 7.1vw, 112px) clamp(54px, 6.9vw, 118px) clamp(112px, 9vw, 150px);
}

.gp-hero-copy {
  display: grid;
  justify-items: start;
  max-width: 720px;
  margin: 0;
}

.alx-hero-section--global .gp-hero-eyebrow {
  position: relative;
  margin: 0 0 clamp(20px, 2.1vw, 30px);
  color: #0065d5 !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 1.56vw, 28px);
  font-weight: 700;
  letter-spacing: .48em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
}

.alx-hero-section--global .gp-hero-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #006bdc;
  box-shadow: 0 0 0 1px rgba(0,107,220,.05);
}

.alx-hero-section--global .gp-hero-title {
  max-width: 760px !important;
  margin: 0 !important;
  color: #111827 !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(70px, 6.05vw, 112px) !important;
  font-weight: 900;
  line-height: .88 !important;
  letter-spacing: -.018em !important;
  text-transform: uppercase;
  text-shadow: 0 12px 26px rgba(15,23,42,.10) !important;
}

.alx-hero-section--global .gp-title-line {
  display: block;
  color: #111827 !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.alx-hero-section--global .gp-title-line--blue {
  position: relative;
  color: #006bdc !important;
  background: linear-gradient(92deg, #006bdc 0%, #005ebc 44%, #267eea 76%, #0082dc 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.alx-hero-section--global .gp-title-line--blue::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -24px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0,107,220,.35);
}

.alx-hero-section--global .gp-hero-subtitle {
  max-width: 565px !important;
  margin: clamp(30px, 3vw, 44px) 0 clamp(22px, 2.4vw, 32px) !important;
  color: #5f6b7a !important;
  font-size: clamp(15px, .98vw, 18px) !important;
  font-weight: 500;
  letter-spacing: .018em !important;
  line-height: 1.48 !important;
}

.gp-hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(116px, 1fr));
  gap: 0;
  width: min(100%, 610px);
  margin: 0 0 clamp(26px, 2.8vw, 38px);
}

.gp-hero-features article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 110px;
  padding: 0 clamp(16px, 1.7vw, 30px);
  color: #111827;
  text-align: center;
  border-right: 1px solid rgba(15,23,42,.15);
}

.gp-hero-features article:last-child { border-right: 0; }

.gp-hero-feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #006bdc;
  font-size: 41px;
  line-height: 1;
}

.gp-hero-features strong {
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.gp-hero-features span:not(.gp-hero-feature-icon) {
  color: #657083;
  font-size: clamp(12px, .78vw, 14px);
  font-weight: 500;
  line-height: 1.45;
}

.alx-hero-section--global .gp-hero-cta {
  display: inline-flex !important;
  min-width: 212px;
  min-height: 56px;
  justify-content: center;
  gap: 18px;
  padding: 14px 30px !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #127cff 0%, #0067d4 54%, #004eb1 100%) !important;
  box-shadow: 0 16px 32px rgba(0, 103, 212, .30), inset 0 1px 0 rgba(255,255,255,.20) !important;
  font-size: clamp(16px, 1.05vw, 20px) !important;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.alx-hero-section--global .gp-hero-cta i {
  font-size: 25px !important;
  line-height: 1;
}

.alx-hero-section--global .gp-hero-cta:hover,
.alx-hero-section--global .gp-hero-cta:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #0082dc 0%, #005fbc 60%, #003d73 100%) !important;
  box-shadow: 0 20px 40px rgba(0, 95, 188, .34) !important;
  transform: translateY(-2px);
}

.gp-hero-note {
  margin: 18px 0 0;
  color: #9aa3ae;
  font-size: clamp(12px, .85vw, 15px);
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.gp-hero-visual {
  position: absolute;
  z-index: 1;
  right: clamp(8px, 5.9vw, 102px);
  top: 49.5%;
  width: min(50.5vw, 760px);
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
}

.gp-hero-product {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(16,35,68,.18));
}

.gp-hero-trust-bar {
  position: absolute;
  z-index: 4;
  right: clamp(72px, 12.9vw, 220px);
  bottom: clamp(28px, 3vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  align-items: center;
  width: min(56.5vw, 970px);
  min-height: 96px;
  padding: 22px clamp(24px, 2.6vw, 42px);
  color: #101828;
  background: rgba(255,255,255,.91);
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(16, 50, 100, .14), inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}

.gp-hero-trust-bar article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-inline: clamp(10px, 1.4vw, 22px);
  border-right: 1px solid rgba(15,23,42,.12);
}

.gp-hero-trust-bar article:first-child { padding-left: 0; }
.gp-hero-trust-bar article:last-child { padding-right: 0; border-right: 0; }

.gp-hero-trust-bar span {
  display: grid;
  place-items: center;
  color: #006bdc;
  font-size: 36px;
  line-height: 1;
}

.gp-hero-trust-bar strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.gp-hero-trust-bar small {
  display: block;
  color: #667085;
  font-size: clamp(12px, .78vw, 14px);
  font-weight: 600;
  line-height: 1.35;
}

@media (min-width: 1720px) {
  .gp-hero-shell { padding-inline: 118px; }
  .gp-hero-visual { right: 104px; width: 760px; }
  .gp-hero-trust-bar { right: 220px; }
}

@media (max-width: 1280px) {
  .gp-hero-shell {
    grid-template-columns: minmax(390px, 49%) minmax(380px, 51%);
    padding-inline: clamp(38px, 5vw, 76px);
  }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(62px, 6.2vw, 92px) !important; }
  .gp-hero-visual { right: clamp(-26px, 3vw, 42px); width: min(54vw, 640px); }
  .gp-hero-trust-bar { right: clamp(42px, 6vw, 96px); width: min(63vw, 850px); }
}

@media (max-width: 980px) {
  .alx-hero-section--global {
    min-height: auto !important;
  }
  .gp-hero-shell {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 54px 22px 32px;
  }
  .gp-hero-copy {
    justify-items: center;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }
  .alx-hero-section--global .gp-hero-eyebrow::after,
  .alx-hero-section--global .gp-title-line--blue::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .gp-hero-features { width: min(100%, 620px); }
  .gp-hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(92vw, 620px);
    margin: 18px auto 0;
    transform: none;
  }
  .gp-hero-trust-bar {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 28px), 720px);
    grid-template-columns: 1fr;
    margin: 0 auto 28px;
    padding: 18px 20px;
  }
  .gp-hero-trust-bar article {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(15,23,42,.10);
  }
  .gp-hero-trust-bar article:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .gp-hero-pattern--right,
  .gp-hero-dots--right { display: none; }
  .gp-hero-shell { padding-top: 42px; }
  .alx-hero-section--global .gp-hero-eyebrow {
    font-size: 16px;
    letter-spacing: .34em;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(48px, 15vw, 78px) !important;
  }
  .gp-hero-features {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 26px;
  }
  .gp-hero-features article {
    grid-template-columns: 44px minmax(0, 1fr);
    justify-items: start;
    min-height: 0;
    padding: 0;
    text-align: left;
    border-right: 0;
  }
  .gp-hero-features article strong,
  .gp-hero-features article span:not(.gp-hero-feature-icon) { grid-column: 2; }
  .gp-hero-feature-icon { grid-row: 1 / span 2; }
  .gp-hero-visual { width: min(104vw, 520px); margin-top: 6px; }
  .alx-hero-section--global .gp-hero-cta { min-width: 190px; }
}

/* Global Peptide Sciences hero reference font/color correction v1.6.0 */
:root {
  --gp-ref-blue: #0068e8;
  --gp-ref-blue-deep: #0040a8;
  --gp-ref-blue-dark: #002b78;
  --gp-ref-blue-light: #2b7cff;
  --gp-ref-ink: #111820;
  --gp-ref-muted: #596578;
  --gp-ref-bg: #f8fbff;
}

.alx-shipping-ribbon {
  color: #ffffff !important;
  background: linear-gradient(180deg, #0078f2 0%, #0068e8 54%, #0059d6 100%) !important;
  border: 0 !important;
  box-shadow: none !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .035em !important;
}

.alx-hero-section--global {
  min-height: clamp(690px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 832px) !important;
  color: var(--gp-ref-ink) !important;
  background:
    radial-gradient(circle at 74% 44%, rgba(0,104,232,.18) 0%, rgba(0,104,232,.10) 24%, transparent 44%),
    radial-gradient(circle at 95% 18%, rgba(0,104,232,.08) 0%, transparent 30%),
    linear-gradient(105deg, #ffffff 0%, #fbfdff 40%, #f1f7ff 78%, #edf5ff 100%) !important;
}

.alx-hero-section--global::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 38%, rgba(239,247,255,.72) 100%),
    radial-gradient(circle at 72% 56%, rgba(0,74,180,.11), transparent 42%) !important;
}

.alx-hero-section--global::after {
  background: radial-gradient(circle, rgba(0,104,232,.12) 0%, rgba(0,104,232,.06) 45%, transparent 72%) !important;
}

.gp-hero-shell {
  width: min(100%, 1717px) !important;
  min-height: clamp(690px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 832px) !important;
  padding-top: clamp(74px, 7.2vw, 112px) !important;
  padding-bottom: clamp(116px, 9.2vw, 154px) !important;
}

.gp-hero-copy {
  max-width: 735px !important;
}

.alx-hero-section--global .gp-hero-eyebrow {
  margin-bottom: clamp(22px, 2.3vw, 32px) !important;
  color: var(--gp-ref-blue) !important;
  font-family: "Barlow Condensed", "Bebas Neue", "Arial Narrow", sans-serif !important;
  font-size: clamp(18px, 1.38vw, 24px) !important;
  font-weight: 800 !important;
  letter-spacing: .46em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.alx-hero-section--global .gp-hero-eyebrow::after {
  bottom: -17px !important;
  width: 42px !important;
  height: 3px !important;
  background: var(--gp-ref-blue) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

.alx-hero-section--global .gp-hero-title {
  max-width: 760px !important;
  margin: 0 !important;
  font-family: "Barlow Condensed", "Arial Narrow", "Bebas Neue", sans-serif !important;
  font-size: clamp(84px, 6.72vw, 128px) !important;
  font-weight: 900 !important;
  line-height: .82 !important;
  letter-spacing: -.035em !important;
  text-transform: uppercase !important;
  text-shadow: 0 14px 24px rgba(6,16,30,.10) !important;
}

.alx-hero-section--global .gp-title-line {
  display: block !important;
  color: var(--gp-ref-ink) !important;
  background: linear-gradient(180deg, #202936 0%, #111820 48%, #080e16 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.alx-hero-section--global .gp-title-line--blue {
  color: var(--gp-ref-blue) !important;
  background: linear-gradient(90deg, #004dbb 0%, #0068e8 44%, #227cff 72%, #005bcf 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 13px 24px rgba(0,74,180,.12) !important;
}

.alx-hero-section--global .gp-title-line--blue::after {
  bottom: -25px !important;
  width: 42px !important;
  height: 2px !important;
  background: rgba(0,104,232,.34) !important;
}

.alx-hero-section--global .gp-hero-subtitle {
  max-width: 590px !important;
  margin: clamp(31px, 2.95vw, 42px) 0 clamp(24px, 2.55vw, 34px) !important;
  color: var(--gp-ref-muted) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(15px, .96vw, 17px) !important;
  font-weight: 600 !important;
  letter-spacing: .016em !important;
  line-height: 1.48 !important;
}

.gp-hero-features {
  width: min(100%, 615px) !important;
  margin-bottom: clamp(28px, 2.8vw, 38px) !important;
}

.gp-hero-features article {
  min-height: 112px !important;
  color: #111820 !important;
  border-right-color: rgba(14,31,55,.16) !important;
}

.gp-hero-feature-icon,
.gp-hero-trust-bar span {
  color: var(--gp-ref-blue) !important;
}

.gp-hero-feature-icon {
  font-size: 42px !important;
}

.gp-hero-features strong,
.gp-hero-trust-bar strong {
  color: #101828 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(12px, .78vw, 14px) !important;
  font-weight: 900 !important;
  letter-spacing: .055em !important;
}

.gp-hero-features span:not(.gp-hero-feature-icon),
.gp-hero-trust-bar small {
  color: #657083 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-weight: 600 !important;
}

.alx-hero-section--global .gp-hero-cta {
  min-width: 212px !important;
  min-height: 56px !important;
  padding: 14px 30px !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #1683ff 0%, #0068e8 54%, #004dbb 100%) !important;
  box-shadow: 0 16px 30px rgba(0,104,232,.30), inset 0 1px 0 rgba(255,255,255,.26) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(16px, 1.04vw, 20px) !important;
  font-weight: 900 !important;
  letter-spacing: .038em !important;
  text-transform: uppercase !important;
}

.alx-hero-section--global .gp-hero-cta:hover,
.alx-hero-section--global .gp-hero-cta:focus-visible {
  background: linear-gradient(135deg, #0068e8 0%, #0058cf 58%, #003e9e 100%) !important;
  box-shadow: 0 20px 38px rgba(0,88,207,.34) !important;
}

.gp-hero-note {
  color: #9aa4b2 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(12px, .84vw, 15px) !important;
  font-weight: 700 !important;
  letter-spacing: .075em !important;
}

.gp-hero-trust-bar {
  color: #101828 !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(255,255,255,.88) !important;
  border-radius: 22px !important;
  box-shadow: 0 22px 58px rgba(16,50,100,.14), inset 0 1px 0 rgba(255,255,255,.90) !important;
}

.gp-hero-trust-bar article {
  border-right-color: rgba(14,31,55,.13) !important;
}

.gp-hero-pattern {
  opacity: .24 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='220' viewBox='0 0 190 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230068e8' stroke-opacity='.20' stroke-width='1.3'%3E%3Cpath d='M48 2 91 27v50L48 102 5 77V27L48 2Z'/%3E%3Cpath d='M143 58 186 83v50l-43 25-43-25V83l43-25Z'/%3E%3Cpath d='M48 114 91 139v50l-43 25-43-25v-50l43-25Z'/%3E%3Cpath d='M91 77 100 83M91 139l9-6M48 102v12'/%3E%3Ccircle cx='48' cy='2' r='2' fill='%230068e8' fill-opacity='.20'/%3E%3Ccircle cx='91' cy='77' r='2' fill='%230068e8' fill-opacity='.20'/%3E%3Ccircle cx='143' cy='58' r='2' fill='%230068e8' fill-opacity='.20'/%3E%3C/g%3E%3C/svg%3E") !important;
}

.gp-hero-dots {
  opacity: .26 !important;
  background-image: radial-gradient(circle, rgba(0,104,232,.38) 1.4px, transparent 1.8px) !important;
}

@media (max-width: 1280px) {
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(70px, 6.7vw, 104px) !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(66px, 12vw, 106px) !important;
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-eyebrow {
    font-size: 16px !important;
    letter-spacing: .34em !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(54px, 16.5vw, 82px) !important;
    line-height: .84 !important;
  }
  .alx-hero-section--global .gp-hero-subtitle {
    font-size: 14px !important;
  }
}



/* Global Peptide Sciences hero exact typography correction v1.6.1
   The supplied mockup uses a very heavy, industrial condensed uppercase face.
   Anton is closer than Barlow Condensed for the large hero words. */
.alx-hero-section--global .gp-hero-eyebrow {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: .50em !important;
  font-size: clamp(18px, 1.34vw, 24px) !important;
}

.alx-hero-section--global .gp-hero-title,
.alx-hero-section--global .gp-title-line,
.alx-hero-section--global .gp-title-line--blue {
  font-family: "Anton", "Impact", "Haettenschweiler", "Arial Narrow", sans-serif !important;
  font-weight: 400 !important;
  font-synthesis-weight: none !important;
  text-transform: uppercase !important;
}

.alx-hero-section--global .gp-hero-title {
  max-width: 790px !important;
  font-size: clamp(82px, 6.48vw, 126px) !important;
  line-height: .895 !important;
  letter-spacing: -.022em !important;
  text-shadow: none !important;
}

.alx-hero-section--global .gp-title-line {
  color: #121922 !important;
  background: linear-gradient(180deg, #202631 0%, #111820 48%, #070b12 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.alx-hero-section--global .gp-title-line--blue {
  color: #0068e8 !important;
  background: linear-gradient(90deg, #004ebd 0%, #0068e8 42%, #2a7fff 72%, #005bd3 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: -.033em !important;
}

@media (max-width: 1280px) {
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(68px, 6.55vw, 102px) !important;
    letter-spacing: -.024em !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(64px, 11.4vw, 104px) !important;
    line-height: .91 !important;
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-eyebrow {
    letter-spacing: .36em !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(50px, 15.4vw, 78px) !important;
    line-height: .92 !important;
    letter-spacing: -.018em !important;
  }
}

/* Global Peptide Sciences v1.6.2 — reference pixel polish for top ribbon, navbar, and hero */
:root {
  --alx-alert-h: 38px;
  --alx-header-h: 88px;
  --gp-ui-blue: #006be8;
  --gp-ui-blue-deep: #0057cc;
  --gp-ui-blue-dark: #003f9f;
  --gp-ui-blue-soft: #eaf4ff;
  --gp-ui-ink: #101722;
  --gp-ui-muted: #5d6878;
  --gp-ui-line: #e7edf5;
}

.alx-shipping-ribbon {
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  color: #fff !important;
  background: linear-gradient(180deg, #0077f0 0%, #006be8 54%, #005bd7 100%) !important;
  box-shadow: inset 0 -1px 0 rgba(0,42,110,.16) !important;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .035em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.alx-header {
  height: 88px !important;
  min-height: 88px !important;
  grid-template-columns: minmax(0,1fr) 190px minmax(0,1fr) !important;
  padding: 0 clamp(70px, 4.42vw, 78px) !important;
  background: rgba(255,255,255,.985) !important;
  border-bottom: 1px solid rgba(214,224,237,.84) !important;
  box-shadow: 0 10px 32px rgba(34,55,91,.075), 0 1px 0 rgba(255,255,255,.94) inset !important;
  backdrop-filter: blur(14px) saturate(1.05) !important;
}

.alx-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(22,43,78,.105), 0 1px 0 rgba(255,255,255,.90) inset !important;
}

.alx-primary-nav,
.alx-header-actions {
  gap: clamp(26px, 2.08vw, 39px) !important;
}

.alx-primary-nav {
  height: 100% !important;
  align-items: center !important;
}

.alx-header-actions {
  height: 100% !important;
  align-items: center !important;
  gap: clamp(24px, 1.9vw, 35px) !important;
}

.alx-header-actions::before {
  width: 1px !important;
  height: 42px !important;
  margin-right: clamp(6px, .78vw, 14px) !important;
  background: linear-gradient(180deg, transparent 0%, #dbe3ee 18%, #dbe3ee 82%, transparent 100%) !important;
  opacity: 1 !important;
}

.alx-nav-link,
.alx-action-btn,
.alx-menu-btn {
  color: #0c1320 !important;
  font-family: "Oswald", "Bebas Neue", "Arial Narrow", "Plus Jakarta Sans", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .052em !important;
  text-transform: uppercase !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
}

.alx-nav-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 88px !important;
  padding: 0 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

.alx-nav-link::after {
  bottom: 28px !important;
  height: 2px !important;
  background: var(--gp-ui-blue) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 12px rgba(0,107,232,.22) !important;
}

.alx-nav-link:hover,
.alx-nav-link:focus-visible,
.alx-nav-link[aria-current="page"] {
  color: #005ed6 !important;
}

.alx-brand {
  width: 190px !important;
  height: 88px !important;
  min-height: 88px !important;
  align-self: stretch !important;
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: visible !important;
}

.alx-brand-logo {
  width: 180px !important;
  max-width: 180px !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 5px 10px rgba(8,29,54,.075)) !important;
}

.alx-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  height: 88px !important;
  padding: 0 !important;
  color: #0c1320 !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.alx-action-btn i,
.alx-menu-btn i {
  color: #0b1320 !important;
  font-size: 29px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.alx-action-btn:hover,
.alx-action-btn:focus-visible {
  color: var(--gp-ui-blue) !important;
}

.alx-action-btn:hover i,
.alx-action-btn:focus-visible i {
  color: var(--gp-ui-blue) !important;
}

/* Reference hero stage */
.alx-hero-section--global {
  min-height: clamp(760px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 804px) !important;
  color: var(--gp-ui-ink) !important;
  border-top: 1px solid rgba(222,231,243,.74) !important;
  background:
    radial-gradient(circle at 73.5% 43%, rgba(0,96,215,.20) 0%, rgba(0,96,215,.125) 23%, rgba(0,96,215,.045) 39%, transparent 51%),
    radial-gradient(circle at 94% 20%, rgba(0,107,232,.07) 0%, transparent 29%),
    linear-gradient(108deg, #ffffff 0%, #fcfdff 38%, #f4f9ff 67%, #edf5ff 100%) !important;
  box-shadow: inset 0 30px 45px rgba(11,34,68,.055) !important;
}

.alx-hero-section--global::before {
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.985) 0%, rgba(255,255,255,.945) 37%, rgba(240,247,255,.74) 74%, rgba(238,246,255,.86) 100%),
    radial-gradient(circle at 71% 61%, rgba(0,75,180,.10), transparent 43%) !important;
}

.alx-hero-section--global::after {
  right: -10% !important;
  bottom: -24% !important;
  width: min(58vw, 930px) !important;
  height: min(58vw, 930px) !important;
  background: radial-gradient(circle, rgba(0,107,232,.105) 0%, rgba(0,107,232,.052) 46%, transparent 72%) !important;
  filter: blur(16px) !important;
}

.gp-hero-shell {
  width: min(100%, 1717px) !important;
  min-height: clamp(760px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 804px) !important;
  grid-template-columns: minmax(500px, 48.1%) minmax(520px, 51.9%) !important;
  align-items: start !important;
  padding: clamp(94px, 6.66vw, 114px) clamp(76px, 6.9vw, 118px) clamp(118px, 8.8vw, 146px) !important;
}

.gp-hero-copy {
  max-width: 720px !important;
  padding-top: 0 !important;
}

.alx-hero-section--global .gp-hero-eyebrow {
  margin: 0 0 clamp(33px, 2.75vw, 42px) !important;
  color: var(--gp-ui-blue) !important;
  font-family: "Oswald", "Bebas Neue", "Arial Narrow", sans-serif !important;
  font-size: clamp(19px, 1.31vw, 23px) !important;
  font-weight: 700 !important;
  letter-spacing: .455em !important;
  line-height: 1 !important;
  text-shadow: none !important;
}

.alx-hero-section--global .gp-hero-eyebrow::after {
  bottom: -19px !important;
  width: 42px !important;
  height: 3px !important;
  background: var(--gp-ui-blue) !important;
  box-shadow: none !important;
}

.alx-hero-section--global .gp-hero-title,
.alx-hero-section--global .gp-title-line,
.alx-hero-section--global .gp-title-line--blue {
  font-family: "Roboto Condensed", "Anton", "Impact", "Arial Narrow", sans-serif !important;
  font-weight: 900 !important;
  font-stretch: condensed !important;
  text-transform: uppercase !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
}

.alx-hero-section--global .gp-hero-title {
  max-width: 760px !important;
  margin: 0 !important;
  font-size: clamp(80px, 5.58vw, 96px) !important;
  line-height: .83 !important;
  letter-spacing: -.034em !important;
  text-shadow: 0 13px 20px rgba(11,21,37,.07) !important;
}

.alx-hero-section--global .gp-title-line {
  display: block !important;
  color: #111722 !important;
  background: linear-gradient(180deg, #202936 0%, #111722 48%, #060a10 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.alx-hero-section--global .gp-title-line--blue {
  color: var(--gp-ui-blue) !important;
  background: linear-gradient(90deg, #004dbb 0%, #006be8 41%, #2d80ff 72%, #0059d3 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: -.041em !important;
  text-shadow: 0 12px 18px rgba(0,80,180,.08) !important;
}

.alx-hero-section--global .gp-title-line--blue::after {
  bottom: -25px !important;
  width: 41px !important;
  height: 2px !important;
  background: rgba(0,107,232,.36) !important;
}

.alx-hero-section--global .gp-hero-subtitle {
  max-width: 548px !important;
  margin: clamp(34px, 3vw, 46px) 0 clamp(25px, 2.45vw, 34px) !important;
  color: #5f6877 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(14px, .91vw, 16px) !important;
  font-weight: 600 !important;
  letter-spacing: .012em !important;
  line-height: 1.46 !important;
}

.gp-hero-features {
  width: min(100%, 612px) !important;
  margin-bottom: clamp(27px, 2.55vw, 37px) !important;
}

.gp-hero-features article {
  min-height: 106px !important;
  padding: 0 clamp(18px, 1.75vw, 31px) !important;
  border-right-color: rgba(17,31,50,.14) !important;
}

.gp-hero-feature-icon {
  width: 46px !important;
  height: 46px !important;
  color: var(--gp-ui-blue) !important;
  font-size: 43px !important;
  filter: drop-shadow(0 5px 9px rgba(0,107,232,.11)) !important;
}

.gp-hero-features strong {
  color: #101722 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .052em !important;
}

.gp-hero-features span:not(.gp-hero-feature-icon) {
  color: #657081 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.47 !important;
}

.alx-hero-section--global .gp-hero-cta {
  min-width: 213px !important;
  min-height: 56px !important;
  gap: 25px !important;
  padding: 14px 30px !important;
  background: linear-gradient(135deg, #1683ff 0%, #006be8 53%, #004eb6 100%) !important;
  box-shadow: 0 16px 30px rgba(0,103,212,.31), inset 0 1px 0 rgba(255,255,255,.25) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: .046em !important;
}

.alx-hero-section--global .gp-hero-cta i {
  font-size: 27px !important;
}

.gp-hero-note {
  margin-top: 18px !important;
  color: #9aa4b1 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .073em !important;
}

.gp-hero-visual {
  right: clamp(48px, 5.3vw, 92px) !important;
  top: 48.8% !important;
  width: min(47.6vw, 735px) !important;
  filter: drop-shadow(0 22px 24px rgba(20,45,82,.08)) !important;
}

.gp-hero-product {
  filter: drop-shadow(0 30px 36px rgba(16,35,68,.16)) !important;
}

.gp-hero-trust-bar {
  right: clamp(84px, 12.72vw, 218px) !important;
  bottom: clamp(32px, 3.2vw, 52px) !important;
  width: min(56.5vw, 970px) !important;
  min-height: 96px !important;
  padding: 22px clamp(25px, 2.45vw, 42px) !important;
  background: rgba(255,255,255,.955) !important;
  border: 1px solid rgba(255,255,255,.92) !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 54px rgba(31,64,105,.14), 0 6px 18px rgba(31,64,105,.06), inset 0 1px 0 rgba(255,255,255,.96) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
}

.gp-hero-trust-bar article {
  grid-template-columns: 47px minmax(0,1fr) !important;
  gap: 16px !important;
  border-right-color: rgba(17,31,50,.12) !important;
}

.gp-hero-trust-bar span {
  color: var(--gp-ui-blue) !important;
  font-size: 37px !important;
  filter: drop-shadow(0 5px 9px rgba(0,107,232,.10)) !important;
}

.gp-hero-trust-bar strong {
  color: #101722 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .052em !important;
}

.gp-hero-trust-bar small {
  color: #647084 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.gp-hero-pattern--left { top: 2.5% !important; left: -54px !important; opacity: .23 !important; }
.gp-hero-pattern--right { top: 22% !important; right: -48px !important; opacity: .19 !important; }
.gp-hero-dots--left { left: clamp(38px, 3.1vw, 58px) !important; bottom: clamp(30px, 4vw, 68px) !important; opacity: .24 !important; }
.gp-hero-dots--right { right: clamp(76px, 7.5vw, 132px) !important; top: clamp(200px, 26vh, 286px) !important; opacity: .22 !important; }

@media (min-width: 1720px) {
  .gp-hero-shell { padding-left: 118px !important; padding-right: 118px !important; }
  .gp-hero-visual { right: 92px !important; width: 735px !important; }
  .gp-hero-trust-bar { right: 218px !important; }
}

@media (max-width: 1280px) {
  .alx-header { padding-inline: clamp(38px, 4.8vw, 62px) !important; }
  .alx-primary-nav { gap: clamp(18px, 1.8vw, 26px) !important; }
  .alx-header-actions { gap: clamp(18px, 1.6vw, 26px) !important; }
  .alx-nav-link { font-size: 15px !important; }
  .alx-action-btn { font-size: 12px !important; }
  .gp-hero-shell { grid-template-columns: minmax(420px, 49%) minmax(390px, 51%) !important; padding-inline: clamp(44px, 5.4vw, 76px) !important; }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(68px, 6.4vw, 88px) !important; }
  .gp-hero-visual { right: clamp(-4px, 3.2vw, 40px) !important; width: min(52vw, 650px) !important; }
  .gp-hero-trust-bar { right: clamp(44px, 6vw, 92px) !important; width: min(63vw, 850px) !important; }
}

@media (max-width: 980px) {
  :root { --alx-alert-h: 34px; --alx-header-h: 72px; }
  .alx-shipping-ribbon { height: 34px !important; min-height: 34px !important; font-size: 10px !important; }
  .alx-header { height: 72px !important; min-height: 72px !important; grid-template-columns: auto 1fr auto !important; padding-inline: 24px !important; }
  .alx-brand { height: 72px !important; min-height: 72px !important; width: clamp(142px, 34vw, 184px) !important; justify-self: start !important; }
  .alx-brand-logo { width: 100% !important; max-width: 184px !important; max-height: 52px !important; }
  .alx-menu-btn { height: 72px !important; }
  .alx-menu-btn i { font-size: 30px !important; }
  .alx-hero-section--global { min-height: auto !important; }
  .gp-hero-shell { grid-template-columns: 1fr !important; min-height: auto !important; padding: 56px 24px 32px !important; }
  .gp-hero-copy { justify-items: center !important; text-align: center !important; margin-inline: auto !important; }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(62px, 11.2vw, 104px) !important; line-height: .88 !important; text-align: center !important; }
  .alx-hero-section--global .gp-hero-eyebrow::after,
  .alx-hero-section--global .gp-title-line--blue::after { left: 50% !important; transform: translateX(-50%) !important; }
  .gp-hero-visual { position: relative !important; right: auto !important; top: auto !important; width: min(92vw, 620px) !important; margin: 16px auto 0 !important; transform: none !important; }
  .gp-hero-trust-bar { position: relative !important; right: auto !important; bottom: auto !important; width: min(calc(100% - 28px), 720px) !important; margin: 0 auto 28px !important; }
}

@media (max-width: 640px) {
  :root { --alx-alert-h: 32px; --alx-header-h: 64px; }
  .alx-shipping-ribbon { height: 32px !important; min-height: 32px !important; font-size: 9px !important; letter-spacing: .025em !important; }
  .alx-header { height: 64px !important; min-height: 64px !important; padding-inline: 18px !important; }
  .alx-brand { height: 64px !important; min-height: 64px !important; width: clamp(126px, 42vw, 168px) !important; }
  .alx-brand-logo { max-height: 46px !important; }
  .alx-hero-section--global .gp-hero-eyebrow { font-size: 15px !important; letter-spacing: .32em !important; }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(48px, 15vw, 78px) !important; line-height: .89 !important; }
  .gp-hero-features { grid-template-columns: 1fr !important; }
  .gp-hero-trust-bar { grid-template-columns: 1fr !important; padding: 18px 20px !important; }
}


/* Global Peptide Sciences v1.6.3 — user supplied reference lock + pixel-perfect navbar/hero pass */
:root {
  --alx-alert-h: 38px;
  --alx-header-h: 88px;
  --gp-ref-ribbon-blue: #006fe8;
  --gp-ref-blue: #0069e6;
  --gp-ref-blue-deep: #0053c8;
  --gp-ref-blue-dark: #003d9d;
  --gp-ref-ink: #101722;
  --gp-ref-muted: #5d6675;
  --gp-ref-line: #dfe7f1;
}

.alx-shipping-ribbon {
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: linear-gradient(180deg, #0078f0 0%, #006fe8 52%, #005dd8 100%) !important;
  border: 0 !important;
  box-shadow: inset 0 -1px 0 rgba(0, 42, 110, .14) !important;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .038em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.alx-header {
  height: 88px !important;
  min-height: 88px !important;
  grid-template-columns: minmax(0, 1fr) 192px minmax(0, 1fr) !important;
  padding: 0 clamp(72px, 4.45vw, 78px) !important;
  background: rgba(255,255,255,.992) !important;
  border-bottom: 1px solid rgba(218,226,237,.88) !important;
  box-shadow: 0 11px 30px rgba(36, 58, 94, .067), 0 1px 0 rgba(255,255,255,.96) inset !important;
  backdrop-filter: blur(16px) saturate(1.04) !important;
}

.alx-header.is-scrolled {
  box-shadow: 0 14px 38px rgba(28, 49, 82, .10), 0 1px 0 rgba(255,255,255,.92) inset !important;
}

.alx-primary-nav {
  height: 100% !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(32px, 2.1vw, 40px) !important;
}

.alx-header-actions {
  height: 100% !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(30px, 1.95vw, 36px) !important;
}

.alx-header-actions::before {
  width: 1px !important;
  height: 42px !important;
  margin-right: clamp(8px, .78vw, 14px) !important;
  background: linear-gradient(180deg, transparent 0%, #dbe3ee 18%, #dbe3ee 82%, transparent 100%) !important;
  opacity: 1 !important;
}

.alx-nav-link,
.alx-action-btn,
.alx-menu-btn {
  color: #0c1320 !important;
  font-family: "Bebas Neue", "Oswald", "Arial Narrow", "Plus Jakarta Sans", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: .055em !important;
  text-transform: uppercase !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
}

.alx-nav-link {
  height: 88px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.alx-nav-link::after {
  bottom: 28px !important;
  height: 2px !important;
  background: var(--gp-ref-blue) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 12px rgba(0, 105, 230, .20) !important;
}

.alx-nav-link:hover,
.alx-nav-link:focus-visible,
.alx-nav-link[aria-current="page"] {
  color: var(--gp-ref-blue-deep) !important;
}

.alx-brand {
  width: 192px !important;
  height: 88px !important;
  min-height: 88px !important;
  align-self: stretch !important;
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: visible !important;
}

.alx-brand-logo {
  width: 180px !important;
  max-width: 180px !important;
  max-height: 58px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 5px 10px rgba(8, 29, 54, .072)) !important;
}

.alx-action-btn {
  height: 88px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  color: #0c1320 !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.alx-action-btn i,
.alx-menu-btn i {
  color: #0b1320 !important;
  font-size: 29px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.alx-action-btn:hover,
.alx-action-btn:focus-visible,
.alx-action-btn:hover i,
.alx-action-btn:focus-visible i {
  color: var(--gp-ref-blue) !important;
}

.alx-hero-section--global {
  min-height: clamp(760px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 792px) !important;
  color: var(--gp-ref-ink) !important;
  border-top: 1px solid rgba(222,231,243,.74) !important;
  background:
    radial-gradient(circle at 73.4% 42.8%, rgba(0, 96, 215, .20) 0%, rgba(0,96,215,.126) 23%, rgba(0,96,215,.045) 39%, transparent 51%),
    radial-gradient(circle at 94% 19%, rgba(0, 107, 232, .07) 0%, transparent 29%),
    linear-gradient(108deg, #ffffff 0%, #fcfdff 38%, #f4f9ff 67%, #edf5ff 100%) !important;
  box-shadow: inset 0 30px 45px rgba(11,34,68,.055) !important;
}

.alx-hero-section--global::before {
  inset: 0 !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.988) 0%, rgba(255,255,255,.95) 37%, rgba(240,247,255,.74) 74%, rgba(238,246,255,.88) 100%),
    radial-gradient(circle at 71% 61%, rgba(0,75,180,.10), transparent 43%) !important;
}

.alx-hero-section--global::after {
  right: -10% !important;
  bottom: -24% !important;
  width: min(58vw, 930px) !important;
  height: min(58vw, 930px) !important;
  background: radial-gradient(circle, rgba(0,107,232,.105) 0%, rgba(0,107,232,.052) 46%, transparent 72%) !important;
  filter: blur(16px) !important;
}

.gp-hero-shell {
  width: min(100%, 1717px) !important;
  min-height: clamp(760px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 792px) !important;
  grid-template-columns: minmax(500px, 48.1%) minmax(520px, 51.9%) !important;
  align-items: start !important;
  padding: clamp(94px, 6.66vw, 114px) clamp(76px, 6.9vw, 118px) clamp(118px, 8.8vw, 146px) !important;
}

.gp-hero-copy {
  max-width: 720px !important;
  padding-top: 0 !important;
}

.alx-hero-section--global .gp-hero-eyebrow {
  margin: 0 0 clamp(33px, 2.75vw, 42px) !important;
  color: var(--gp-ref-blue) !important;
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
  font-size: clamp(20px, 1.33vw, 24px) !important;
  font-weight: 400 !important;
  letter-spacing: .46em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}

.alx-hero-section--global .gp-hero-eyebrow::after {
  bottom: -19px !important;
  width: 42px !important;
  height: 3px !important;
  background: var(--gp-ref-blue) !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

/* User-requested exact hero title sizing/font */
.alx-hero-section--global .gp-hero-title {
    font-size: clamp(80px, 5.1vw, 96px) !important;
    font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
}
.alx-hero-section--global .gp-hero-subtitle {
    text-transform: capitalize;
}

.gp-hero-visual {
    width: min(45.6vw, 630px) !important;
}

.alx-hero-section--global .gp-hero-cta {
    font-weight: 600 !important;
    text-transform: capitalize !important;
}

.alx-hero-section--global .gp-hero-title,
.alx-hero-section--global .gp-title-line,
.alx-hero-section--global .gp-title-line--blue {
  font-family: "Bebas Neue", "Plus Jakarta Sans", sans-serif !important;
  font-weight: 400 !important;
  font-synthesis-weight: none !important;
  text-transform: uppercase !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
}

.alx-hero-section--global .gp-hero-title {
  max-width: 760px !important;
  margin: 0 !important;
  line-height: .91 !important;
  letter-spacing: .006em !important;
  text-shadow: none !important;
}

.alx-hero-section--global .gp-title-line {
  display: block !important;
  color: #111722 !important;
  background: linear-gradient(180deg, #202936 0%, #111722 48%, #060a10 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.alx-hero-section--global .gp-title-line--blue {
  color: var(--gp-ref-blue) !important;
  background: linear-gradient(90deg, #004dbb 0%, #006be8 41%, #2d80ff 72%, #0059d3 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: .004em !important;
  text-shadow: none !important;
}

.alx-hero-section--global .gp-title-line--blue::after {
  bottom: -25px !important;
  width: 41px !important;
  height: 2px !important;
  background: rgba(0,107,232,.36) !important;
}

.alx-hero-section--global .gp-hero-subtitle {
  max-width: 548px !important;
  margin: clamp(34px, 3vw, 46px) 0 clamp(25px, 2.45vw, 34px) !important;
  color: var(--gp-ref-muted) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(14px, .91vw, 16px) !important;
  font-weight: 600 !important;
  letter-spacing: .012em !important;
  line-height: 1.46 !important;
}

.gp-hero-features {
  width: min(100%, 612px) !important;
  margin-bottom: clamp(27px, 2.55vw, 37px) !important;
}

.gp-hero-features article {
  min-height: 106px !important;
  padding: 0 clamp(18px, 1.75vw, 31px) !important;
  border-right-color: rgba(17,31,50,.14) !important;
}

.gp-hero-feature-icon {
  width: 46px !important;
  height: 46px !important;
  color: var(--gp-ref-blue) !important;
  font-size: 43px !important;
  filter: drop-shadow(0 5px 9px rgba(0,107,232,.11)) !important;
}

.gp-hero-features strong {
  color: #101722 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .052em !important;
}

.gp-hero-features span:not(.gp-hero-feature-icon) {
  color: #657081 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.47 !important;
}

.alx-hero-section--global .gp-hero-cta {
  min-width: 213px !important;
  min-height: 56px !important;
  gap: 25px !important;
  padding: 14px 30px !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #1683ff 0%, #006be8 53%, #004eb6 100%) !important;
  box-shadow: 0 16px 30px rgba(0,103,212,.31), inset 0 1px 0 rgba(255,255,255,.25) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 16px !important;
  letter-spacing: .046em !important;
}

.alx-hero-section--global .gp-hero-cta i {
  font-size: 27px !important;
}

.gp-hero-note {
  margin-top: 18px !important;
  color: #9aa4b1 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .073em !important;
  text-transform: uppercase !important;
}

.gp-hero-visual {
  right: clamp(112px, 10.85vw, 186px) !important;
  top: 48.7% !important;
  filter: drop-shadow(0 22px 24px rgba(20,45,82,.08)) !important;
}

.gp-hero-product {
  filter: drop-shadow(0 30px 36px rgba(16,35,68,.16)) !important;
}

.gp-hero-trust-bar {
  right: clamp(84px, 12.72vw, 218px) !important;
  bottom: clamp(32px, 3.2vw, 52px) !important;
  width: min(56.5vw, 970px) !important;
  min-height: 96px !important;
  padding: 22px clamp(25px, 2.45vw, 42px) !important;
  background: rgba(255,255,255,.958) !important;
  border: 1px solid rgba(255,255,255,.92) !important;
  border-radius: 22px !important;
  box-shadow: 0 20px 54px rgba(31,64,105,.14), 0 6px 18px rgba(31,64,105,.06), inset 0 1px 0 rgba(255,255,255,.96) !important;
  backdrop-filter: blur(18px) saturate(1.08) !important;
}

.gp-hero-trust-bar article {
  grid-template-columns: 47px minmax(0,1fr) !important;
  gap: 16px !important;
  border-right-color: rgba(17,31,50,.12) !important;
}

.gp-hero-trust-bar span {
  color: var(--gp-ref-blue) !important;
  font-size: 37px !important;
  filter: drop-shadow(0 5px 9px rgba(0,107,232,.10)) !important;
}

.gp-hero-trust-bar strong {
  color: #101722 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .052em !important;
}

.gp-hero-trust-bar small {
  color: #647084 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.gp-hero-pattern--left { top: 2.5% !important; left: -54px !important; opacity: .23 !important; }
.gp-hero-pattern--right { top: 22% !important; right: -48px !important; opacity: .19 !important; }
.gp-hero-dots--left { left: clamp(38px, 3.1vw, 58px) !important; bottom: clamp(30px, 4vw, 68px) !important; opacity: .24 !important; }
.gp-hero-dots--right { right: clamp(76px, 7.5vw, 132px) !important; top: clamp(200px, 26vh, 286px) !important; opacity: .22 !important; }

@media (min-width: 1720px) {
  .gp-hero-shell { padding-left: 118px !important; padding-right: 118px !important; }
  .gp-hero-visual { right: 186px !important; width: 630px !important; }
  .gp-hero-trust-bar { right: 218px !important; }
}

@media (max-width: 1280px) {
  .alx-header { padding-inline: clamp(38px, 4.8vw, 62px) !important; }
  .alx-primary-nav { gap: clamp(18px, 1.8vw, 26px) !important; }
  .alx-header-actions { gap: clamp(18px, 1.6vw, 26px) !important; }
  .alx-nav-link { font-size: 16px !important; }
  .alx-action-btn { font-size: 14px !important; }
  .gp-hero-shell { grid-template-columns: minmax(420px, 49%) minmax(390px, 51%) !important; padding-inline: clamp(44px, 5.4vw, 76px) !important; }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(68px, 6.4vw, 88px) !important; }
  .gp-hero-visual { right: clamp(18px, 4vw, 72px) !important; width: min(47vw, 610px) !important; }
  .gp-hero-trust-bar { right: clamp(44px, 6vw, 92px) !important; width: min(63vw, 850px) !important; }
}

@media (max-width: 980px) {
  :root { --alx-alert-h: 34px; --alx-header-h: 72px; }
  .alx-shipping-ribbon { height: 34px !important; min-height: 34px !important; font-size: 10px !important; }
  .alx-header { height: 72px !important; min-height: 72px !important; grid-template-columns: auto 1fr auto !important; padding-inline: 24px !important; }
  .alx-brand { height: 72px !important; min-height: 72px !important; width: clamp(142px, 34vw, 184px) !important; justify-self: start !important; }
  .alx-brand-logo { width: 100% !important; max-width: 184px !important; max-height: 52px !important; }
  .alx-menu-btn { height: 72px !important; }
  .alx-menu-btn i { font-size: 30px !important; }
  .alx-hero-section--global { min-height: auto !important; }
  .gp-hero-shell { grid-template-columns: 1fr !important; min-height: auto !important; padding: 56px 24px 32px !important; }
  .gp-hero-copy { justify-items: center !important; text-align: center !important; margin-inline: auto !important; }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(62px, 11.2vw, 104px) !important; line-height: .92 !important; text-align: center !important; }
  .alx-hero-section--global .gp-hero-eyebrow::after,
  .alx-hero-section--global .gp-title-line--blue::after { left: 50% !important; transform: translateX(-50%) !important; }
  .gp-hero-visual { position: relative !important; right: auto !important; top: auto !important; width: min(92vw, 620px) !important; margin: 16px auto 0 !important; transform: none !important; }
  .gp-hero-trust-bar { position: relative !important; right: auto !important; bottom: auto !important; width: min(calc(100% - 28px), 720px) !important; margin: 0 auto 28px !important; }
}

@media (max-width: 640px) {
  :root { --alx-alert-h: 32px; --alx-header-h: 64px; }
  .alx-shipping-ribbon { height: 32px !important; min-height: 32px !important; font-size: 9px !important; letter-spacing: .025em !important; }
  .alx-header { height: 64px !important; min-height: 64px !important; padding-inline: 18px !important; }
  .alx-brand { height: 64px !important; min-height: 64px !important; width: clamp(126px, 42vw, 168px) !important; }
  .alx-brand-logo { max-height: 46px !important; }
  .alx-hero-section--global .gp-hero-eyebrow { font-size: 15px !important; letter-spacing: .32em !important; }
  .alx-hero-section--global .gp-hero-title { font-size: clamp(48px, 15vw, 78px) !important; line-height: .92 !important; }
  .gp-hero-features { grid-template-columns: 1fr !important; }
  .gp-hero-trust-bar { grid-template-columns: 1fr !important; padding: 18px 20px !important; }
}

/* Global Peptide Sciences v1.6.7 — preserve original homepage section UI; only hero feature and mobile nav fixes */
.alx-hero-section--global .gp-hero-features {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  width: min(100%, 640px) !important;
  gap: 0 !important;
}

.alx-hero-section--global .gp-hero-features article {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  padding: 0 clamp(22px, 2.05vw, 34px) !important;
  text-align: left !important;
}

.alx-hero-section--global .gp-hero-features article:first-child {
  padding-left: 0 !important;
}

.alx-hero-section--global .gp-hero-features article:last-child {
  padding-right: 0 !important;
}

.alx-hero-section--global .gp-hero-feature-icon {
  align-self: flex-start !important;
  margin: 0 0 12px !important;
}

.alx-hero-section--global .gp-hero-features strong,
.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
}

.alx-hero-section--global .gp-hero-features strong {
  margin: 0 0 6px !important;
}

.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
  margin: 0 !important;
}

@media (max-width: 1180px) {
  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 590px) !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    padding-inline: clamp(16px, 1.7vw, 26px) !important;
  }

  .alx-hero-section--global .gp-hero-features article:first-child {
    padding-left: 0 !important;
  }
}

@media (max-width: 1024px) {
  :root {
    --alx-alert-h: 34px;
    --alx-header-h: 72px;
  }

  .alx-shipping-ribbon {
    height: 34px !important;
    min-height: 34px !important;
    padding-inline: 12px !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
    letter-spacing: .026em !important;
    text-align: center !important;
  }

  .alx-header {
    height: var(--alx-header-h) !important;
    min-height: var(--alx-header-h) !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    column-gap: 12px !important;
    padding-inline: clamp(18px, 3.2vw, 28px) !important;
  }

  .alx-primary-nav {
    display: none !important;
  }

  .alx-brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    width: clamp(136px, 28vw, 178px) !important;
    height: var(--alx-header-h) !important;
    min-height: var(--alx-header-h) !important;
  }

  .alx-brand-logo {
    width: 100% !important;
    max-width: 178px !important;
    max-height: 50px !important;
  }

  .alx-header-actions {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    height: var(--alx-header-h) !important;
  }

  .alx-header-actions::before {
    display: none !important;
  }

  .alx-action-btn,
  .alx-menu-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    line-height: 1 !important;
  }

  .alx-action-btn span:not(.alx-action-icon),
  .alx-action-btn > span:not(.alx-action-icon) {
    display: none !important;
  }

  .alx-action-btn i,
  .alx-menu-btn i,
  .alx-action-icon i {
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .alx-menu-btn {
    display: inline-flex !important;
  }

  .alx-menu-btn i {
    font-size: 24px !important;
  }

  .alx-action-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .alx-cart-count {
    top: -7px !important;
    right: -8px !important;
    min-width: 15px !important;
    height: 15px !important;
    padding: 1px 4px !important;
    font-size: 9px !important;
  }

  .alx-mobile-menu {
    top: calc(var(--alx-alert-h) + var(--alx-header-h)) !important;
    padding: 6px clamp(20px, 5vw, 34px) 18px !important;
    background: rgba(255,255,255,.985) !important;
    box-shadow: 0 18px 36px rgba(31,64,105,.11) !important;
  }

  .alx-mobile-menu a {
    font-size: 18px !important;
    letter-spacing: .07em !important;
    text-align: center !important;
  }
}

@media (max-width: 760px) {
  .alx-hero-section--global .gp-hero-features {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(100%, 420px) !important;
    margin-inline: auto !important;
    gap: 0 !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    width: 100% !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 16px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(17,31,50,.12) !important;
    text-align: center !important;
  }

  .alx-hero-section--global .gp-hero-features article:first-child {
    padding-top: 0 !important;
    padding-left: 0 !important;
  }

  .alx-hero-section--global .gp-hero-features article:last-child {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .alx-hero-section--global .gp-hero-feature-icon {
    align-self: center !important;
    margin: 0 auto 10px !important;
  }

  .alx-hero-section--global .gp-hero-features strong,
  .alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
    text-align: center !important;
  }
}

@media (max-width: 640px) {
  :root {
    --alx-alert-h: 32px;
    --alx-header-h: 62px;
  }

  .alx-shipping-ribbon {
    height: 32px !important;
    min-height: 32px !important;
    font-size: 8.8px !important;
    letter-spacing: .018em !important;
  }

  .alx-header {
    height: 62px !important;
    min-height: 62px !important;
    padding-inline: 14px !important;
    column-gap: 8px !important;
  }

  .alx-brand {
    width: clamp(118px, 37vw, 152px) !important;
    height: 62px !important;
    min-height: 62px !important;
  }

  .alx-brand-logo {
    max-height: 42px !important;
  }

  .alx-header-actions {
    height: 62px !important;
    gap: 7px !important;
  }

  .alx-action-btn,
  .alx-menu-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }

  .alx-action-btn i,
  .alx-action-icon i {
    font-size: 19px !important;
  }

  .alx-menu-btn i {
    font-size: 21px !important;
  }
}

@media (max-width: 380px) {
  .alx-header {
    padding-inline: 10px !important;
  }

  .alx-brand {
    width: clamp(106px, 34vw, 132px) !important;
  }

  .alx-header-actions {
    gap: 5px !important;
  }

  .alx-action-btn,
  .alx-menu-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
  }

  .alx-action-btn i,
  .alx-action-icon i {
    font-size: 18px !important;
  }

  .alx-menu-btn i {
    font-size: 20px !important;
  }
}


/* Global Peptide Sciences v1.6.9 — targeted UI fixes: header width, product-card visibility, offer image, story icon */
@media (min-width: 1025px) {
  .alx-header {
    padding-inline: var(--alx-edge) !important;
  }

  .alx-primary-nav {
    gap: clamp(28px, 1.82vw, 36px) !important;
  }

  .alx-header-actions {
    gap: clamp(24px, 1.62vw, 32px) !important;
  }
}

@media (min-width: 1600px) {
  .alx-header {
    padding-inline: clamp(112px, 6.35vw, 122px) !important;
  }
}

.alx-product-badges {
  top: clamp(10px, .78vw, 14px) !important;
  left: clamp(10px, .78vw, 14px) !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 6px !important;
}

.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark,
.alx-product-badges .alx-badge--stock,
.alx-product-badges .alx-badge--muted {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 24px !important;
  height: 24px !important;
  padding: 0 10px !important;
  color: #ffffff !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .048em !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
  border-radius: 999px !important;
  transform: translateZ(0) !important;
}

.alx-product-media,
.alx-world-media {
  min-height: clamp(238px, 19.4vw, 318px) !important;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%) !important;
}

.alx-product-media img,
.alx-world-media img {
  object-fit: contain !important;
  padding: clamp(22px, 2.15vw, 34px) !important;
  filter: drop-shadow(0 18px 22px rgba(18, 41, 82, .12)) !important;
}

.alx-product-card:hover .alx-product-media img,
.alx-product-card:focus-within .alx-product-media img,
.alx-world-card:hover .alx-world-media img,
.alx-world-card:focus-within .alx-world-media img {
  transform: translateY(-3px) scale(1.025) !important;
  filter: drop-shadow(0 22px 28px rgba(18, 41, 82, .16)) contrast(1.025) !important;
}

.alx-world-offer-card--designed .alx-world-offer-product {
  width: min(72%, 410px) !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: rotate(-7deg) !important;
  filter: drop-shadow(0 25px 32px rgba(0,0,0,.32)) !important;
}

.alx-world-offer-card--designed:hover .alx-world-offer-product,
.alx-world-offer-card--designed:focus-visible .alx-world-offer-product {
  transform: rotate(-7deg) translateY(-5px) scale(1.02) !important;
}

.alx-story-badge-core img,
.alx-story-badge img[src*="global-peptides-icon"] {
  object-fit: contain !important;
  padding: 18% !important;
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(0,0,0,.22)) !important;
}

@media (max-width: 1024px) {
  .alx-product-media,
  .alx-world-media {
    min-height: clamp(220px, 42vw, 300px) !important;
  }

  .alx-product-media img,
  .alx-world-media img {
    padding: clamp(18px, 4vw, 30px) !important;
  }
}

@media (max-width: 640px) {
  .alx-product-badges {
    top: 10px !important;
    left: 10px !important;
    gap: 5px !important;
  }

  .alx-product-badges .alx-badge,
  .alx-product-badges .alx-badge--dark,
  .alx-product-badges .alx-badge--stock,
  .alx-product-badges .alx-badge--muted {
    min-height: 22px !important;
    height: 22px !important;
    padding-inline: 8px !important;
    font-size: 9px !important;
  }

  .alx-world-offer-card--designed .alx-world-offer-product {
    width: min(88%, 390px) !important;
  }
}


/* Global Peptide Sciences v1.7.0 requested UI fixes: product card visibility, footer payments, story icon, bulk offer. */
.alx-shipping-ribbon {
  background: linear-gradient(90deg, #0072df 0%, #0064cb 100%) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.16) inset, 0 2px 10px rgba(0, 96, 190, .14) !important;
}

.alx-product-badges {
  align-items: center !important;
}

.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark,
.alx-product-badges .alx-badge--stock,
.alx-product-badges .alx-badge--muted {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 26px !important;
  height: 26px !important;
  padding: 0 12px !important;
  line-height: 26px !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}

.alx-product-card .alx-product-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: clamp(286px, 22vw, 372px) !important;
  aspect-ratio: 1 / .82 !important;
  overflow: visible !important;
  background: linear-gradient(180deg, #f8fbff 0%, #edf5ff 100%) !important;
  border-radius: 12px !important;
}

.alx-product-card .alx-product-image-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
  padding: clamp(42px, 3.2vw, 58px) clamp(24px, 2.6vw, 42px) clamp(26px, 2vw, 36px) !important;
}

.alx-product-card .alx-product-media img,
.alx-product-card .alx-product-image-link img,
.alx-product-card img.attachment-woocommerce_thumbnail,
.alx-product-card img.wp-post-image,
.woocommerce .alx-product-card img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 76% !important;
  max-height: clamp(218px, 18vw, 310px) !important;
  object-fit: contain !important;
  object-position: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform-origin: center bottom !important;
  filter: drop-shadow(0 18px 24px rgba(18, 41, 82, .13)) !important;
}

.alx-product-card:hover .alx-product-media img,
.alx-product-card:focus-within .alx-product-media img {
  transform: translateY(-4px) scale(1.045) !important;
  filter: drop-shadow(0 24px 30px rgba(18, 41, 82, .18)) contrast(1.025) !important;
}

.alx-product-card--world .alx-product-media,
.alx-product-card--shop .alx-product-media {
  min-height: clamp(310px, 27vw, 448px) !important;
  aspect-ratio: 218 / 259 !important;
}

.alx-product-card--world .alx-product-media img,
.alx-product-card--shop .alx-product-media img {
  max-width: 80% !important;
  max-height: clamp(250px, 22vw, 382px) !important;
}

.alx-world-offer-card--designed .alx-world-offer-product {
  width: min(78%, 430px) !important;
  max-height: 84% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

.alx-world-offer-card--designed .alx-world-offer-main {
  max-width: 68% !important;
  font-size: clamp(42px, 4vw, 72px) !important;
}

.alx-world-offer-card--designed .alx-world-offer-copy {
  max-width: 62% !important;
}

.alx-story-badge-core {
  background: linear-gradient(135deg, #006bd6 0%, #003d83 100%) !important;
  border-color: rgba(255,255,255,.55) !important;
  box-shadow: 0 16px 34px rgba(0, 76, 162, .28) !important;
}

.alx-story-badge-core img,
.alx-story-badge img[src*="global-peptides-icon"] {
  display: block !important;
  width: 72% !important;
  height: 72% !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 16px rgba(0,0,0,.22)) !important;
  opacity: 1 !important;
}

.alx-footer-payment-badges--text {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.alx-payment-text-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 7px 13px !important;
  color: #050505 !important;
  background: #ffffff !important;
  border: 1px solid rgba(5,5,5,.14) !important;
  border-radius: 999px !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.08) !important;
}

.alx-footer-payment-badges--text .alx-payment-badge {
  display: none !important;
}

@media (max-width: 640px) {
  .alx-product-card .alx-product-media {
    min-height: 280px !important;
  }

  .alx-product-card .alx-product-image-link {
    padding: 40px 22px 28px !important;
  }

  .alx-product-card .alx-product-media img,
  .alx-product-card .alx-product-image-link img {
    max-height: 232px !important;
    max-width: 78% !important;
  }

  .alx-world-offer-card--designed .alx-world-offer-product {
    width: min(68%, 260px) !important;
  }

  .alx-world-offer-card--designed .alx-world-offer-main,
  .alx-world-offer-card--designed .alx-world-offer-copy {
    max-width: 66% !important;
  }
}


/* Global Peptide Sciences v1.7.1 — footer badge, product-card cleanup, offer-card sizing, story icon restore. */
.alx-payment-text-badge,
.alx-footer-payments .alx-payment-text-badge,
.alx-product-payments .alx-payment-text-badge {
  border-radius: 8px !important;
}

.alx-product-badges {
  top: 12px !important;
  left: 12px !important;
  gap: 0 !important;
}

.alx-product-badges .alx-badge:not(:first-child),
.alx-product-badges .alx-badge--stock {
  display: none !important;
}

.alx-product-badges .alx-badge,
.alx-product-badges .alx-badge--dark {
  height: 24px !important;
  min-height: 24px !important;
  padding: 0 11px !important;
  border-radius: 8px !important;
  font-size: 10px !important;
  letter-spacing: .035em !important;
  line-height: 24px !important;
  box-shadow: 0 10px 18px rgba(6, 15, 28, .16) !important;
}

.alx-product-card,
.alx-product-card--world,
.alx-product-card--shop {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
}

.alx-product-card .alx-product-media,
.alx-product-card--world .alx-product-media,
.alx-product-card--shop .alx-product-media {
  min-height: clamp(248px, 21vw, 348px) !important;
  aspect-ratio: 1 / .88 !important;
  overflow: hidden !important;
}

.alx-product-card .alx-product-image-link {
  padding: clamp(26px, 2.2vw, 38px) clamp(18px, 2vw, 30px) clamp(18px, 1.7vw, 26px) !important;
}

.alx-product-card .alx-product-media img,
.alx-product-card .alx-product-image-link img,
.alx-product-card img.attachment-woocommerce_thumbnail,
.alx-product-card img.wp-post-image,
.woocommerce .alx-product-card img,
.alx-product-card--world .alx-product-media img,
.alx-product-card--shop .alx-product-media img {
  max-width: 88% !important;
  max-height: clamp(236px, 19.5vw, 330px) !important;
  transform: scale(1.08) !important;
  object-fit: contain !important;
}

.alx-product-card:hover .alx-product-media img,
.alx-product-card:focus-within .alx-product-media img {
  transform: translateY(-3px) scale(1.12) !important;
}

.alx-product-body {
  padding-top: clamp(18px, 1.55vw, 26px) !important;
  gap: 8px !important;
}

.alx-product-meta {
  display: block !important;
  max-width: 100% !important;
  overflow: hidden !important;
  color: #9a9a9a !important;
  font-size: clamp(8px, .52vw, 10px) !important;
  font-weight: 800 !important;
  letter-spacing: .045em !important;
  line-height: 1.25 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.alx-product-card h3,
.alx-product-card--world h3,
.alx-product-card--shop h3 {
  margin-top: 2px !important;
  font-size: clamp(24px, 1.72vw, 32px) !important;
  line-height: .96 !important;
  letter-spacing: -.025em !important;
}

.alx-product-foot {
  align-items: center !important;
  gap: 14px !important;
  margin-top: 10px !important;
}

.alx-product-price,
.alx-product-card .alx-product-price,
.alx-product-card .alx-product-price .amount {
  font-size: clamp(18px, 1.3vw, 24px) !important;
  font-weight: 900 !important;
  color: #9b9b9b !important;
  line-height: 1 !important;
}

.alx-product-card .alx-product-add {
  min-height: 45px !important;
  padding-inline: 20px !important;
  border-radius: 999px !important;
  font-size: clamp(12px, .78vw, 14px) !important;
  white-space: nowrap !important;
}

.alx-world-product-grid > .alx-world-offer-card--designed,
.alx-world-offer-card--designed {
  min-height: clamp(330px, 23vw, 430px) !important;
  height: auto !important;
  aspect-ratio: 1 / .9 !important;
  align-self: start !important;
  padding: clamp(20px, 1.85vw, 28px) !important;
}

.alx-world-offer-card--designed .alx-world-offer-product {
  width: min(58%, 310px) !important;
  max-height: 70% !important;
  top: clamp(28px, 2.4vw, 46px) !important;
  left: 38% !important;
  object-fit: contain !important;
  transform: translateX(-50%) rotate(-5deg) !important;
}

.alx-world-offer-card--designed:hover .alx-world-offer-product,
.alx-world-offer-card--designed:focus-visible .alx-world-offer-product {
  transform: translateX(-50%) rotate(-5deg) translateY(-4px) scale(1.015) !important;
}

.alx-world-offer-card--designed .alx-world-offer-badge {
  height: 28px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  font-size: clamp(13px, .92vw, 17px) !important;
  letter-spacing: .04em !important;
}

.alx-world-offer-card--designed .alx-world-offer-content {
  bottom: clamp(76px, 5.8vw, 96px) !important;
  gap: 8px !important;
}

.alx-world-offer-card--designed .alx-world-offer-main {
  max-width: 62% !important;
  font-size: clamp(34px, 2.8vw, 54px) !important;
  line-height: .9 !important;
  text-shadow: 0 3px 10px rgba(0,0,0,.18) !important;
}

.alx-world-offer-card--designed .alx-world-offer-copy {
  max-width: 58% !important;
  font-size: clamp(12px, .88vw, 15px) !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
}

.alx-world-offer-card--designed .alx-world-offer-cta {
  min-height: 40px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  font-size: clamp(16px, 1.18vw, 22px) !important;
}

.alx-story-badge-core {
  background: #050505 !important;
  border-color: rgba(255,255,255,.42) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.24) !important;
}

.alx-story-badge-core img,
.alx-story-badge img[src*="Mask-group"],
.alx-story-badge img[src*="global-peptides-icon"] {
  width: 74% !important;
  height: 74% !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) drop-shadow(0 8px 16px rgba(0,0,0,.22)) !important;
}

@media (max-width: 767px) {
  .alx-product-card .alx-product-media,
  .alx-product-card--world .alx-product-media,
  .alx-product-card--shop .alx-product-media {
    min-height: 248px !important;
    aspect-ratio: 1 / .88 !important;
  }

  .alx-product-card .alx-product-media img,
  .alx-product-card .alx-product-image-link img {
    max-height: 224px !important;
    max-width: 88% !important;
  }

  .alx-product-foot {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .alx-product-card .alx-product-add {
    width: auto !important;
    min-height: 42px !important;
    padding-inline: 16px !important;
  }

  .alx-world-product-grid > .alx-world-offer-card--designed,
  .alx-world-offer-card--designed {
    min-height: 350px !important;
    aspect-ratio: auto !important;
  }

  .alx-world-offer-card--designed .alx-world-offer-product {
    width: min(54%, 220px) !important;
    left: 60% !important;
    top: 42px !important;
  }

  .alx-world-offer-card--designed .alx-world-offer-main,
  .alx-world-offer-card--designed .alx-world-offer-copy {
    max-width: 58% !important;
  }
}

@media (max-width: 430px) {
  .alx-product-card .alx-product-media,
  .alx-product-card--world .alx-product-media,
  .alx-product-card--shop .alx-product-media {
    min-height: 238px !important;
  }

  .alx-product-card h3,
  .alx-product-card--world h3,
  .alx-product-card--shop h3 {
    font-size: 23px !important;
  }

  .alx-product-price,
  .alx-product-card .alx-product-price .amount {
    font-size: 18px !important;
  }

  .alx-product-card .alx-product-add {
    min-height: 40px !important;
    padding-inline: 14px !important;
    font-size: 11px !important;
  }
}


/* Global Peptide Sciences v1.7.2 — hero bottom trust bar replaced with floating product tags */
.alx-hero-section--global {
  min-height: clamp(700px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 780px) !important;
  overflow: hidden !important;
}
.alx-hero-section--global .gp-hero-shell {
  min-height: clamp(700px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 780px) !important;
  padding-bottom: clamp(72px, 6.6vw, 118px) !important;
}
.alx-hero-section--global .gp-hero-trust-bar {
  display: none !important;
}
.gp-hero-visual {
  overflow: visible !important;
  isolation: isolate !important;
}
.gp-hero-product {
  position: relative !important;
  z-index: 2 !important;
}
.gp-hero-float-tags {
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
}
.gp-hero-float-tag {
  position: absolute !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 36px !important;
  padding: 9px 18px 9px 16px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #14c7e9 0%, #00a9d8 55%, #0090c7 100%) !important;
  border: 1px solid rgba(255,255,255,.54) !important;
  border-radius: 999px !important;
  box-shadow: 0 16px 30px rgba(0,110,210,.20), inset 0 1px 0 rgba(255,255,255,.27) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(12px, .78vw, 14px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: -.015em !important;
  white-space: nowrap !important;
  text-transform: none !important;
  text-shadow: none !important;
}
.gp-hero-float-tag i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  font-size: 15px !important;
  line-height: 1 !important;
}
.gp-hero-float-tag--based {
  left: clamp(-28px, -2vw, -14px) !important;
  top: 31% !important;
}
.gp-hero-float-tag--gmp {
  left: 44% !important;
  top: 39% !important;
}
.gp-hero-float-tag--tested {
  left: 1% !important;
  bottom: 18% !important;
}
@media (max-width: 1280px) {
  .gp-hero-float-tag--based { left: -12px !important; top: 31% !important; }
  .gp-hero-float-tag--gmp { left: 43% !important; top: 39% !important; }
  .gp-hero-float-tag--tested { left: 3% !important; bottom: 17% !important; }
}
@media (max-width: 980px) {
  .alx-hero-section--global .gp-hero-shell {
    padding-bottom: 42px !important;
  }
  .gp-hero-float-tag {
    min-height: 32px !important;
    padding: 8px 14px 8px 12px !important;
    gap: 7px !important;
    font-size: 12px !important;
    box-shadow: 0 12px 24px rgba(0,110,210,.18), inset 0 1px 0 rgba(255,255,255,.28) !important;
  }
  .gp-hero-float-tag--based { left: 3% !important; top: 26% !important; }
  .gp-hero-float-tag--gmp { right: 4% !important; left: auto !important; top: 38% !important; }
  .gp-hero-float-tag--tested { left: 8% !important; bottom: 14% !important; }
}
@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    padding-bottom: 34px !important;
  }
  .gp-hero-float-tag {
    min-height: 29px !important;
    padding: 7px 11px !important;
    gap: 5px !important;
    font-size: 10.5px !important;
  }
  .gp-hero-float-tag i { width: 13px !important; height: 13px !important; font-size: 13px !important; }
  .gp-hero-float-tag--based { left: 2% !important; top: 24% !important; }
  .gp-hero-float-tag--gmp { right: 2% !important; top: 38% !important; }
  .gp-hero-float-tag--tested { left: 7% !important; bottom: 12% !important; }
}
@media (max-width: 420px) {
  .gp-hero-float-tag { font-size: 9.5px !important; padding-inline: 9px !important; }
  .gp-hero-float-tag--based { top: 22% !important; }
  .gp-hero-float-tag--gmp { top: 37% !important; }
  .gp-hero-float-tag--tested { bottom: 10% !important; }
}

/* Global Peptide Sciences v1.7.3 — balanced hero width and alignment pass */
.alx-hero-section--global {
  min-height: clamp(680px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 760px) !important;
}

.alx-hero-section--global .gp-hero-shell {
  width: min(calc(100% - clamp(56px, 8.2vw, 160px)), 1480px) !important;
  max-width: 1480px !important;
  min-height: clamp(680px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 760px) !important;
  display: grid !important;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr) !important;
  column-gap: clamp(42px, 5.6vw, 88px) !important;
  align-items: center !important;
  justify-content: center !important;
  margin-inline: auto !important;
  padding: clamp(76px, 5.8vw, 104px) 0 clamp(56px, 4.8vw, 82px) !important;
}

.alx-hero-section--global .gp-hero-copy {
  justify-self: start !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 650px !important;
  padding-top: 0 !important;
}

.alx-hero-section--global .gp-hero-title {
  max-width: 650px !important;
}

.alx-hero-section--global .gp-hero-subtitle {
  max-width: 535px !important;
}

.alx-hero-section--global .gp-hero-features {
  width: min(100%, 585px) !important;
}

.alx-hero-section--global .gp-hero-visual {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  justify-self: center !important;
  align-self: center !important;
  width: min(42vw, 620px) !important;
  max-width: 620px !important;
  margin: 0 !important;
}

.alx-hero-section--global .gp-hero-product {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: auto !important;
}

.alx-hero-section--global .gp-hero-float-tag--based {
  left: -1.5% !important;
  top: 30.5% !important;
}

.alx-hero-section--global .gp-hero-float-tag--gmp {
  left: 44% !important;
  top: 39% !important;
}

.alx-hero-section--global .gp-hero-float-tag--tested {
  left: 4% !important;
  bottom: 13% !important;
}

@media (min-width: 1720px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 220px), 1480px) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    right: auto !important;
    width: min(42vw, 620px) !important;
  }
}

@media (max-width: 1380px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 72px), 1320px) !important;
    grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr) !important;
    column-gap: clamp(28px, 4vw, 58px) !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(70px, 5.7vw, 88px) !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(44vw, 570px) !important;
  }
}

@media (max-width: 1180px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 48px), 1080px) !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr) !important;
    column-gap: 26px !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(62px, 6.3vw, 76px) !important;
  }
  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 480px !important;
  }
  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 535px) !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(43vw, 510px) !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 36px), 760px) !important;
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
    min-height: auto !important;
    padding: 48px 0 36px !important;
  }
  .alx-hero-section--global .gp-hero-copy {
    justify-self: center !important;
    max-width: 720px !important;
    text-align: center !important;
  }
  .alx-hero-section--global .gp-hero-subtitle {
    margin-inline: auto !important;
  }
  .alx-hero-section--global .gp-hero-features {
    margin-inline: auto !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(88vw, 560px) !important;
    margin: 8px auto 0 !important;
  }
  .alx-hero-section--global .gp-hero-float-tag--based { left: 3% !important; top: 25% !important; }
  .alx-hero-section--global .gp-hero-float-tag--gmp { right: 4% !important; left: auto !important; top: 38% !important; }
  .alx-hero-section--global .gp-hero-float-tag--tested { left: 7% !important; bottom: 12% !important; }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 28px), 560px) !important;
    padding-top: 40px !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(96vw, 500px) !important;
  }
}


/* Global Peptide Sciences v1.7.4 — hero width locked to navbar inner width */
:root {
  --gp-desktop-page-x: var(--alx-edge);
}

@media (min-width: 1600px) {
  :root {
    --gp-desktop-page-x: clamp(112px, 6.35vw, 122px);
  }
}

@media (min-width: 981px) {
  .alx-hero-section--global {
    min-height: clamp(650px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 730px) !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - (2 * var(--gp-desktop-page-x))) !important;
    max-width: none !important;
    margin-inline: var(--gp-desktop-page-x) !important;
    padding: clamp(62px, 4.8vw, 82px) 0 clamp(42px, 3.6vw, 62px) !important;
    min-height: clamp(650px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 730px) !important;
    grid-template-columns: minmax(520px, 0.93fr) minmax(520px, 1.07fr) !important;
    column-gap: clamp(34px, 4.2vw, 74px) !important;
    align-items: center !important;
    justify-content: stretch !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    justify-self: start !important;
    max-width: 665px !important;
    margin-left: 0 !important;
  }

  .alx-hero-section--global .gp-hero-title {
    max-width: 665px !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 545px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    justify-self: end !important;
    width: min(43.5vw, 660px) !important;
    max-width: 660px !important;
    margin-right: 0 !important;
  }
}

@media (min-width: 981px) and (max-width: 1380px) {
  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 72px) !important;
    margin-inline: 36px !important;
    grid-template-columns: minmax(455px, 0.96fr) minmax(420px, 1.04fr) !important;
    column-gap: clamp(26px, 3.6vw, 48px) !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(44.5vw, 585px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 48px) !important;
    margin-inline: 24px !important;
    grid-template-columns: minmax(410px, 1fr) minmax(380px, .96fr) !important;
    column-gap: 24px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(43vw, 510px) !important;
  }
}

/* Global Peptide Sciences v1.7.5 — tighter premium hero composition and consistent image badges */
@media (min-width: 981px) {
  .alx-hero-section--global {
    min-height: clamp(560px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 650px) !important;
    background:
      radial-gradient(circle at 62% 45%, rgba(0,130,220,.12), transparent 30%),
      radial-gradient(circle at 93% 46%, rgba(0,130,220,.10), transparent 31%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #eef7ff 100%) !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - (2 * var(--gp-desktop-page-x))) !important;
    max-width: none !important;
    margin-inline: var(--gp-desktop-page-x) !important;
    min-height: clamp(560px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 650px) !important;
    padding: clamp(36px, 3.3vw, 54px) 0 clamp(28px, 2.8vw, 44px) !important;
    grid-template-columns: minmax(540px, 660px) minmax(560px, 1fr) !important;
    column-gap: clamp(8px, 1.65vw, 32px) !important;
    align-items: center !important;
    justify-content: stretch !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    max-width: 660px !important;
    align-self: center !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow {
    margin-bottom: 16px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    max-width: 660px !important;
    margin-bottom: 20px !important;
    font-size: clamp(76px, 5vw, 92px) !important;
    line-height: .89 !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 560px !important;
    margin-bottom: 28px !important;
    font-size: clamp(15px, .9vw, 17px) !important;
    line-height: 1.45 !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 560px) !important;
    margin-bottom: 28px !important;
  }

  .alx-hero-section--global .gp-hero-feature-icon {
    color: #0874d8 !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    justify-self: start !important;
    align-self: center !important;
    width: min(39.2vw, 615px) !important;
    max-width: 615px !important;
    margin-left: clamp(4px, 1.1vw, 22px) !important;
    transform: translateY(2px) !important;
  }

  .alx-hero-section--global .gp-hero-product {
    filter: drop-shadow(0 34px 44px rgba(16,47,97,.18)) !important;
  }

  .alx-hero-section--global .gp-hero-note {
    margin-top: 14px !important;
  }

  .alx-hero-section--global .gp-hero-pattern--left {
    opacity: .17 !important;
  }

  .alx-hero-section--global .gp-hero-pattern--right,
  .alx-hero-section--global .gp-hero-dots--right {
    opacity: .14 !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 34px !important;
    padding: 8px 14px 8px 10px !important;
    gap: 8px !important;
    color: #0e2238 !important;
    background: rgba(255,255,255,.86) !important;
    border: 1px solid rgba(0,130,220,.18) !important;
    border-radius: 14px !important;
    box-shadow: 0 14px 28px rgba(17,48,84,.14), inset 0 1px 0 rgba(255,255,255,.95) !important;
    backdrop-filter: blur(12px) saturate(1.12) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.12) !important;
    font-size: clamp(11px, .7vw, 13px) !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0082dc 0%, #00aeef 100%) !important;
    font-size: 14px !important;
    box-shadow: 0 6px 12px rgba(0,130,220,.20) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--based {
    left: 4% !important;
    top: 30% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--gmp {
    left: auto !important;
    right: 7% !important;
    top: 38% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--tested {
    left: 9% !important;
    bottom: 18% !important;
  }
}

@media (min-width: 981px) and (max-width: 1380px) {
  .alx-hero-section--global {
    min-height: 610px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 72px) !important;
    margin-inline: 36px !important;
    min-height: 610px !important;
    grid-template-columns: minmax(460px, 590px) minmax(450px, 1fr) !important;
    column-gap: 18px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(66px, 5.55vw, 82px) !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(41vw, 555px) !important;
    margin-left: 4px !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .alx-hero-section--global {
    min-height: 590px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 48px) !important;
    margin-inline: 24px !important;
    min-height: 590px !important;
    grid-template-columns: minmax(410px, 1.03fr) minmax(380px, .97fr) !important;
    column-gap: 14px !important;
    padding-top: 38px !important;
    padding-bottom: 30px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(58px, 6vw, 72px) !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(40vw, 500px) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    font-size: 11px !important;
    padding: 7px 11px 7px 8px !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global {
    min-height: auto !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    min-height: auto !important;
    row-gap: 12px !important;
    padding: 42px 0 30px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(84vw, 520px) !important;
    margin-top: 2px !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    color: #0e2238 !important;
    background: rgba(255,255,255,.88) !important;
    border-color: rgba(0,130,220,.18) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 24px rgba(17,48,84,.13), inset 0 1px 0 rgba(255,255,255,.92) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    color: #ffffff !important;
    background: linear-gradient(135deg, #0082dc 0%, #00aeef 100%) !important;
  }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    padding-top: 34px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(92vw, 450px) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 28px !important;
    padding: 6px 9px 6px 7px !important;
    font-size: 9.5px !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    font-size: 12px !important;
  }
}


/* Global Peptide Sciences v1.7.6 — corrected compact hero composition */
@media (min-width: 981px) {
  .alx-hero-section--global {
    min-height: clamp(540px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 610px) !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 61% 44%, rgba(0,130,220,.105), transparent 28%),
      radial-gradient(circle at 88% 45%, rgba(0,130,220,.075), transparent 34%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 43%, #f1f8ff 100%) !important;
  }

  .alx-hero-section--global::before {
    background:
      linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 43%, rgba(241,248,255,.78) 74%, rgba(239,247,255,.92) 100%),
      radial-gradient(circle at 63% 50%, rgba(0,130,220,.075), transparent 38%) !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - (2 * var(--gp-desktop-page-x))) !important;
    margin-inline: var(--gp-desktop-page-x) !important;
    min-height: clamp(540px, calc(100svh - var(--alx-alert-h) - var(--alx-header-h)), 610px) !important;
    display: grid !important;
    grid-template-columns: minmax(540px, 660px) minmax(500px, 590px) !important;
    column-gap: clamp(42px, 4.25vw, 78px) !important;
    justify-content: start !important;
    align-items: center !important;
    padding: clamp(28px, 2.65vw, 46px) 0 clamp(24px, 2.25vw, 38px) !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    align-self: center !important;
    justify-self: start !important;
    max-width: 660px !important;
    transform: translateY(-18px) !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow {
    margin-bottom: 14px !important;
    font-size: clamp(19px, 1.22vw, 23px) !important;
    letter-spacing: .45em !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow::after {
    bottom: -16px !important;
    width: 40px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    max-width: 660px !important;
    margin-bottom: 18px !important;
    font-size: clamp(74px, 4.85vw, 90px) !important;
    line-height: .88 !important;
  }

  .alx-hero-section--global .gp-title-line--blue::after {
    bottom: -20px !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 545px !important;
    margin-top: 30px !important;
    margin-bottom: 24px !important;
    font-size: clamp(14px, .84vw, 16px) !important;
    line-height: 1.46 !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 550px) !important;
    margin-bottom: 24px !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    min-height: 92px !important;
    padding-inline: clamp(18px, 1.55vw, 28px) !important;
  }

  .alx-hero-section--global .gp-hero-feature-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 10px !important;
    font-size: 39px !important;
  }

  .alx-hero-section--global .gp-hero-cta {
    min-width: 190px !important;
    min-height: 50px !important;
    padding: 12px 25px !important;
    gap: 20px !important;
    font-size: 15px !important;
  }

  .alx-hero-section--global .gp-hero-note {
    margin-top: 12px !important;
    font-size: 12px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    position: relative !important;
    justify-self: start !important;
    align-self: center !important;
    width: min(34.8vw, 560px) !important;
    max-width: 560px !important;
    margin: 0 !important;
    transform: translateY(-2px) !important;
    filter: drop-shadow(0 22px 30px rgba(16,47,97,.12)) !important;
  }

  .alx-hero-section--global .gp-hero-product {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    filter: drop-shadow(0 28px 34px rgba(16,47,97,.16)) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 32px !important;
    padding: 7px 13px 7px 9px !important;
    gap: 7px !important;
    color: #102033 !important;
    background: rgba(255,255,255,.92) !important;
    border: 1px solid rgba(0,111,210,.16) !important;
    border-radius: 11px !important;
    box-shadow: 0 12px 24px rgba(17,48,84,.11), inset 0 1px 0 rgba(255,255,255,.96) !important;
    backdrop-filter: blur(10px) saturate(1.1) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.1) !important;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-size: clamp(10.5px, .68vw, 12.5px) !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0077d8 0%, #00a9e8 100%) !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    box-shadow: none !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--based {
    left: 1% !important;
    top: 33% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--gmp {
    left: auto !important;
    right: 6% !important;
    top: 43% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--tested {
    left: 10% !important;
    bottom: 25% !important;
  }

  .alx-hero-section--global .gp-hero-pattern--left {
    top: 0 !important;
    opacity: .13 !important;
  }

  .alx-hero-section--global .gp-hero-pattern--right,
  .alx-hero-section--global .gp-hero-dots--right {
    opacity: .11 !important;
  }
}

@media (min-width: 981px) and (max-width: 1380px) {
  .alx-hero-section--global {
    min-height: 560px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 72px) !important;
    margin-inline: 36px !important;
    min-height: 560px !important;
    grid-template-columns: minmax(455px, 560px) minmax(430px, 520px) !important;
    column-gap: clamp(24px, 3.2vw, 48px) !important;
    padding-top: 30px !important;
    padding-bottom: 28px !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    transform: translateY(-12px) !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(62px, 5.35vw, 78px) !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 500px !important;
    margin-bottom: 20px !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 520px) !important;
    margin-bottom: 20px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(35vw, 505px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .alx-hero-section--global {
    min-height: 540px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 48px) !important;
    margin-inline: 24px !important;
    min-height: 540px !important;
    grid-template-columns: minmax(395px, 1fr) minmax(360px, 450px) !important;
    column-gap: 20px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(54px, 5.6vw, 66px) !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(35vw, 430px) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--tested {
    bottom: 22% !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global .gp-hero-shell {
    padding-top: 38px !important;
    padding-bottom: 28px !important;
    row-gap: 8px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(82vw, 500px) !important;
    margin-top: 0 !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--tested {
    bottom: 18% !important;
  }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    padding-top: 30px !important;
    padding-bottom: 24px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(90vw, 430px) !important;
  }
}

/* Global Peptide Sciences v1.7.7 — rebuilt structured hero layout */
@media (min-width: 981px) {
  .alx-hero-section--global {
    min-height: 590px !important;
    height: auto !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 59% 46%, rgba(0, 130, 220, .09), transparent 27%),
      radial-gradient(circle at 86% 48%, rgba(0, 130, 220, .07), transparent 34%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 44%, #f2f8ff 100%) !important;
  }

  .alx-hero-section--global::before {
    background:
      linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.98) 42%, rgba(245,250,255,.85) 70%, rgba(239,247,255,.94) 100%),
      radial-gradient(circle at 62% 48%, rgba(0,130,220,.065), transparent 38%) !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: clamp(72px, 6.05vw, 112px);
    width: calc(100% - (2 * var(--gp-hero-page-x))) !important;
    max-width: none !important;
    min-height: 590px !important;
    margin-inline: var(--gp-hero-page-x) !important;
    display: grid !important;
    grid-template-columns: minmax(520px, 610px) minmax(470px, 560px) !important;
    column-gap: clamp(26px, 3.25vw, 56px) !important;
    justify-content: start !important;
    align-items: center !important;
    padding: 28px 0 34px !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    width: 100% !important;
    max-width: 610px !important;
    justify-self: start !important;
    align-self: center !important;
    transform: translateY(-4px) !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow {
    margin-bottom: 13px !important;
    font-size: clamp(18px, 1.08vw, 21px) !important;
    line-height: 1 !important;
    letter-spacing: .42em !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow::after {
    width: 40px !important;
    bottom: -15px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    max-width: 610px !important;
    margin: 0 0 16px !important;
    font-size: clamp(70px, 4.45vw, 84px) !important;
    line-height: .89 !important;
    letter-spacing: -.018em !important;
  }

  .alx-hero-section--global .gp-title-line,
  .alx-hero-section--global .gp-title-line--blue {
    line-height: .89 !important;
  }

  .alx-hero-section--global .gp-title-line--blue::after {
    width: 40px !important;
    bottom: -20px !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 520px !important;
    margin: 28px 0 20px !important;
    color: #5d6878 !important;
    font-size: clamp(14px, .78vw, 15.5px) !important;
    font-weight: 700 !important;
    line-height: 1.42 !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 535px) !important;
    margin: 0 0 20px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    min-height: 88px !important;
    padding: 0 clamp(17px, 1.35vw, 24px) !important;
    align-items: flex-start !important;
  }

  .alx-hero-section--global .gp-hero-features article:first-child {
    padding-left: 0 !important;
  }

  .alx-hero-section--global .gp-hero-feature-icon {
    width: 38px !important;
    height: 38px !important;
    margin: 0 0 9px !important;
    color: #0874d8 !important;
    font-size: 37px !important;
  }

  .alx-hero-section--global .gp-hero-features strong {
    margin-bottom: 6px !important;
    font-size: 12px !important;
    letter-spacing: .02em !important;
  }

  .alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
    color: #5d6878 !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
  }

  .alx-hero-section--global .gp-hero-cta {
    min-width: 182px !important;
    min-height: 48px !important;
    padding: 11px 24px !important;
    gap: 20px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
  }

  .alx-hero-section--global .gp-hero-note {
    margin-top: 12px !important;
    font-size: 11.5px !important;
    letter-spacing: .055em !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: min(32.5vw, 545px) !important;
    max-width: 545px !important;
    min-width: 470px !important;
    margin: 0 !important;
    justify-self: start !important;
    align-self: center !important;
    transform: translateY(4px) !important;
    overflow: visible !important;
    isolation: isolate !important;
  }

  .alx-hero-section--global .gp-hero-product {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    filter: drop-shadow(0 24px 32px rgba(16,47,97,.15)) !important;
  }

  .alx-hero-section--global .gp-hero-float-tags {
    position: absolute !important;
    inset: 0 !important;
    z-index: 6 !important;
    pointer-events: none !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    position: absolute !important;
    min-height: 31px !important;
    padding: 7px 12px 7px 9px !important;
    gap: 7px !important;
    color: #102033 !important;
    background: rgba(255,255,255,.94) !important;
    border: 1px solid rgba(0,111,210,.16) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 22px rgba(17,48,84,.10), inset 0 1px 0 rgba(255,255,255,.98) !important;
    backdrop-filter: blur(10px) saturate(1.08) !important;
    -webkit-backdrop-filter: blur(10px) saturate(1.08) !important;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-size: 11.5px !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    white-space: nowrap !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #0077d8 0%, #00a9e8 100%) !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    box-shadow: none !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--based {
    left: 6.5% !important;
    top: 28% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--gmp {
    left: auto !important;
    right: 5.5% !important;
    top: 41% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--tested {
    left: 11% !important;
    bottom: 16% !important;
  }

  .alx-hero-section--global .gp-hero-pattern--left {
    top: -4px !important;
    opacity: .13 !important;
  }

  .alx-hero-section--global .gp-hero-pattern--right,
  .alx-hero-section--global .gp-hero-dots--right {
    opacity: .10 !important;
  }
}

@media (min-width: 981px) and (max-width: 1380px) {
  .alx-hero-section--global {
    min-height: 560px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: 56px;
    min-height: 560px !important;
    grid-template-columns: minmax(455px, 550px) minmax(420px, 505px) !important;
    column-gap: 28px !important;
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(60px, 5.15vw, 76px) !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 490px !important;
    margin-bottom: 18px !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 505px) !important;
    margin-bottom: 18px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(36vw, 500px) !important;
    min-width: 420px !important;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .alx-hero-section--global {
    min-height: 535px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: 28px;
    min-height: 535px !important;
    grid-template-columns: minmax(395px, 1fr) minmax(365px, 430px) !important;
    column-gap: 18px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(52px, 5.45vw, 64px) !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(36vw, 430px) !important;
    min-width: 360px !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 28px !important;
    padding: 6px 10px 6px 8px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global {
    min-height: auto !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 36px), 760px) !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    margin-inline: auto !important;
    padding: 38px 0 30px !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    justify-items: center !important;
    text-align: center !important;
    margin-inline: auto !important;
    transform: none !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(86vw, 500px) !important;
    min-width: 0 !important;
    justify-self: center !important;
    margin-inline: auto !important;
    transform: none !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    border-radius: 10px !important;
  }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 28px), 480px) !important;
    padding-top: 30px !important;
    padding-bottom: 24px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(48px, 14vw, 72px) !important;
  }

  .alx-hero-section--global .gp-hero-features {
    grid-template-columns: 1fr !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    align-items: center !important;
    text-align: center !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(92vw, 420px) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 27px !important;
    padding: 6px 8px !important;
    gap: 5px !important;
    font-size: 9px !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    font-size: 10px !important;
  }
}

/* Global Peptide Sciences v1.7.8 — definitive structured hero reset */
@media (min-width: 981px) {
  .alx-hero-section--global {
    min-height: clamp(500px, 38vw, 620px) !important;
    height: clamp(500px, 38vw, 620px) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 78% 42%, rgba(0,117,216,.13), transparent 34%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 39%, #f4faff 72%, #eaf6ff 100%) !important;
  }

  .alx-hero-section--global::before {
    inset: 0 !important;
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.86) 38%, rgba(235,247,255,.62) 72%, rgba(226,243,255,.88) 100%) !important;
    opacity: 1 !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: clamp(86px, 5.75vw, 116px);
    width: calc(100% - (2 * var(--gp-hero-page-x))) !important;
    max-width: none !important;
    min-height: 100% !important;
    height: 100% !important;
    margin-inline: var(--gp-hero-page-x) !important;
    padding: clamp(20px, 2.4vw, 34px) 0 clamp(26px, 2.8vw, 42px) !important;
    display: grid !important;
    grid-template-columns: minmax(520px, 0.94fr) minmax(500px, 0.90fr) !important;
    column-gap: clamp(34px, 4.2vw, 78px) !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    width: min(100%, 610px) !important;
    max-width: 610px !important;
    align-self: center !important;
    justify-self: start !important;
    transform: translateY(2px) !important;
    margin: 0 !important;
    text-align: left !important;
    justify-items: start !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow {
    margin: 0 0 14px !important;
    font-size: 22px !important;
    line-height: 1 !important;
    letter-spacing: .52em !important;
  }

  .alx-hero-section--global .gp-hero-eyebrow::after {
    width: 42px !important;
    height: 3px !important;
    margin-top: 15px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    margin: 0 0 20px !important;
    font-size: clamp(72px, 5.4vw, 96px) !important;
    line-height: .86 !important;
    letter-spacing: .01em !important;
  }

  .alx-hero-section--global .gp-title-line,
  .alx-hero-section--global .gp-title-line--blue {
    display: block !important;
    width: max-content !important;
    max-width: 100% !important;
  }

  .alx-hero-section--global .gp-title-line--blue::after {
    width: 42px !important;
    height: 2px !important;
    margin-top: 20px !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 540px !important;
    margin: 0 0 24px !important;
    color: #5b6676 !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    font-weight: 650 !important;
    text-transform: none !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 560px) !important;
    margin: 0 0 26px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    min-height: 92px !important;
    padding: 0 24px 0 26px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    text-align: left !important;
  }

  .alx-hero-section--global .gp-hero-features article:first-child {
    padding-left: 0 !important;
  }

  .alx-hero-section--global .gp-hero-feature-icon {
    width: 35px !important;
    height: 35px !important;
    margin: 0 0 3px !important;
    font-size: 34px !important;
    color: #0878d9 !important;
  }

  .alx-hero-section--global .gp-hero-features strong {
    font-size: 12px !important;
    line-height: 1.1 !important;
    color: #101820 !important;
    letter-spacing: .035em !important;
  }

  .alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
    font-size: 13px !important;
    line-height: 1.35 !important;
    color: #6d7787 !important;
  }

  .alx-hero-section--global .gp-hero-cta {
    min-width: 190px !important;
    min-height: 56px !important;
    margin: 0 0 14px !important;
    padding: 15px 24px 15px 31px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .alx-hero-section--global .gp-hero-note {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    letter-spacing: .055em !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    position: relative !important;
    width: min(42vw, 625px) !important;
    min-width: 500px !important;
    max-width: 625px !important;
    height: auto !important;
    margin: 0 !important;
    align-self: center !important;
    justify-self: end !important;
    transform: translateY(8px) !important;
    overflow: visible !important;
  }

  .alx-hero-section--global .gp-hero-product {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    filter: drop-shadow(0 24px 34px rgba(18,58,105,.14)) !important;
  }

  .alx-hero-section--global .gp-hero-float-tags {
    position: absolute !important;
    inset: 0 !important;
    z-index: 7 !important;
    pointer-events: none !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    min-height: 32px !important;
    padding: 7px 12px 7px 9px !important;
    color: #172131 !important;
    background: rgba(255,255,255,.96) !important;
    border: 1px solid rgba(0,113,206,.20) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 26px rgba(17,61,104,.13), inset 0 1px 0 rgba(255,255,255,1) !important;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: -.01em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    display: inline-grid !important;
    place-items: center !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    color: #ffffff !important;
    background: #0878d9 !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--based {
    left: 9% !important;
    top: 33% !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--gmp {
    right: 8% !important;
    top: 43% !important;
    left: auto !important;
  }

  .alx-hero-section--global .gp-hero-float-tag--tested {
    left: 15% !important;
    bottom: 18% !important;
  }

  .alx-hero-section--global .gp-hero-pattern--left {
    top: 0 !important;
    left: -70px !important;
    opacity: .15 !important;
  }

  .alx-hero-section--global .gp-hero-pattern--right {
    right: -52px !important;
    top: 24% !important;
    opacity: .14 !important;
  }

  .alx-hero-section--global .gp-hero-dots--right {
    right: clamp(84px, 8vw, 150px) !important;
    top: 34% !important;
    opacity: .18 !important;
  }
}

@media (min-width: 981px) and (max-width: 1380px) {
  .alx-hero-section--global {
    min-height: 520px !important;
    height: 520px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: clamp(46px, 5.2vw, 72px);
    grid-template-columns: minmax(470px, 1fr) minmax(430px, 500px) !important;
    column-gap: clamp(24px, 3.2vw, 48px) !important;
    padding-top: 16px !important;
    padding-bottom: 24px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(60px, 5.2vw, 76px) !important;
  }

  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 500px !important;
    margin-bottom: 18px !important;
  }

  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 510px) !important;
    margin-bottom: 20px !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(39vw, 500px) !important;
    min-width: 420px !important;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .alx-hero-section--global {
    min-height: 500px !important;
    height: 500px !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: 32px;
    grid-template-columns: minmax(420px, 1fr) minmax(370px, 430px) !important;
    column-gap: 20px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(50px, 5.2vw, 62px) !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(38vw, 430px) !important;
    min-width: 360px !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 28px !important;
    padding: 6px 10px 6px 8px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 980px) {
  .alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 36px), 760px) !important;
    height: auto !important;
    min-height: auto !important;
    margin-inline: auto !important;
    padding: 36px 0 30px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    align-items: center !important;
  }

  .alx-hero-section--global .gp-hero-copy {
    max-width: 640px !important;
    justify-self: center !important;
    justify-items: center !important;
    text-align: center !important;
    transform: none !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(86vw, 500px) !important;
    min-width: 0 !important;
    justify-self: center !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 28px), 480px) !important;
    padding-top: 30px !important;
    padding-bottom: 26px !important;
  }

  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(48px, 14vw, 72px) !important;
    line-height: .9 !important;
  }

  .alx-hero-section--global .gp-hero-features {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .alx-hero-section--global .gp-hero-features article {
    min-height: auto !important;
    padding: 0 !important;
    align-items: center !important;
    text-align: center !important;
  }

  .alx-hero-section--global .gp-hero-visual {
    width: min(92vw, 420px) !important;
  }

  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 27px !important;
    padding: 6px 8px !important;
    gap: 5px !important;
    font-size: 9px !important;
  }

  .alx-hero-section--global .gp-hero-float-tag i {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    font-size: 10px !important;
  }
}


/* Global Peptide Sciences v1.7.9 controlled hero height + CDN particles */
.alx-hero-section--global {
  position: relative !important;
  isolation: isolate !important;
  display: flex !important;
  align-items: center !important;
  min-height: clamp(560px, 42vw, 650px) !important;
  height: clamp(560px, 42vw, 650px) !important;
  max-height: 650px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 69% 45%, rgba(0,113,206,.10), transparent 31%),
    radial-gradient(circle at 18% 76%, rgba(0,174,239,.09), transparent 28%),
    linear-gradient(90deg, #ffffff 0%, #ffffff 42%, #f5fbff 64%, #eaf6ff 100%) !important;
}
.alx-hero-section--global .gp-hero-particles,
#gp-hero-particles {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: .55 !important;
  mix-blend-mode: multiply !important;
}
.alx-hero-section--global #gp-hero-particles canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
.alx-hero-section--global .gp-hero-pattern,
.alx-hero-section--global .gp-hero-dots {
  z-index: 1 !important;
}
.alx-hero-section--global .gp-hero-shell {
  --gp-hero-page-x: clamp(64px, 5.75vw, 112px);
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: minmax(500px, 0.94fr) minmax(520px, 0.86fr) !important;
  align-items: center !important;
  justify-content: space-between !important;
  column-gap: clamp(36px, 4.5vw, 78px) !important;
  width: calc(100% - (2 * var(--gp-hero-page-x))) !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 var(--gp-hero-page-x) !important;
  padding: clamp(24px, 3vh, 38px) 0 clamp(30px, 4vh, 46px) !important;
}
.alx-hero-section--global .gp-hero-copy {
  width: 100% !important;
  max-width: 600px !important;
  align-self: center !important;
  justify-self: start !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  transform: translateY(8px) !important;
}
.alx-hero-section--global .gp-hero-eyebrow {
  margin: 0 0 12px !important;
}
.alx-hero-section--global .gp-hero-title {
  margin: 0 0 18px !important;
  font-size: clamp(66px, 4.65vw, 92px) !important;
  line-height: .88 !important;
  letter-spacing: -.012em !important;
}
.alx-hero-section--global .gp-title-line { line-height: .88 !important; }
.alx-hero-section--global .gp-title-line--blue { line-height: .90 !important; }
.alx-hero-section--global .gp-title-line--blue::after { display: none !important; }
.alx-hero-section--global .gp-hero-subtitle {
  max-width: 560px !important;
  margin: 0 0 22px !important;
  font-size: 17px !important;
  line-height: 1.35 !important;
  text-transform: none !important;
}
.alx-hero-section--global .gp-hero-features {
  width: min(100%, 560px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 0 22px !important;
}
.alx-hero-section--global .gp-hero-features article {
  min-height: 94px !important;
  padding: 0 28px 0 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}
.alx-hero-section--global .gp-hero-features article + article {
  padding-left: 26px !important;
  border-left: 1px solid rgba(16,72,122,.16) !important;
}
.alx-hero-section--global .gp-hero-feature-icon {
  margin: 0 0 8px !important;
  font-size: 34px !important;
}
.alx-hero-section--global .gp-hero-cta {
  min-width: 188px !important;
  min-height: 54px !important;
  margin: 0 0 13px !important;
}
.alx-hero-section--global .gp-hero-visual {
  position: relative !important;
  width: clamp(500px, 35vw, 625px) !important;
  min-width: 0 !important;
  max-width: 625px !important;
  height: auto !important;
  margin: 0 !important;
  align-self: center !important;
  justify-self: center !important;
  transform: translateY(8px) !important;
  overflow: visible !important;
}
.alx-hero-section--global .gp-hero-product {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: clamp(480px, 38vw, 610px) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 24px 42px rgba(17,52,88,.16)) !important;
}
.alx-hero-section--global .gp-hero-float-tag {
  min-height: 30px !important;
  padding: 7px 11px 7px 8px !important;
  color: #132335 !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(0,113,206,.18) !important;
  border-radius: 999px !important;
  box-shadow: 0 12px 24px rgba(18,66,112,.12), inset 0 1px 0 rgba(255,255,255,.9) !important;
  font-size: 12px !important;
}
.alx-hero-section--global .gp-hero-float-tag i {
  background: linear-gradient(135deg, #0082dc, #00aeef) !important;
}
.alx-hero-section--global .gp-hero-float-tag--based {
  left: 7% !important;
  top: 35% !important;
}
.alx-hero-section--global .gp-hero-float-tag--gmp {
  right: 5% !important;
  top: 44% !important;
}
.alx-hero-section--global .gp-hero-float-tag--tested {
  left: 15% !important;
  bottom: 16% !important;
}
@media (min-width: 1500px) {
  .alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(540px, .9fr) minmax(560px, .82fr) !important;
    column-gap: clamp(48px, 5vw, 96px) !important;
  }
}
@media (min-width: 981px) and (max-width: 1320px) {
  .alx-hero-section--global {
    min-height: 540px !important;
    height: 540px !important;
  }
  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: clamp(42px, 5.2vw, 72px);
    grid-template-columns: minmax(455px, .95fr) minmax(430px, .82fr) !important;
    column-gap: clamp(26px, 3.2vw, 48px) !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(56px, 5.1vw, 72px) !important;
  }
  .alx-hero-section--global .gp-hero-subtitle {
    max-width: 500px !important;
    font-size: 15px !important;
  }
  .alx-hero-section--global .gp-hero-features {
    width: min(100%, 510px) !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: clamp(420px, 35vw, 500px) !important;
  }
}
@media (min-width: 981px) and (max-width: 1120px) {
  .alx-hero-section--global {
    min-height: 510px !important;
    height: 510px !important;
  }
  .alx-hero-section--global .gp-hero-shell {
    --gp-hero-page-x: 32px;
    grid-template-columns: minmax(410px, 1fr) minmax(360px, 420px) !important;
    column-gap: 22px !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(50px, 5vw, 62px) !important;
  }
  .alx-hero-section--global .gp-hero-features article {
    padding-right: 18px !important;
  }
  .alx-hero-section--global .gp-hero-features article + article {
    padding-left: 18px !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(38vw, 420px) !important;
  }
}
@media (max-width: 980px) {
  .alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 36px), 760px) !important;
    height: auto !important;
    margin-inline: auto !important;
    padding: 36px 0 32px !important;
    grid-template-columns: 1fr !important;
    row-gap: 18px !important;
  }
  .alx-hero-section--global .gp-hero-copy {
    max-width: 640px !important;
    align-items: center !important;
    justify-self: center !important;
    text-align: center !important;
    transform: none !important;
  }
  .alx-hero-section--global .gp-hero-subtitle { margin-inline: auto !important; }
  .alx-hero-section--global .gp-hero-features {
    max-width: 580px !important;
  }
  .alx-hero-section--global .gp-hero-features article {
    align-items: center !important;
    text-align: center !important;
    padding-right: 18px !important;
  }
  .alx-hero-section--global .gp-hero-features article + article {
    padding-left: 18px !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(86vw, 500px) !important;
    transform: none !important;
  }
}
@media (max-width: 640px) {
  .alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 28px), 480px) !important;
    padding-top: 28px !important;
  }
  .alx-hero-section--global .gp-hero-title {
    font-size: clamp(46px, 14vw, 66px) !important;
  }
  .alx-hero-section--global .gp-hero-features {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .alx-hero-section--global .gp-hero-features article,
  .alx-hero-section--global .gp-hero-features article + article {
    min-height: auto !important;
    padding: 0 !important;
    border-left: 0 !important;
  }
  .alx-hero-section--global .gp-hero-visual {
    width: min(92vw, 410px) !important;
  }
  .alx-hero-section--global .gp-hero-float-tag {
    min-height: 26px !important;
    padding: 6px 8px !important;
    font-size: 9px !important;
  }
}


/* Global Peptide Sciences v1.8.0 final structured responsive hero reset */
@media (min-width: 981px) {
  body .alx-hero-section.alx-hero-section--global {
    --gp-page-x: clamp(72px, 5.75vw, 112px);
    height: clamp(540px, 36vw, 610px) !important;
    min-height: clamp(540px, 36vw, 610px) !important;
    max-height: 610px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 73% 48%, rgba(0, 113, 206, .12), transparent 30%),
      radial-gradient(circle at 20% 80%, rgba(0, 174, 239, .07), transparent 24%),
      linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #f5fbff 62%, #eaf6ff 100%) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
  body .alx-hero-section.alx-hero-section--global #gp-hero-particles {
    opacity: .38 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    position: relative !important;
    z-index: 2 !important;
    width: calc(100% - (2 * var(--gp-page-x))) !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 var(--gp-page-x) !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(470px, 575px) minmax(540px, 660px) !important;
    column-gap: clamp(34px, 3.4vw, 62px) !important;
    align-items: center !important;
    justify-content: start !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 575px !important;
    width: 100% !important;
    justify-self: start !important;
    align-self: center !important;
    transform: translateY(2px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
    margin: 0 0 11px !important;
    font-size: clamp(18px, 1.35vw, 24px) !important;
    letter-spacing: .38em !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    margin: 0 0 16px !important;
    font-size: clamp(62px, 4.45vw, 86px) !important;
    line-height: .88 !important;
    letter-spacing: -.012em !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-title-line,
  body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
    line-height: .88 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    max-width: 545px !important;
    margin: 0 0 20px !important;
    font-size: clamp(15px, .95vw, 17px) !important;
    line-height: 1.36 !important;
    text-transform: none !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    width: min(100%, 550px) !important;
    margin: 0 0 20px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    min-height: 88px !important;
    padding: 0 23px 0 0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article + article {
    padding-left: 23px !important;
    border-left: 1px solid rgba(16, 72, 122, .15) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
    margin: 0 0 8px !important;
    font-size: 32px !important;
    line-height: 1 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features strong {
    margin-bottom: 7px !important;
    font-size: 12px !important;
    line-height: 1.1 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
    margin: 0 0 12px !important;
    min-height: 52px !important;
    min-width: 184px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-note {
    margin: 0 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    position: relative !important;
    width: clamp(560px, 38vw, 660px) !important;
    max-width: 660px !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    justify-self: start !important;
    align-self: center !important;
    transform: translateY(2px) !important;
    overflow: visible !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-product {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: min(590px, calc(100vh - 190px)) !important;
    object-fit: contain !important;
    filter: drop-shadow(0 24px 44px rgba(16, 54, 94, .18)) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tags {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
    position: absolute !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    min-height: 32px !important;
    padding: 7px 12px 7px 8px !important;
    color: #12243a !important;
    background: rgba(255, 255, 255, .96) !important;
    border: 1px solid rgba(0, 113, 206, .18) !important;
    border-radius: 999px !important;
    box-shadow: 0 14px 28px rgba(23, 75, 123, .13), inset 0 1px 0 rgba(255,255,255,.9) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: -.01em !important;
    white-space: nowrap !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 50% !important;
    color: #fff !important;
    background: linear-gradient(135deg, #0071ce, #00aeef) !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based {
    left: 2.5% !important;
    top: 35% !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp {
    right: 4% !important;
    top: 45% !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested {
    left: 9% !important;
    bottom: 17% !important;
  }
}

@media (min-width: 1321px) and (max-width: 1600px) {
  body .alx-hero-section.alx-hero-section--global {
    --gp-page-x: clamp(58px, 5.3vw, 88px);
    height: 570px !important;
    min-height: 570px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(470px, 545px) minmax(520px, 620px) !important;
    column-gap: clamp(28px, 3vw, 48px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(60px, 4.5vw, 76px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: clamp(520px, 38vw, 620px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  body .alx-hero-section.alx-hero-section--global {
    --gp-page-x: clamp(32px, 4.8vw, 64px);
    height: 535px !important;
    min-height: 535px !important;
    max-height: 535px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(410px, 500px) minmax(400px, 500px) !important;
    column-gap: clamp(22px, 2.8vw, 36px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(50px, 5vw, 64px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    max-width: 470px !important;
    font-size: 14px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    width: min(100%, 480px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    padding-right: 16px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article + article {
    padding-left: 16px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(43vw, 500px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
    font-size: 10.5px !important;
    min-height: 29px !important;
  }
}

@media (max-width: 980px) {
  body .alx-hero-section.alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    display: block !important;
    padding: 0 !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 50% 58%, rgba(0,113,206,.10), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, #f5fbff 100%) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
  body .alx-hero-section.alx-hero-section--global #gp-hero-particles {
    opacity: .28 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 36px), 740px) !important;
    height: auto !important;
    max-width: 740px !important;
    margin: 0 auto !important;
    padding: 34px 0 36px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
    align-items: center !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 650px !important;
    justify-self: center !important;
    align-items: center !important;
    text-align: center !important;
    transform: none !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(54px, 10vw, 78px) !important;
    margin-bottom: 16px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    margin-inline: auto !important;
    max-width: 560px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    width: min(100%, 580px) !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    align-items: center !important;
    text-align: center !important;
    padding-right: 14px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article + article {
    padding-left: 14px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(88vw, 520px) !important;
    margin: 0 auto !important;
    justify-self: center !important;
    transform: none !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
    min-height: 28px !important;
    padding: 6px 10px 6px 7px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 640px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 28px), 460px) !important;
    padding: 28px 0 30px !important;
    row-gap: 20px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
    font-size: 15px !important;
    letter-spacing: .34em !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(45px, 14vw, 62px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    grid-template-columns: 1fr !important;
    gap: 13px !important;
    margin-bottom: 18px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article,
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article + article {
    padding: 0 !important;
    border-left: 0 !important;
    min-height: auto !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
    min-width: 170px !important;
    min-height: 50px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(94vw, 390px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
    font-size: 8.5px !important;
    min-height: 24px !important;
    padding: 5px 7px !important;
    gap: 4px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i {
    width: 13px !important;
    height: 13px !important;
    min-width: 13px !important;
    font-size: 9px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based {
    left: 0 !important;
    top: 34% !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp {
    right: 0 !important;
    top: 45% !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested {
    left: 7% !important;
    bottom: 17% !important;
  }
}


/* Global Peptide Sciences v1.8.1 — reference hero/header pixel layout reset */
:root {
  --gp-blue: #006be8;
  --gp-blue-deep: #0054d6;
  --gp-blue-dark: #073c9a;
  --gp-ink: #101722;
  --gp-muted: #5c697c;
  --gp-hero-x: clamp(48px, 4.85vw, 82px);
  --gp-alert-h: 44px;
  --gp-header-h: 104px;
}

body .alx-shipping-ribbon {
  height: var(--gp-alert-h) !important;
  min-height: var(--gp-alert-h) !important;
  padding: 0 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  background: linear-gradient(180deg, #087df3 0%, #006fe8 52%, #005ed8 100%) !important;
  color: #fff !important;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  box-shadow: inset 0 -1px 0 rgba(0, 34, 91, .18) !important;
}

body .alx-shipping-ribbon::before {
  content: "\\ee55";
  font-family: "remixicon" !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  opacity: .9 !important;
}

@media (min-width: 981px) {
  body .alx-header {
    height: var(--gp-header-h) !important;
    min-height: var(--gp-header-h) !important;
    display: grid !important;
    grid-template-columns: minmax(260px, 320px) minmax(520px, 1fr) minmax(350px, 430px) !important;
    align-items: center !important;
    column-gap: clamp(24px, 3vw, 54px) !important;
    padding: 0 var(--gp-hero-x) !important;
    background: rgba(255,255,255,.992) !important;
    border-bottom: 1px solid rgba(216,226,239,.9) !important;
    box-shadow: 0 9px 30px rgba(20, 45, 82, .075), inset 0 1px 0 rgba(255,255,255,.96) !important;
  }

  body .alx-header .alx-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: stretch !important;
    width: clamp(190px, 12.1vw, 232px) !important;
    height: var(--gp-header-h) !important;
    min-height: var(--gp-header-h) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }

  body .alx-header .alx-brand-logo {
    width: clamp(184px, 11.7vw, 224px) !important;
    max-width: 224px !important;
    max-height: 72px !important;
    object-fit: contain !important;
    object-position: left center !important;
    filter: drop-shadow(0 5px 10px rgba(8, 29, 54, .06)) !important;
  }

  body .alx-header .alx-primary-nav {
    grid-column: 2 !important;
    grid-row: 1 !important;
    height: var(--gp-header-h) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(30px, 2.5vw, 48px) !important;
  }

  body .alx-header .alx-header-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    height: var(--gp-header-h) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: clamp(22px, 1.85vw, 36px) !important;
  }

  body .alx-header .alx-header-actions::before { display: none !important; }

  body .alx-header .alx-nav-link,
  body .alx-header .alx-action-btn {
    height: var(--gp-header-h) !important;
    color: #101722 !important;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: .025em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body .alx-header .alx-action-btn {
    gap: 12px !important;
    padding: 0 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
  }

  body .alx-header .alx-action-btn i,
  body .alx-header .alx-action-icon i {
    font-size: 29px !important;
    color: #101722 !important;
  }
}

body .alx-hero-section.alx-hero-section--global {
  position: relative !important;
  isolation: isolate !important;
  display: flex !important;
  align-items: center !important;
  min-height: clamp(720px, calc(100svh - var(--gp-alert-h) - var(--gp-header-h)), 796px) !important;
  height: clamp(720px, calc(100svh - var(--gp-alert-h) - var(--gp-header-h)), 796px) !important;
  max-height: 796px !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: var(--gp-ink) !important;
  border-top: 0 !important;
  background:
    radial-gradient(circle at 71% 42%, rgba(0, 111, 232, .18) 0%, rgba(0,111,232,.10) 29%, rgba(0,111,232,.035) 47%, transparent 60%),
    radial-gradient(circle at 17% 87%, rgba(0, 111, 232, .08) 0%, transparent 30%),
    linear-gradient(101deg, #ffffff 0%, #fdfefe 38%, #f3f9ff 65%, #eaf6ff 100%) !important;
  box-shadow: inset 0 28px 44px rgba(24, 54, 88, .055) !important;
}

body .alx-hero-section.alx-hero-section--global::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 74% 57%, rgba(255,255,255,.55) 0%, transparent 45%),
    linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 40%, rgba(240,248,255,.72) 74%, rgba(234,246,255,.86) 100%) !important;
}

body .alx-hero-section.alx-hero-section--global::after {
  content: "" !important;
  position: absolute !important;
  right: -11vw !important;
  top: -12vw !important;
  width: min(70vw, 1180px) !important;
  height: min(70vw, 1180px) !important;
  z-index: 0 !important;
  pointer-events: none !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(0, 117, 255, .11), rgba(0, 117, 255, .045) 46%, transparent 70%) !important;
  filter: blur(10px) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
body .alx-hero-section.alx-hero-section--global #gp-hero-particles {
  inset: 0 !important;
  z-index: 1 !important;
  opacity: .46 !important;
  mix-blend-mode: multiply !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, #000 58%, #000 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, #000 58%, #000 100%) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-pattern--left {
  top: -1% !important;
  left: -74px !important;
  width: 410px !important;
  height: 520px !important;
  opacity: .25 !important;
  z-index: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-pattern--right {
  top: 23% !important;
  right: -58px !important;
  width: 420px !important;
  height: 520px !important;
  opacity: .20 !important;
  z-index: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-dots--left {
  left: var(--gp-hero-x) !important;
  bottom: 42px !important;
  opacity: .22 !important;
  z-index: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-dots--right {
  right: clamp(110px, 9vw, 166px) !important;
  top: 260px !important;
  opacity: .18 !important;
  z-index: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
  position: relative !important;
  z-index: 2 !important;
  width: min(calc(100% - (2 * var(--gp-hero-x))), 1512px) !important;
  max-width: 1512px !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(520px, 46.5%) minmax(620px, 53.5%) !important;
  align-items: center !important;
  column-gap: 0 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
  grid-column: 1 !important;
  width: 100% !important;
  max-width: 715px !important;
  align-self: center !important;
  justify-self: start !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  transform: translateY(7px) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
  margin: 0 0 28px !important;
  order: 0 !important;
  color: var(--gp-blue) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(15px, 1.05vw, 18px) !important;
  font-weight: 900 !important;
  letter-spacing: .47em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow::after {
  bottom: -17px !important;
  left: 0 !important;
  width: 62px !important;
  height: 3px !important;
  transform: none !important;
  border-radius: 999px !important;
  background: var(--gp-blue) !important;
  opacity: .95 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-title,
body .alx-hero-section.alx-hero-section--global .gp-title-line,
body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 900 !important;
  text-transform: none !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
  font-synthesis-weight: auto !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-title {
  order: 1 !important;
  max-width: 715px !important;
  margin: 0 0 27px !important;
  font-size: clamp(58px, 5.3vw, 94px) !important;
  line-height: .96 !important;
  letter-spacing: -.064em !important;
  text-shadow: 0 15px 28px rgba(12, 30, 62, .065) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-title-line {
  display: block !important;
  color: #111827 !important;
  line-height: .99 !important;
  background: linear-gradient(180deg, #253044 0%, #111827 52%, #050913 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
  color: var(--gp-blue) !important;
  line-height: 1 !important;
  letter-spacing: -.068em !important;
  background: linear-gradient(90deg, #004fbd 0%, #006fe8 44%, #2886ff 72%, #0052c8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body .alx-hero-section.alx-hero-section--global .gp-title-line--blue::after { display: none !important; }

body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
  order: 2 !important;
  max-width: 610px !important;
  margin: 0 0 28px !important;
  color: #5b6880 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(17px, 1.22vw, 22px) !important;
  font-weight: 600 !important;
  letter-spacing: -.026em !important;
  line-height: 1.42 !important;
  text-transform: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
  order: 3 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 236px !important;
  min-height: 65px !important;
  margin: 0 0 34px !important;
  padding: 18px 31px 18px 36px !important;
  gap: 28px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #1686ff 0%, #006be8 51%, #004fc0 100%) !important;
  box-shadow: 0 18px 32px rgba(0, 105, 230, .30), inset 0 1px 0 rgba(255,255,255,.32) !important;
  color: #fff !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-cta i {
  font-size: 33px !important;
  line-height: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features {
  order: 4 !important;
  width: min(100%, 650px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin: 0 0 35px !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
  min-height: 144px !important;
  padding: 0 clamp(22px, 1.85vw, 34px) !important;
  border: 0 !important;
  border-right: 1px solid rgba(15, 44, 82, .14) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features article:first-child { padding-left: 0 !important; }
body .alx-hero-section.alx-hero-section--global .gp-hero-features article:last-child { padding-right: 0 !important; border-right: 0 !important; }

body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
  width: 68px !important;
  height: 68px !important;
  margin: 0 0 17px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--gp-blue) !important;
  background: rgba(255,255,255,.78) !important;
  border-radius: 999px !important;
  box-shadow: 0 16px 34px rgba(40, 88, 132, .10), inset 0 1px 0 rgba(255,255,255,.84) !important;
  font-size: 38px !important;
  filter: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon i {
  font-size: 39px !important;
  line-height: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features strong {
  margin: 0 0 14px !important;
  color: #101722 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
  line-height: 1.05 !important;
  text-transform: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
  color: #667286 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  letter-spacing: -.028em !important;
  line-height: 1.42 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-note {
  order: 5 !important;
  position: relative !important;
  margin: 0 !important;
  padding-left: 32px !important;
  color: #9ba6b5 !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: .035em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-note::before {
  content: "\\ee55";
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-family: "remixicon" !important;
  color: #a5afbd !important;
  font-size: 20px !important;
  font-weight: 400 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
  grid-column: 2 !important;
  position: relative !important;
  align-self: end !important;
  justify-self: end !important;
  width: min(52.2vw, 840px) !important;
  max-width: 840px !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  transform: translate(8px, 8px) !important;
  filter: drop-shadow(0 22px 34px rgba(23, 50, 90, .12)) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-product {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: calc(var(--gp-hero-h, 796px) - 50px) !important;
  object-fit: contain !important;
  filter: drop-shadow(0 24px 42px rgba(17,52,88,.14)) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tags {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
  min-height: 61px !important;
  padding: 15px 27px 15px 18px !important;
  gap: 13px !important;
  color: #132033 !important;
  background: rgba(255, 255, 255, .88) !important;
  border: 1px solid rgba(255, 255, 255, .92) !important;
  border-radius: 999px !important;
  box-shadow: 0 18px 44px rgba(26, 63, 105, .13), inset 0 1px 0 rgba(255,255,255,.95) !important;
  backdrop-filter: blur(16px) saturate(1.08) !important;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
  font-size: clamp(12px, .98vw, 17px) !important;
  font-weight: 900 !important;
  letter-spacing: -.035em !important;
  line-height: 1 !important;
  text-transform: none !important;
  white-space: nowrap !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #087df3 0%, #005ed8 100%) !important;
  border-radius: 999px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35) !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based {
  left: 5.8% !important;
  top: 27.7% !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp {
  right: 2.2% !important;
  top: 43.5% !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested {
  left: 1.1% !important;
  bottom: 15.3% !important;
}

@media (min-width: 1680px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: 94px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: 840px !important; }
}

@media (min-width: 981px) and (max-width: 1420px) {
  :root { --gp-hero-x: clamp(36px, 4.2vw, 60px); }
  body .alx-header {
    grid-template-columns: minmax(200px, 260px) minmax(470px, 1fr) minmax(300px, 370px) !important;
  }
  body .alx-header .alx-primary-nav { gap: clamp(22px, 2vw, 34px) !important; }
  body .alx-header .alx-nav-link { font-size: 13px !important; }
  body .alx-hero-section.alx-hero-section--global {
    min-height: clamp(650px, calc(100svh - var(--gp-alert-h) - var(--gp-header-h)), 740px) !important;
    height: clamp(650px, calc(100svh - var(--gp-alert-h) - var(--gp-header-h)), 740px) !important;
    max-height: 740px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(450px, 47%) minmax(500px, 53%) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(58px, 5.35vw, 78px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: 17px !important; max-width: 560px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta { min-height: 58px !important; min-width: 210px !important; font-size: 18px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { width: min(100%, 590px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon { width: 58px !important; height: 58px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features strong { font-size: 16px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) { font-size: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note { font-size: 13px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(51vw, 670px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 46px !important; padding: 11px 18px 11px 13px !important; font-size: 12px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 20px !important; height: 20px !important; min-width: 20px !important; font-size: 12px !important; }
}

@media (min-width: 981px) and (max-width: 1120px) {
  body .alx-header { padding-inline: 28px !important; grid-template-columns: 190px 1fr 280px !important; }
  body .alx-header .alx-primary-nav { gap: 18px !important; }
  body .alx-header .alx-nav-link { font-size: 12px !important; }
  body .alx-header .alx-action-btn span:not(.alx-action-icon) { display: none !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: calc(100% - 56px) !important;
    grid-template-columns: minmax(410px, 49%) minmax(410px, 51%) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(50px, 5vw, 60px) !important; }
}

@media (max-width: 980px) {
  :root { --gp-alert-h: 34px; --gp-header-h: 72px; }
  body .alx-shipping-ribbon { height: 34px !important; min-height: 34px !important; font-size: 10px !important; letter-spacing: .035em !important; }
  body .alx-header { height: 72px !important; min-height: 72px !important; padding-inline: 22px !important; grid-template-columns: auto 1fr auto !important; }
  body .alx-header .alx-brand { justify-self: start !important; width: clamp(154px, 36vw, 206px) !important; height: 72px !important; min-height: 72px !important; }
  body .alx-header .alx-brand-logo { width: 100% !important; max-height: 58px !important; object-fit: contain !important; }

  body .alx-hero-section.alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 0 !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
  body .alx-hero-section.alx-hero-section--global #gp-hero-particles {
    opacity: .28 !important;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%) !important;
    mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 100%) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 40px), 760px) !important;
    height: auto !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    row-gap: 26px !important;
    margin-inline: auto !important;
    padding: 54px 0 44px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 680px !important;
    align-items: center !important;
    justify-self: center !important;
    text-align: center !important;
    transform: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow { font-size: 14px !important; letter-spacing: .38em !important; margin-bottom: 24px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow::after { left: 50% !important; transform: translateX(-50%) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(52px, 11.6vw, 92px) !important; line-height: 1 !important; margin-bottom: 22px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { max-width: 610px !important; margin-inline: auto !important; font-size: clamp(15px, 2.1vw, 19px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta { min-height: 58px !important; min-width: 210px !important; font-size: 18px !important; margin-bottom: 30px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { width: min(100%, 640px) !important; margin-bottom: 28px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article { min-height: 132px !important; align-items: center !important; text-align: center !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note { padding-left: 0 !important; font-size: 12px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note::before { display: none !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { grid-column: 1 !important; justify-self: center !important; width: min(92vw, 630px) !important; transform: none !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 40px !important; padding: 10px 14px 10px 10px !important; font-size: 11px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 18px !important; height: 18px !important; min-width: 18px !important; font-size: 11px !important; }
}

@media (max-width: 640px) {
  :root { --gp-alert-h: 32px; --gp-header-h: 64px; }
  body .alx-shipping-ribbon { height: 32px !important; min-height: 32px !important; font-size: 8.8px !important; padding-inline: 10px !important; }
  body .alx-shipping-ribbon::before { display: none !important; }
  body .alx-header { height: 64px !important; min-height: 64px !important; padding-inline: 16px !important; }
  body .alx-header .alx-brand { width: clamp(136px, 42vw, 174px) !important; height: 64px !important; min-height: 64px !important; }
  body .alx-header .alx-brand-logo { max-height: 48px !important; }
  body .alx-header .alx-menu-btn i { font-size: 28px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell { width: min(calc(100% - 28px), 480px) !important; padding: 38px 0 32px !important; row-gap: 18px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow { font-size: 12px !important; letter-spacing: .31em !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(40px, 13.4vw, 64px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: 14px !important; line-height: 1.5 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { grid-template-columns: 1fr !important; gap: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article { min-height: auto !important; padding: 0 0 14px !important; border-right: 0 !important; border-bottom: 1px solid rgba(15, 44, 82, .12) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article:last-child { border-bottom: 0 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon { width: 52px !important; height: 52px !important; margin-bottom: 10px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features strong { font-size: 16px !important; margin-bottom: 7px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) { font-size: 13px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(98vw, 420px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 28px !important; padding: 6px 8px !important; font-size: 8.5px !important; gap: 5px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 14px !important; height: 14px !important; min-width: 14px !important; font-size: 9px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based { left: 1.5% !important; top: 30% !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp { right: .5% !important; top: 44% !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested { left: 3% !important; bottom: 17% !important; }
}


/* Global Peptide Sciences v1.8.2 — hero typography and structure pixel alignment */
:root {
  --gp-hero-side: clamp(80px, 4.9vw, 96px);
  --gp-topbar-h: 40px;
  --gp-navbar-h: 104px;
}

body .alx-shipping-ribbon {
  height: var(--gp-topbar-h) !important;
  min-height: var(--gp-topbar-h) !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .075em !important;
  line-height: 1 !important;
}

body .alx-shipping-ribbon::before {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  border: 2px solid currentColor !important;
  border-radius: 6px 6px 8px 8px !important;
  background: transparent !important;
  clip-path: polygon(50% 0, 92% 18%, 86% 72%, 50% 100%, 14% 72%, 8% 18%) !important;
  opacity: .95 !important;
}

@media (min-width: 981px) {
  body .alx-header {
    height: var(--gp-navbar-h) !important;
    min-height: var(--gp-navbar-h) !important;
    padding-inline: var(--gp-hero-side) !important;
    grid-template-columns: minmax(230px, 310px) minmax(540px, 1fr) minmax(340px, 430px) !important;
    column-gap: clamp(18px, 2.4vw, 46px) !important;
  }

  body .alx-header .alx-brand,
  body .alx-header .alx-primary-nav,
  body .alx-header .alx-header-actions,
  body .alx-header .alx-nav-link,
  body .alx-header .alx-action-btn {
    height: var(--gp-navbar-h) !important;
  }

  body .alx-header .alx-brand-logo {
    width: clamp(186px, 11.4vw, 226px) !important;
    max-width: 226px !important;
    max-height: 78px !important;
  }

  body .alx-header .alx-primary-nav {
    gap: clamp(30px, 2.7vw, 52px) !important;
  }
}

body .alx-hero-section.alx-hero-section--global {
  min-height: clamp(680px, calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)), 820px) !important;
  height: clamp(680px, calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)), 820px) !important;
  max-height: 820px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 73% 42%, rgba(0, 116, 245, .18) 0%, rgba(0, 116, 245, .07) 42%, transparent 62%),
    linear-gradient(102deg, #ffffff 0%, #fbfdff 42%, #f1f8ff 67%, #e9f6ff 100%) !important;
}

body .alx-hero-section.alx-hero-section--global::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.90) 42%, rgba(239,248,255,.62) 68%, rgba(231,246,255,.84) 100%) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
  width: calc(100% - (2 * var(--gp-hero-side))) !important;
  max-width: 1536px !important;
  height: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(600px, 44.5%) minmax(720px, 55.5%) !important;
  column-gap: clamp(18px, 2.2vw, 42px) !important;
  align-items: center !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
  max-width: 710px !important;
  align-self: center !important;
  justify-self: start !important;
  transform: translateY(-4px) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
  margin: 0 0 30px !important;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
  font-size: clamp(14px, .95vw, 18px) !important;
  font-weight: 900 !important;
  letter-spacing: .49em !important;
  color: #006fe8 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow::after {
  width: 68px !important;
  height: 3px !important;
  bottom: -18px !important;
  background: #006fe8 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-title,
body .alx-hero-section.alx-hero-section--global .gp-title-line,
body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
  font-family: "Plus Jakarta Sans", Inter, "Segoe UI", system-ui, sans-serif !important;
  font-weight: 900 !important;
  text-transform: none !important;
  letter-spacing: -.07em !important;
  text-rendering: geometricPrecision !important;
  -webkit-font-smoothing: antialiased !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-title {
  max-width: 760px !important;
  margin: 0 0 29px !important;
  font-size: clamp(61px, 4.25vw, 82px) !important;
  line-height: 1.04 !important;
  color: #101722 !important;
  text-shadow: 0 12px 26px rgba(4, 25, 58, .055) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-title-line {
  display: block !important;
  line-height: 1.03 !important;
  white-space: nowrap !important;
  color: #111827 !important;
  background: linear-gradient(180deg, #263244 0%, #121a29 55%, #070b13 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
  color: #006fe8 !important;
  background: linear-gradient(90deg, #006fe8 0%, #0066dc 54%, #0058cc 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
  max-width: 625px !important;
  margin: 0 0 32px !important;
  color: #5a6679 !important;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
  font-size: clamp(18px, 1.22vw, 22px) !important;
  font-weight: 600 !important;
  line-height: 1.48 !important;
  letter-spacing: -.035em !important;
  text-transform: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
  order: 3 !important;
  min-width: 246px !important;
  min-height: 70px !important;
  margin: 0 0 40px !important;
  padding: 0 28px 0 34px !important;
  border-radius: 999px !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: -.03em !important;
  box-shadow: 0 16px 28px rgba(0, 101, 218, .23), inset 0 1px 0 rgba(255,255,255,.34) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-cta i {
  font-size: 32px !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features {
  order: 4 !important;
  width: min(100%, 650px) !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  margin: 0 0 38px !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
  min-height: 148px !important;
  padding: 0 28px 0 24px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  border-right: 1px solid rgba(67, 86, 115, .22) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features article:first-child {
  padding-left: 0 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
  width: 72px !important;
  height: 72px !important;
  margin: 0 0 18px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 13px 30px rgba(35, 70, 112, .10), inset 0 1px 0 rgba(255,255,255,.92) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon i {
  font-size: 39px !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features strong {
  margin-bottom: 14px !important;
  color: #101722 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  text-transform: none !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
  color: #667185 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.42 !important;
  letter-spacing: -.03em !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-note {
  order: 5 !important;
  padding-left: 34px !important;
  color: rgba(84, 96, 115, .64) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: .06em !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-note::before {
  width: 20px !important;
  height: 20px !important;
  border-radius: 7px !important;
  color: rgba(100, 113, 135, .64) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(51vw, 850px) !important;
  max-width: 850px !important;
  transform: translate(10px, 18px) !important;
  overflow: visible !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-product {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 22px 34px rgba(7, 36, 79, .18)) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
  min-height: 66px !important;
  padding: 16px 27px 16px 18px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.92) !important;
  color: #152033 !important;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  letter-spacing: -.045em !important;
  box-shadow: 0 18px 38px rgba(12, 49, 96, .15), inset 0 1px 0 rgba(255,255,255,.92) !important;
  backdrop-filter: blur(14px) !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #006fe8 !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based {
  left: 5.5% !important;
  top: 27.5% !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp {
  right: 1.5% !important;
  top: 43.5% !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested {
  left: .5% !important;
  bottom: 15.5% !important;
}

body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
body .alx-hero-section.alx-hero-section--global #gp-hero-particles {
  opacity: .25 !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 48%, #000 63%, #000 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 48%, #000 63%, #000 100%) !important;
}

@media (min-width: 981px) and (max-width: 1440px) {
  :root { --gp-hero-side: clamp(56px, 4.2vw, 72px); }
  body .alx-hero-section.alx-hero-section--global {
    min-height: 690px !important;
    height: 690px !important;
    max-height: 690px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(500px, 45.5%) minmax(560px, 54.5%) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(54px, 4.2vw, 66px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: 17px !important; max-width: 560px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta { min-height: 60px !important; min-width: 210px !important; font-size: 18px !important; margin-bottom: 30px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { width: min(100%, 590px) !important; margin-bottom: 26px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon { width: 58px !important; height: 58px !important; margin-bottom: 13px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon i { font-size: 32px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features strong { font-size: 16px !important; margin-bottom: 8px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) { font-size: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(51vw, 705px) !important; transform: translate(4px, 12px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 48px !important; padding: 11px 18px 11px 12px !important; font-size: 13px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 22px !important; height: 22px !important; min-width: 22px !important; font-size: 13px !important; }
}

@media (min-width: 981px) and (max-width: 1180px) {
  :root { --gp-hero-side: 34px; }
  body .alx-header { padding-inline: 34px !important; grid-template-columns: 220px 1fr 300px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(430px, 48%) minmax(430px, 52%) !important;
    column-gap: 18px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: 48px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-title-line { white-space: normal !important; }
}

@media (max-width: 980px) {
  :root { --gp-topbar-h: 34px; --gp-navbar-h: 72px; }
  body .alx-hero-section.alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 40px), 760px) !important;
    grid-template-columns: 1fr !important;
    padding: 54px 0 48px !important;
    row-gap: 28px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 680px !important;
    justify-self: center !important;
    align-items: center !important;
    text-align: center !important;
    transform: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow { font-size: 13px !important; letter-spacing: .38em !important; margin-bottom: 26px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow::after { left: 50% !important; transform: translateX(-50%) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(50px, 10vw, 78px) !important; line-height: 1.04 !important; margin-bottom: 22px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-title-line { white-space: normal !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { max-width: 620px !important; font-size: clamp(15px, 2.15vw, 19px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta { min-height: 58px !important; min-width: 210px !important; font-size: 18px !important; margin-bottom: 28px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { width: min(100%, 640px) !important; margin-bottom: 28px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article { align-items: center !important; text-align: center !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note { padding-left: 0 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note::before { display: none !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(92vw, 660px) !important; justify-self: center !important; transform: none !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
  body .alx-hero-section.alx-hero-section--global #gp-hero-particles { opacity: .22 !important; -webkit-mask-image: none !important; mask-image: none !important; }
}

@media (max-width: 640px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell { width: min(calc(100% - 28px), 480px) !important; padding: 38px 0 34px !important; row-gap: 20px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(40px, 12.6vw, 58px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { grid-template-columns: 1fr !important; gap: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article { min-height: auto !important; padding: 0 0 14px !important; border-right: 0 !important; border-bottom: 1px solid rgba(15, 44, 82, .12) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article:last-child { border-bottom: 0 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(99vw, 460px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 31px !important; padding: 6px 9px !important; font-size: 9px !important; gap: 5px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 15px !important; height: 15px !important; min-width: 15px !important; font-size: 9px !important; }
}


/* Global Peptide Sciences v1.8.3 — refined hero scale and better font system */
:root {
  --gp-topbar-h: 36px;
  --gp-navbar-h: 98px;
  --gp-page-pad: clamp(72px, 5vw, 112px);
  --gp-hero-max: 1560px;
  --gp-blue: #006fe8;
  --gp-blue-deep: #005bd6;
  --gp-ink: #101827;
  --gp-text: #556176;
}

body .alx-shipping-ribbon {
  height: var(--gp-topbar-h) !important;
  min-height: var(--gp-topbar-h) !important;
  padding: 0 var(--gp-page-pad) !important;
  font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .045em !important;
  line-height: 1 !important;
}
body .alx-shipping-ribbon::before {
  content: none !important;
  display: none !important;
}

@media (min-width: 981px) {
  body .alx-header {
    height: var(--gp-navbar-h) !important;
    min-height: var(--gp-navbar-h) !important;
    padding-inline: var(--gp-page-pad) !important;
    grid-template-columns: 300px minmax(520px, 1fr) 380px !important;
    column-gap: clamp(24px, 2.4vw, 44px) !important;
  }
  body .alx-brand {
    width: 220px !important;
    height: var(--gp-navbar-h) !important;
    min-height: var(--gp-navbar-h) !important;
    justify-self: start !important;
  }
  body .alx-brand-logo {
    width: 220px !important;
    max-width: 220px !important;
    max-height: 70px !important;
    object-fit: contain !important;
  }
  body .alx-primary-nav {
    justify-self: center !important;
    gap: clamp(26px, 2.2vw, 46px) !important;
  }
  body .alx-nav-link,
  body .alx-action-btn {
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: .01em !important;
  }

  body .alx-hero-section.alx-hero-section--global {
    height: clamp(620px, calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)), 700px) !important;
    min-height: 620px !important;
    max-height: 700px !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 72% 49%, rgba(0, 111, 232, .14) 0%, rgba(0,111,232,.07) 31%, transparent 55%),
      linear-gradient(110deg, #ffffff 0%, #fbfdff 40%, #f2f8ff 66%, #eaf5ff 100%) !important;
  }
  body .alx-hero-section.alx-hero-section--global::before {
    background:
      linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 39%, rgba(239,247,255,.68) 72%, rgba(236,246,255,.88) 100%),
      radial-gradient(circle at 70% 55%, rgba(0,101,218,.11), transparent 42%) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - (var(--gp-page-pad) * 2)), var(--gp-hero-max)) !important;
    height: 100% !important;
    min-height: 0 !important;
    margin-inline: auto !important;
    padding: clamp(46px, 4.1vw, 66px) 0 clamp(38px, 3.4vw, 56px) !important;
    display: grid !important;
    grid-template-columns: minmax(520px, .93fr) minmax(560px, 1.07fr) !important;
    column-gap: clamp(42px, 4vw, 72px) !important;
    align-items: center !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 650px !important;
    align-self: center !important;
    transform: translateY(-4px) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
    margin: 0 0 28px !important;
    font-family: "Bebas Neue", "Manrope", sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    letter-spacing: .42em !important;
    line-height: 1 !important;
    color: var(--gp-blue) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow::after {
    bottom: -14px !important;
    width: 56px !important;
    height: 2px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title,
  body .alx-hero-section.alx-hero-section--global .gp-title-line,
  body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
    font-family: "Manrope", "Inter", "Plus Jakarta Sans", system-ui, sans-serif !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: -0.062em !important;
    word-spacing: .035em !important;
    font-synthesis-weight: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    max-width: 650px !important;
    margin: 0 0 24px !important;
    font-size: clamp(52px, 4.05vw, 68px) !important;
    line-height: 1.05 !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-title-line {
    display: block !important;
    white-space: nowrap !important;
    color: var(--gp-ink) !important;
    -webkit-text-fill-color: var(--gp-ink) !important;
    background: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-title-line--blue {
    color: var(--gp-blue-deep) !important;
    -webkit-text-fill-color: var(--gp-blue-deep) !important;
    background: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-title-line--blue::after {
    display: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    max-width: 560px !important;
    margin: 0 0 24px !important;
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-size: clamp(16px, 1.15vw, 18px) !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    letter-spacing: -.025em !important;
    color: var(--gp-text) !important;
    text-transform: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
    order: 3 !important;
    width: fit-content !important;
    min-width: 210px !important;
    min-height: 58px !important;
    margin: 0 0 30px !important;
    padding: 0 26px 0 30px !important;
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    letter-spacing: -.01em !important;
    gap: 22px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta i {
    font-size: 29px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    width: min(100%, 585px) !important;
    order: 4 !important;
    margin: 0 0 22px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    min-height: 124px !important;
    padding: 0 22px !important;
    align-items: center !important;
    text-align: center !important;
    border-right-color: rgba(40, 61, 90, .18) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article:first-child { padding-left: 0 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article:last-child { padding-right: 0 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 0 13px !important;
    border-radius: 50% !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon i {
    font-size: 30px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features strong {
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: -.025em !important;
    margin-bottom: 8px !important;
    text-transform: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) {
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.42 !important;
    font-weight: 600 !important;
    letter-spacing: -.02em !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note {
    margin-top: 0 !important;
    padding-left: 28px !important;
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-note::before {
    width: 17px !important;
    height: 17px !important;
    border-radius: 6px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    position: relative !important;
    grid-column: 2 !important;
    justify-self: end !important;
    align-self: center !important;
    width: min(48vw, 720px) !important;
    max-width: 720px !important;
    transform: translate(6px, 10px) !important;
    overflow: visible !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-product {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
    min-height: 48px !important;
    padding: 11px 20px 11px 12px !important;
    gap: 10px !important;
    border-radius: 999px !important;
    font-family: "Manrope", "Plus Jakarta Sans", Inter, system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -.025em !important;
    background: rgba(255,255,255,.91) !important;
    box-shadow: 0 14px 30px rgba(20, 53, 98, .13), inset 0 1px 0 rgba(255,255,255,.95) !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    font-size: 13px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based { left: 7% !important; top: 26% !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp { right: 1% !important; top: 44% !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested { left: 2% !important; bottom: 16% !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-particles,
  body .alx-hero-section.alx-hero-section--global #gp-hero-particles {
    opacity: .16 !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 52%, #000 66%, #000 100%) !important;
    mask-image: linear-gradient(90deg, transparent 0%, transparent 52%, #000 66%, #000 100%) !important;
  }
}

@media (min-width: 981px) and (max-width: 1360px) {
  :root { --gp-page-pad: clamp(44px, 4vw, 64px); }
  body .alx-header { grid-template-columns: 245px 1fr 325px !important; }
  body .alx-brand, body .alx-brand-logo { width: 190px !important; }
  body .alx-hero-section.alx-hero-section--global {
    height: 620px !important;
    min-height: 620px !important;
    max-height: 620px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(450px, .95fr) minmax(500px, 1.05fr) !important;
    column-gap: 36px !important;
    padding-block: 42px 38px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(48px, 4vw, 60px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: 15px !important; max-width: 520px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta { min-height: 54px !important; min-width: 190px !important; font-size: 16px !important; margin-bottom: 24px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { width: min(100%, 540px) !important; margin-bottom: 16px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon { width: 48px !important; height: 48px !important; margin-bottom: 10px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon i { font-size: 27px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features strong { font-size: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features span:not(.gp-hero-feature-icon) { font-size: 13px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(48vw, 620px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 40px !important; padding: 8px 15px 8px 10px !important; font-size: 12px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 19px !important; height: 19px !important; min-width: 19px !important; font-size: 11px !important; }
}

@media (max-width: 980px) {
  :root { --gp-topbar-h: 34px; --gp-navbar-h: 72px; }
  body .alx-shipping-ribbon { font-size: 10px !important; letter-spacing: .035em !important; padding-inline: 14px !important; }
  body .alx-hero-section.alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: min(calc(100% - 40px), 760px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 44px 0 42px !important;
    row-gap: 24px !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 680px !important;
    justify-self: center !important;
    text-align: center !important;
    align-items: center !important;
    transform: none !important;
  }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow { font-size: 14px !important; letter-spacing: .34em !important; margin-bottom: 24px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow::after { left: 50% !important; transform: translateX(-50%) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(44px, 9vw, 66px) !important; line-height: 1.07 !important; margin-bottom: 20px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-title-line { white-space: normal !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: clamp(14px, 2.1vw, 17px) !important; max-width: 580px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-cta { min-height: 54px !important; min-width: 190px !important; font-size: 16px !important; margin-bottom: 24px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { width: min(100%, 600px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(92vw, 610px) !important; justify-self: center !important; transform: none !important; }
}

@media (max-width: 640px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell { width: min(calc(100% - 28px), 480px) !important; padding: 34px 0 32px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-title { font-size: clamp(38px, 12vw, 54px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle { font-size: 14px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features { grid-template-columns: 1fr !important; gap: 12px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article { min-height: auto !important; padding: 0 0 14px !important; border-right: 0 !important; border-bottom: 1px solid rgba(15, 44, 82, .12) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-features article:last-child { border-bottom: 0 !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual { width: min(99vw, 430px) !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag { min-height: 28px !important; padding: 6px 9px !important; font-size: 8.5px !important; gap: 5px !important; }
  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag i { width: 14px !important; height: 14px !important; min-width: 14px !important; font-size: 9px !important; }
}

/* Global Peptide Sciences v1.8.4 — full-screen desktop/laptop hero height fix */
:root {
  --gp-topbar-h: 36px;
  --gp-navbar-h: 98px;
}

@media (min-width: 981px) {
  body .alx-hero-section.alx-hero-section--global {
    height: calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)) !important;
    min-height: calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)) !important;
    max-height: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    padding-top: clamp(34px, 5.2vh, 74px) !important;
    padding-bottom: clamp(30px, 4.6vh, 68px) !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-copy,
  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    align-self: center !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(47vw, 740px) !important;
    transform: translate(0, 0) !important;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    padding-top: 30px !important;
    padding-bottom: 28px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
    margin-bottom: 22px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(48px, 4vw, 62px) !important;
    margin-bottom: 18px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    margin-bottom: 18px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
    min-height: 52px !important;
    margin-bottom: 20px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    min-height: 108px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 9px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(45vw, 610px) !important;
  }
}

@media (min-width: 981px) and (min-height: 940px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(60px, 4.4vw, 78px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(49vw, 790px) !important;
  }
}

@media (max-width: 980px) {
  body .alx-hero-section.alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}


/* Global Peptide Sciences v1.8.5 — nav-inner aligned responsive hero fix */
:root {
  --gp-topbar-h: 36px;
  --gp-navbar-h: 98px;
  --gp-page-pad: clamp(72px, 5vw, 112px);
  --gp-hero-gap: clamp(24px, 2.8vw, 54px);
}

@media (min-width: 981px) {
  body .alx-header {
    padding-left: var(--gp-page-pad) !important;
    padding-right: var(--gp-page-pad) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .alx-hero-section.alx-hero-section--global {
    height: calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)) !important;
    min-height: calc(100svh - var(--gp-topbar-h) - var(--gp-navbar-h)) !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: calc(100% - (var(--gp-page-pad) * 2)) !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: clamp(34px, 4.8vh, 72px) !important;
    padding-bottom: clamp(30px, 4vh, 60px) !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr) !important;
    column-gap: var(--gp-hero-gap) !important;
    align-items: center !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    grid-column: 1 !important;
    max-width: min(100%, 640px) !important;
    justify-self: start !important;
    align-self: center !important;
    transform: none !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(50px, 3.85vw, 72px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.068em !important;
    margin-bottom: clamp(18px, 2vh, 26px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    max-width: 570px !important;
    font-size: clamp(15px, 1vw, 18px) !important;
    line-height: 1.48 !important;
    margin-bottom: clamp(18px, 2vh, 26px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
    min-height: 56px !important;
    min-width: 205px !important;
    margin-bottom: clamp(22px, 3vh, 34px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    width: min(100%, 600px) !important;
    margin-bottom: clamp(14px, 2vh, 24px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    min-height: clamp(104px, 12.5vh, 126px) !important;
    padding-left: clamp(14px, 1.4vw, 24px) !important;
    padding-right: clamp(14px, 1.4vw, 24px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article:first-child {
    padding-left: 0 !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
    width: clamp(46px, 4.8vh, 56px) !important;
    height: clamp(46px, 4.8vh, 56px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-note {
    font-size: clamp(10px, .72vw, 12px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    grid-column: 2 !important;
    position: relative !important;
    justify-self: end !important;
    align-self: center !important;
    width: min(100%, 760px) !important;
    max-width: min(49vw, 760px) !important;
    transform: none !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-product {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag {
    min-height: clamp(36px, 4.2vh, 48px) !important;
    padding: clamp(7px, .9vh, 11px) clamp(13px, 1.2vw, 20px) !important;
    font-size: clamp(11px, .82vw, 14px) !important;
    box-shadow: 0 16px 34px rgba(20, 53, 98, .14), inset 0 1px 0 rgba(255,255,255,.96) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--based {
    left: 3% !important;
    top: 30% !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--gmp {
    right: 2% !important;
    top: 46% !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-float-tag--tested {
    left: 6% !important;
    bottom: 15% !important;
  }
}

@media (min-width: 981px) and (max-width: 1360px) {
  :root {
    --gp-page-pad: clamp(34px, 4vw, 64px);
    --gp-hero-gap: clamp(18px, 2.2vw, 34px);
  }

  body .alx-header {
    grid-template-columns: 245px minmax(430px, 1fr) 325px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    grid-template-columns: minmax(0, 0.49fr) minmax(0, 0.51fr) !important;
    padding-top: clamp(28px, 4vh, 46px) !important;
    padding-bottom: clamp(24px, 3.2vh, 42px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(44px, 4.25vw, 58px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    max-width: min(48vw, 600px) !important;
  }
}

@media (min-width: 981px) and (max-height: 760px) {
  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    padding-top: 22px !important;
    padding-bottom: 20px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
    margin-bottom: 18px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(42px, 3.5vw, 56px) !important;
    margin-bottom: 14px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    font-size: 14px !important;
    margin-bottom: 14px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-cta {
    min-height: 48px !important;
    min-width: 178px !important;
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features article {
    min-height: 94px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-feature-icon {
    width: 42px !important;
    height: 42px !important;
    margin-bottom: 7px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    max-width: min(44vw, 570px) !important;
  }
}

@media (max-width: 980px) {
  :root {
    --gp-page-pad: clamp(20px, 5vw, 40px);
  }

  body .alx-hero-section.alx-hero-section--global {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    width: calc(100% - (var(--gp-page-pad) * 2)) !important;
    max-width: 760px !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: clamp(38px, 7vw, 56px) 0 clamp(34px, 7vw, 52px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: clamp(22px, 5vw, 34px) !important;
    align-items: center !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-copy {
    max-width: 680px !important;
    justify-self: center !important;
    text-align: center !important;
    align-items: center !important;
    transform: none !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(40px, 9vw, 68px) !important;
    line-height: 1.05 !important;
    margin-bottom: 18px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-title-line {
    white-space: normal !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-subtitle {
    max-width: 600px !important;
    font-size: clamp(14px, 2.2vw, 17px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    width: min(100%, 620px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(100%, 620px) !important;
    max-width: 620px !important;
    justify-self: center !important;
    transform: none !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 640px) {
  :root { --gp-page-pad: 16px; }

  body .alx-hero-section.alx-hero-section--global .gp-hero-shell {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
    row-gap: 20px !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-eyebrow {
    font-size: 12px !important;
    letter-spacing: .32em !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-title {
    font-size: clamp(36px, 12vw, 52px) !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-features {
    grid-template-columns: 1fr !important;
  }

  body .alx-hero-section.alx-hero-section--global .gp-hero-visual {
    width: min(100%, 430px) !important;
  }
}


/* Global Peptide Sciences v1.8.15 — reference-aligned global product card */
.alx-product-card .alx-product-badges { display: none !important; }
.alx-product-card {
  background: #fff !important;
  border: 1px solid rgba(11, 34, 64, .08) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 34px rgba(15, 46, 82, .07) !important;
}
.alx-product-card:hover,
.alx-product-card:focus-within { transform: translateY(-4px) !important; box-shadow: 0 20px 46px rgba(15, 46, 82, .12) !important; }
.alx-product-card .alx-product-body {
  padding: 18px 18px 20px !important;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%) !important;
}
.alx-product-card .alx-product-body h3 {
  margin: 0 0 10px !important;
  font-family: Manrope, Inter, sans-serif !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  letter-spacing: -.025em !important;
  color: #091b31 !important;
}
.alx-product-card .alx-product-meta { display: none !important; }
.alx-product-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0 0 18px; }
.alx-product-tags span {
  display: inline-flex; align-items: center; min-height: 25px; padding: 4px 10px;
  border-radius: 999px; background: #f3f5f7; color: #66717e;
  font-size: 11px; line-height: 1; font-weight: 600; letter-spacing: -.01em;
}
.alx-product-tags .alx-product-tag--dose {
  color: #0047ff; background: #fff; border: 1px solid rgba(0, 71, 255, .42);
  box-shadow: 0 0 0 2px rgba(0, 71, 255, .06); font-weight: 800;
}
.alx-product-card .alx-product-foot { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: space-between !important; gap: 14px !important; }
.alx-product-card .alx-product-price { margin: 0 !important; color: #0046d8 !important; font-size: clamp(18px, 1.25vw, 23px) !important; font-weight: 800 !important; }
.alx-product-card .alx-product-add {
  width: 44px !important; min-width: 44px !important; height: 44px !important; min-height: 44px !important;
  padding: 0 !important; border-radius: 50% !important; border: 1px solid rgba(14, 48, 84, .12) !important;
  background: #fff !important; color: #102a45 !important; box-shadow: 0 7px 18px rgba(20, 55, 90, .08) !important;
}
.alx-product-card .alx-product-add span { display: none !important; }
.alx-product-card .alx-product-add i { font-size: 19px !important; transform: rotate(0deg) !important; }
.alx-product-card .alx-product-add:hover,
.alx-product-card .alx-product-add:focus-visible { background: #01218c !important; color: #fff !important; transform: translateX(2px) !important; }
@media (max-width: 640px) {
  .alx-product-card .alx-product-body { padding: 15px 15px 17px !important; }
  .alx-product-card .alx-product-add { width: 40px !important; min-width: 40px !important; height: 40px !important; min-height: 40px !important; }
}

/* Global Peptide Sciences v1.8.18 — hero cleanup and product-card alignment */
.gp-home-hero__particles,
.gp-home-hero__dna-svg { display: none !important; }

.alx-product-card .alx-product-price,
.alx-product-card .alx-product-price span,
.alx-product-card .alx-product-price del,
.alx-product-card .alx-product-price ins,
.alx-product-card .price span {
  margin-left: 0 !important;
}

.alx-product-card .alx-product-add {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.alx-product-card .alx-product-add i {
  display: block !important;
  width: 1em !important;
  height: 1em !important;
  line-height: 1 !important;
  margin: 0 !important;
  transform: none !important;
}
.alx-product-card .alx-product-add:hover i,
.alx-product-card .alx-product-add:focus-visible i {
  transform: translateX(1px) !important;
}

.alx-product-card .alx-product-quick {
  font-family: Manrope, Inter, system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
}

.alx-world-product-grid > .alx-world-offer-card--designed,
.alx-world-offer-card--designed {
  align-self: start !important;
  margin-top: 0 !important;
  translate: 0 0 !important;
  transform: none !important;
}

/* Global Peptide Sciences v1.8.19 — mobile product-page spacing and related-card alignment */
@media (max-width: 640px) {
  .alx-product-single--woocommerce {
    gap: clamp(24px, 2vw, 40px) !important;
  }

  .alx-product-card .alx-product-body h3 {
    text-align: left;
  }

  .alx-product-page--woocommerce .alx-related-track .alx-product-add {
    margin-right: 0;
  }
}

/* Global Peptide Sciences v1.8.20 — related-card spacing refinements */
.alx-product-page--woocommerce .alx-related-track .alx-product-foot {
  margin-top: 0 !important;
}

.alx-product-card .alx-product-body {
  padding: 18px 18px 5px !important;
}

.alx-product-tags span {
  border-radius: 6px;
}

/* Global Peptide Sciences v1.8.21 — home product-card mobile alignment */
@media (max-width: 620px) {
  .home .alx-product-card .alx-product-body {
    justify-items: start !important;
    text-align: left !important;
  }

  .home .alx-product-card .alx-product-body h3,
  .home .alx-product-card .alx-product-tags,
  .home .alx-product-card .alx-product-price,
  .home .alx-product-card .alx-product-foot {
    text-align: left !important;
  }
}

@media (max-width: 760px) {
  .home .alx-product-card .alx-product-add {
    margin-right: 0 !important;
  }
}


/* Global Peptide Sciences v1.8.22 — shop mobile alignment and structured side cart */
@media (max-width: 620px) {
  .alx-shop-page .alx-product-card .alx-product-body {
    justify-items: left !important;
    text-align: left !important;
  }
}

.alx-cart-drawer {
  width: min(100%, 460px) !important;
  padding: 30px 24px 24px !important;
  display: flex !important;
  flex-direction: column !important;
}
.alx-cart-drawer > h2 { margin-bottom: 24px !important; }
.alx-cart-drawer-content { min-height: 0; flex: 1; grid-template-rows: minmax(0, 1fr) auto; gap: 18px !important; }
.alx-cart-drawer-lines { max-height: none !important; min-height: 0; gap: 12px !important; padding: 2px 5px 6px 1px !important; scrollbar-width: thin; }
.alx-cart-drawer-line {
  grid-template-columns: 92px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: stretch !important;
  padding: 12px !important;
  border-color: #e7e9ec !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(10, 28, 48, .06);
}
.alx-cart-drawer-thumb { width: 92px !important; height: 108px !important; border: 1px solid #edf0f2; border-radius: 12px !important; background: #f7f9fb !important; }
.alx-cart-drawer-line-copy { align-content: start; gap: 8px !important; }
.alx-cart-drawer-line-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.alx-cart-drawer-name { flex: 1; font-family: Manrope, Inter, sans-serif !important; font-size: 15px !important; line-height: 1.3 !important; font-weight: 800; letter-spacing: -.02em; text-transform: none !important; }
.alx-cart-drawer-remove {
  display: inline-grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; padding: 0;
  border: 1px solid #e4e7ea; border-radius: 9px; color: #6b7280; background: #fff;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.alx-cart-drawer-remove i { font-size: 17px; line-height: 1; }
.alx-cart-drawer-remove:hover, .alx-cart-drawer-remove:focus-visible { color: #c91c1c; border-color: #f1b7b7; background: #fff2f2; transform: translateY(-1px); }
.alx-cart-drawer-remove.is-loading { opacity: .55; pointer-events: none; }
.alx-cart-drawer-meta { color: #68717c; font-size: 11px; line-height: 1.45; }
.alx-cart-drawer-meta dl, .alx-cart-drawer-meta p { margin: 0 !important; }
.alx-cart-drawer-meta dt, .alx-cart-drawer-meta dd { display: inline; margin: 0; }
.alx-cart-drawer-meta dd::after { content: " · "; }
.alx-cart-drawer-line-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; }
.alx-cart-drawer-qty { margin: 0 !important; padding: 5px 8px; border-radius: 6px; color: #4b5563 !important; background: #f2f4f6; font-size: 11px !important; line-height: 1 !important; font-weight: 800 !important; }
.alx-cart-drawer-price { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: flex-end; gap: 5px; text-align: right; }
.alx-cart-drawer-price del { color: #9299a2; font-size: 11px; line-height: 1; }
.alx-cart-drawer-price strong { color: #061d63 !important; font-size: 15px !important; line-height: 1.1; }
.alx-cart-drawer-saving { justify-self: end; margin: -3px 0 0 !important; color: #14833b !important; font-size: 10px !important; line-height: 1.2 !important; font-weight: 800 !important; }
.alx-cart-drawer-summary { gap: 10px !important; padding: 16px 0 0 !important; background: #fff; }
.alx-cart-drawer-summary-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #20262d; font-size: 14px; line-height: 1.3; }
.alx-cart-drawer-summary-row:first-child { padding-bottom: 10px; border-bottom: 1px solid #eceff1; font-size: 16px; }
.alx-cart-drawer-summary-row--saving { color: #14833b; font-size: 13px; }
.alx-cart-drawer-note { margin: 1px 0 2px; color: #7a828c; font-size: 11px; line-height: 1.45; text-align: center; }
.alx-cart-drawer .alx-checkout-btn { display: flex; gap: 8px; margin-top: 2px !important; min-height: 50px; border-radius: 10px; background: #111; }
.alx-cart-drawer .alx-checkout-btn i { font-size: 18px; }
.alx-cart-drawer-view { min-height: 46px !important; border-radius: 10px !important; font-family: Manrope, Inter, sans-serif !important; font-size: 13px !important; font-weight: 800; letter-spacing: 0 !important; text-transform: none !important; }
@media (max-width: 480px) {
  .alx-cart-drawer { padding: 26px 16px 18px !important; }
  .alx-cart-drawer-line { grid-template-columns: 78px minmax(0, 1fr) !important; padding: 10px !important; }
  .alx-cart-drawer-thumb { width: 78px !important; height: 96px !important; }
}


/* Global Peptide Sciences v1.8.23 — single bundle cart request + stable drawer states */
.alx-cart-drawer-content:has([data-alx-cart-drawer-empty]) {
  display: flex !important;
  min-height: 0;
}
.alx-cart-empty {
  width: 100%;
  min-height: clamp(320px, 58vh, 560px);
  padding: 36px 24px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px dashed #d9dde2;
  border-radius: 16px;
  background: #f8f9fa;
  text-align: center;
}
.alx-cart-empty i {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 !important;
  border-radius: 50%;
  color: #111;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, .08);
  font-size: 30px !important;
  line-height: 1;
}
.alx-cart-empty p {
  max-width: 260px;
  margin: 0 !important;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}
.alx-cart-empty .alx-checkout-btn {
  width: auto !important;
  min-width: 170px;
  margin-top: 4px !important;
  padding-inline: 22px;
}
.alx-cart-drawer-line { min-height: 136px; }
.alx-cart-drawer-line-copy { min-height: 110px; }
@media (max-width: 480px) {
  .alx-cart-empty { min-height: calc(100dvh - 150px); padding: 28px 18px !important; }
  .alx-cart-drawer-line { min-height: 122px; }
  .alx-cart-drawer-line-copy { min-height: 100px; }
}

/* Global Peptide Sciences v1.8.24 — merged quantity tiers and stable empty drawer */
.alx-cart-drawer-content--empty {
  display: flex !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}
.alx-cart-drawer-content--empty .alx-cart-empty {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 32px 24px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: #eef0f2;
  pointer-events: none;
}
.alx-cart-drawer-content--empty .alx-cart-empty i {
  width: 76px;
  height: 76px;
  border: 1px solid #e8ebee;
  background: #f7f8f9;
  box-shadow: none;
}
.alx-cart-drawer-content--empty .alx-cart-empty p {
  color: #374151;
  font-size: 15px;
  font-weight: 700;
}
.alx-cart-drawer-content--empty .alx-cart-empty .alx-checkout-btn {
  width: min(100%, 220px) !important;
  justify-content: center;
}
@media (max-width: 480px) {
  .alx-cart-drawer-content--empty .alx-cart-empty { padding: 24px 16px !important; }
}

/* v17 — structured side-cart variation, add-on and pricing breakdown. */
.alx-cart-drawer-line { min-height: 0 !important; align-items: stretch; }
.alx-cart-drawer-line-copy { min-height: 0 !important; }
.alx-cart-drawer-variation { display: flex; flex-wrap: wrap; gap: 5px 10px; color: #626b75; font-size: 11px; line-height: 1.45; }
.alx-cart-drawer-variation b { color: #252b32; font-weight: 800; }
.alx-cart-drawer-addons { display: grid; gap: 6px; padding: 9px 10px; border: 1px solid #e6eaee; border-radius: 9px; background: #f8fafb; }
.alx-cart-drawer-addons-title { margin: 0 !important; color: #111 !important; font-size: 10px !important; line-height: 1.2 !important; font-weight: 900 !important; letter-spacing: .08em; text-transform: uppercase; }
.alx-cart-drawer-addon-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; color: #59616b; font-size: 11px; line-height: 1.4; }
.alx-cart-drawer-addon-row span { min-width: 0; margin: 0 !important; color: inherit !important; font-size: inherit !important; overflow-wrap: anywhere; }
.alx-cart-drawer-addon-row b { color: #242a31; font-weight: 800; }
.alx-cart-drawer-addon-row strong { flex: 0 0 auto; color: #111 !important; font-size: 11px !important; line-height: 1.35 !important; }
.alx-cart-drawer-costs { display: grid; gap: 5px; margin-top: 2px; padding-top: 9px; border-top: 1px solid #edf0f2; }
.alx-cart-drawer-costs > div { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; color: #68717b; font-size: 11px; line-height: 1.35; }
.alx-cart-drawer-costs span { margin: 0 !important; color: inherit !important; font-size: inherit !important; }
.alx-cart-drawer-costs strong { color: #20262d !important; font-size: 11px !important; line-height: 1.35 !important; white-space: nowrap; }
.alx-cart-drawer-costs .is-saving { color: #14833b; }
.alx-cart-drawer-costs .is-saving strong { color: #14833b !important; }
.alx-cart-drawer-costs .is-total { margin-top: 2px; padding-top: 7px; border-top: 1px dashed #dce1e5; color: #111; font-size: 13px; font-weight: 800; }
.alx-cart-drawer-costs .is-total strong { color: #061d63 !important; font-size: 15px !important; }
@media (max-width: 430px) {
  .alx-cart-drawer-line { grid-template-columns: 72px minmax(0, 1fr) !important; }
  .alx-cart-drawer-thumb { width: 72px !important; height: 90px !important; }
  .alx-cart-drawer-addon-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
}

/* Side cart: compact product quick summary. */
.alx-cart-drawer-line {
  grid-template-columns: 92px minmax(0, 1fr) !important;
  align-items: start !important;
  min-height: 124px !important;
  padding: 12px !important;
}
.alx-cart-drawer-thumb {
  width: 92px !important;
  height: 104px !important;
}
.alx-cart-drawer-line-copy {
  display: grid !important;
  align-content: start !important;
  gap: 7px !important;
  min-width: 0;
}
.alx-cart-drawer-line-head { min-height: 34px; }
.alx-cart-drawer-quick-summary {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.alx-cart-drawer-quick-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}
.alx-cart-drawer-quick-row span {
  min-width: 0;
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  overflow-wrap: anywhere;
}
.alx-cart-drawer-quick-row strong {
  color: #20262d !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  white-space: nowrap;
}
.alx-cart-drawer-quick-row.is-saving,
.alx-cart-drawer-quick-row.is-saving strong {
  color: #14833b !important;
}
.alx-cart-drawer-quick-row.is-addon {
  color: #30363d;
}
.alx-cart-drawer-quick-row.is-addon strong {
  color: #20262d !important;
}
@media (max-width: 480px) {
  .alx-cart-drawer-line {
    grid-template-columns: 78px minmax(0, 1fr) !important;
    min-height: 112px !important;
    padding: 10px !important;
  }
  .alx-cart-drawer-thumb {
    width: 78px !important;
    height: 92px !important;
  }
  .alx-cart-drawer-name { font-size: 14px !important; }
  .alx-cart-drawer-quick-row,
  .alx-cart-drawer-quick-row strong { font-size: 11px !important; }
}

/* Global Peptide Sciences final — reliable cart summary and drawer layout. */
.alx-cart-drawer-content {
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) auto !important;
  min-height: 0 !important;
  overflow: hidden;
}
.alx-cart-drawer-lines {
  display: grid !important;
  align-content: start;
  overflow-y: auto !important;
  overscroll-behavior: contain;
}
.alx-cart-drawer-line {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  min-height: 0 !important;
  height: auto !important;
  gap: 13px !important;
  padding: 12px !important;
  align-items: start !important;
  border: 1px solid #e7eaee !important;
  border-radius: 14px !important;
  box-shadow: 0 5px 18px rgba(17, 24, 39, .055) !important;
}
.alx-cart-drawer-thumb {
  width: 88px !important;
  height: 104px !important;
  align-self: start;
  overflow: hidden;
  border-radius: 11px !important;
  background: #f7f8fa !important;
}
.alx-cart-drawer-thumb img { width: 100%; height: 100%; object-fit: contain; }
.alx-cart-drawer-line-copy {
  display: grid !important;
  min-width: 0;
  min-height: 104px !important;
  align-content: start !important;
  gap: 8px !important;
}
.alx-cart-drawer-line-head { min-height: 32px !important; }
.alx-cart-drawer-name {
  color: #111 !important;
  font-size: 14px !important;
  line-height: 1.28 !important;
  font-weight: 850 !important;
}
.alx-cart-drawer-quick-summary { display: grid; gap: 5px; }
.alx-cart-drawer-variation-line {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  margin: -2px 0 1px;
}
.alx-cart-drawer-variation-line span {
  margin: 0 !important;
  color: #727984 !important;
  font-size: 10px !important;
  line-height: 1.25 !important;
  font-weight: 700;
}
.alx-cart-drawer-quick-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: baseline !important;
  color: #68717d !important;
  font-size: 11.5px !important;
  line-height: 1.35 !important;
}
.alx-cart-drawer-quick-row span,
.alx-cart-drawer-quick-row strong {
  margin: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
.alx-cart-drawer-quick-row span { min-width: 0; overflow-wrap: anywhere; }
.alx-cart-drawer-quick-row strong { color: #20262d !important; white-space: nowrap; font-weight: 850 !important; }
.alx-cart-drawer-quick-row.is-saving,
.alx-cart-drawer-quick-row.is-saving strong { color: #14833b !important; }
.alx-cart-drawer-quick-row.is-addon span { color: #303740 !important; }
.alx-cart-drawer-quick-row.is-line-total {
  margin-top: 3px;
  padding-top: 7px;
  border-top: 1px solid #e9ecef;
  color: #111 !important;
  font-size: 12px !important;
  font-weight: 850;
}
.alx-cart-drawer-quick-row.is-line-total strong { color: #061d63 !important; font-size: 13px !important; }
.alx-cart-drawer-summary {
  position: relative;
  z-index: 2;
  padding-top: 14px !important;
  border-top: 1px solid #e9ecef;
  box-shadow: 0 -12px 24px rgba(255,255,255,.94);
}

.alx-cart-drawer-content--empty {
  display: flex !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty {
  position: static !important;
  display: flex !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 360px !important;
  margin: 0 !important;
  padding: 36px 24px !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: center;
}
.alx-cart-drawer-content--empty .alx-cart-empty::before { display: none !important; }
.alx-cart-empty-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 8px;
  border: 1px solid #e4e7eb;
  border-radius: 22px;
  color: #111;
  background: #f7f8f9;
}
.alx-cart-empty-icon i {
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 31px !important;
  line-height: 1 !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty > strong {
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}
.alx-cart-drawer-content--empty .alx-cart-empty p {
  max-width: 285px;
  color: #707781 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty .alx-checkout-btn {
  width: min(100%, 230px) !important;
  margin-top: 9px !important;
  justify-content: center;
}
@media (max-width: 480px) {
  .alx-cart-drawer-line { grid-template-columns: 72px minmax(0, 1fr) !important; gap: 10px !important; padding: 10px !important; }
  .alx-cart-drawer-thumb { width: 72px !important; height: 88px !important; }
  .alx-cart-drawer-line-copy { min-height: 88px !important; }
  .alx-cart-drawer-quick-row { font-size: 10.75px !important; gap: 7px !important; }
  .alx-cart-drawer-content--empty .alx-cart-empty { min-height: calc(100dvh - 170px) !important; padding: 24px 16px !important; }
}

/* Global Peptide Sciences final compact side-cart cards. */
.alx-cart-drawer {
  width: min(100%, 430px) !important;
  padding: 24px 18px 18px !important;
}
.alx-cart-drawer > h2 {
  margin-bottom: 16px !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
}
.alx-cart-drawer-content { gap: 12px !important; }
.alx-cart-drawer-lines {
  gap: 8px !important;
  padding: 0 3px 4px 0 !important;
}
.alx-cart-drawer-line {
  grid-template-columns: 68px minmax(0, 1fr) !important;
  gap: 10px !important;
  padding: 9px !important;
  border-radius: 11px !important;
  box-shadow: 0 2px 10px rgba(17, 24, 39, .045) !important;
}
.alx-cart-drawer-thumb {
  width: 68px !important;
  height: 78px !important;
  border-radius: 8px !important;
}
.alx-cart-drawer-line-copy {
  min-height: 78px !important;
  gap: 4px !important;
}
.alx-cart-drawer-line-head {
  min-height: 26px !important;
  gap: 7px !important;
}
.alx-cart-drawer-name {
  font-size: 13px !important;
  line-height: 1.22 !important;
  letter-spacing: -.01em !important;
}
.alx-cart-drawer-remove {
  flex-basis: 27px !important;
  width: 27px !important;
  height: 27px !important;
  border-radius: 7px !important;
}
.alx-cart-drawer-remove i { font-size: 14px !important; }
.alx-cart-drawer-quick-summary { gap: 3px !important; }
.alx-cart-drawer-variation-line {
  gap: 3px 6px !important;
  margin: -1px 0 0 !important;
}
.alx-cart-drawer-variation-line span {
  font-size: 9.5px !important;
  line-height: 1.2 !important;
}
.alx-cart-drawer-quick-row {
  gap: 7px !important;
  font-size: 10.5px !important;
  line-height: 1.25 !important;
}
.alx-cart-drawer-quick-row.is-line-total {
  margin-top: 2px !important;
  padding-top: 5px !important;
  font-size: 11px !important;
}
.alx-cart-drawer-quick-row.is-line-total strong {
  font-size: 12px !important;
}
.alx-cart-drawer-summary {
  gap: 7px !important;
  padding-top: 11px !important;
}
.alx-cart-drawer-summary-row { font-size: 12.5px !important; }
.alx-cart-drawer-summary-row:first-child {
  padding-bottom: 7px !important;
  font-size: 14px !important;
}
.alx-cart-drawer-note {
  margin: 0 !important;
  font-size: 10px !important;
}
.alx-cart-drawer .alx-checkout-btn {
  min-height: 44px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}
.alx-cart-drawer-view {
  min-height: 40px !important;
  border-radius: 8px !important;
  font-size: 12px !important;
}
@media (max-width: 480px) {
  .alx-cart-drawer { padding: 20px 13px 14px !important; }
  .alx-cart-drawer > h2 { margin-bottom: 13px !important; font-size: 20px !important; }
  .alx-cart-drawer-line {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 8px !important;
  }
  .alx-cart-drawer-thumb {
    width: 62px !important;
    height: 72px !important;
  }
  .alx-cart-drawer-line-copy { min-height: 72px !important; }
  .alx-cart-drawer-name { font-size: 12.5px !important; }
  .alx-cart-drawer-quick-row { font-size: 10px !important; }
}

/* Side-cart showcase card — compact horizontal structure. */
.alx-cart-drawer-line--showcase {
  display: grid !important;
  grid-template-columns: 84px minmax(0, 1fr) 104px !important;
  grid-template-areas:
    "thumb primary actions"
    "thumb addons addons";
  align-items: stretch !important;
  gap: 0 14px !important;
  min-height: 132px !important;
  padding: 14px !important;
  border: 1px solid #e7eaee !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 5px 16px rgba(17, 24, 39, .07) !important;
  overflow: hidden;
}
.alx-cart-drawer-line--showcase.is-updating { opacity: .6; pointer-events: none; }
.alx-cart-drawer-line--showcase .alx-cart-drawer-thumb {
  grid-area: thumb;
  align-self: center;
  width: 84px !important;
  height: 108px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: #f5f7f9 !important;
}
.alx-cart-drawer-primary {
  grid-area: primary;
  min-width: 0;
  padding: 5px 0 10px;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-name {
  display: block;
  margin: 0 0 13px;
  color: #101318 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
  letter-spacing: -.02em !important;
}
.alx-cart-drawer-product-qty {
  margin-bottom: 7px;
  color: #69727e;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 750;
}
.alx-cart-drawer-saving-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #16843d;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 800;
}
.alx-cart-drawer-saving-line strong {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 8px;
  border-radius: 7px;
  color: #16843d !important;
  background: #eaf7ed;
  font-size: 10.5px !important;
  line-height: 1 !important;
}
.alx-cart-drawer-actions {
  grid-area: actions;
  position: relative;
  display: flex;
  min-width: 0;
  padding: 4px 0 10px 14px;
  border-left: 1px solid #edf0f2;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px !important;
  height: 28px !important;
  flex-basis: 28px !important;
  border: 0 !important;
  background: transparent !important;
  color: #6e7782 !important;
}
.alx-cart-drawer-total {
  margin-top: 22px;
  color: #071e66 !important;
  font-size: 19px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.alx-cart-drawer-stepper {
  display: grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  min-height: 34px;
  border: 1px solid #dfe4e9;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}
.alx-cart-drawer-stepper button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #12161b;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}
.alx-cart-drawer-stepper button:hover { background: #f4f6f8; }
.alx-cart-drawer-stepper output {
  color: #111;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-align: center;
}
.alx-cart-drawer-addon-strip {
  grid-area: addons;
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 0 0;
  border-top: 1px dashed #dfe3e7;
}
.alx-cart-drawer-addon-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: #303740;
  font-size: 11px;
  line-height: 1.35;
}
.alx-cart-drawer-addon-item span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  overflow-wrap: anywhere;
}
.alx-cart-drawer-addon-item i { color: #52606d; font-size: 14px; }
.alx-cart-drawer-addon-item strong {
  color: #20262d !important;
  font-size: 11px !important;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .alx-cart-drawer-line--showcase {
    grid-template-columns: 70px minmax(0, 1fr) 86px !important;
    min-height: 116px !important;
    gap: 0 10px !important;
    padding: 10px !important;
  }
  .alx-cart-drawer-line--showcase .alx-cart-drawer-thumb {
    width: 70px !important;
    height: 92px !important;
  }
  .alx-cart-drawer-line--showcase .alx-cart-drawer-name {
    margin-bottom: 9px;
    font-size: 12.5px !important;
  }
  .alx-cart-drawer-product-qty,
  .alx-cart-drawer-saving-line { font-size: 10px; }
  .alx-cart-drawer-saving-line strong { min-height: 20px; padding: 3px 6px; font-size: 9px !important; }
  .alx-cart-drawer-actions { padding-left: 9px; }
  .alx-cart-drawer-total { font-size: 15px !important; }
  .alx-cart-drawer-stepper { grid-template-columns: 25px 27px 25px; min-height: 30px; }
  .alx-cart-drawer-stepper button { width: 25px; height: 28px; font-size: 15px; }
  .alx-cart-drawer-stepper output { font-size: 10.5px; }
  .alx-cart-drawer-addon-item { font-size: 10px; }
  .alx-cart-drawer-addon-item strong { font-size: 10px !important; }
}


/* Side-cart single-quantity / no-discount state. */
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-primary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-name {
  margin-bottom: 8px;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-product-qty {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 24px;
  margin-bottom: 0;
  padding: 4px 8px;
  border: 1px solid #e3e7eb;
  border-radius: 7px;
  background: #f7f8fa;
  color: #59636f;
  line-height: 1;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-actions {
  justify-content: center;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-total {
  margin-top: 20px;
  margin-bottom: 8px;
}
.alx-cart-drawer-line--showcase.no-bulk-saving:not(:has(.alx-cart-drawer-addon-strip)) {
  min-height: 118px !important;
}
@media (max-width: 480px) {
  .alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-product-qty {
    min-height: 21px;
    padding: 3px 6px;
    font-size: 9.5px;
  }
  .alx-cart-drawer-line--showcase.no-bulk-saving:not(:has(.alx-cart-drawer-addon-strip)) {
    min-height: 104px !important;
  }
}

/* Final side-cart title quantity, empty state, and checkout alignment. */
.alx-cart-drawer-line--showcase .alx-cart-drawer-name {
  display: flex !important;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
.alx-cart-drawer-product-name {
  min-width: 0;
  overflow-wrap: anywhere;
}
.alx-cart-drawer-name-qty {
  flex: 0 0 auto;
  color: #747d88;
  font-size: .78em;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
.alx-cart-drawer-product-qty { display: none !important; }
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-name {
  margin-bottom: 0;
}

.alx-cart-drawer-content--empty {
  display: grid !important;
  place-items: center;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  padding: 20px 0 8px !important;
  overflow: auto;
}
.alx-cart-drawer-content--empty .alx-cart-empty {
  position: relative;
  display: flex !important;
  width: min(100%, 330px);
  min-height: auto !important;
  margin: auto !important;
  padding: 30px 24px 26px !important;
  gap: 10px;
  border: 1px solid #e8ebef !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 8px 28px rgba(17, 24, 39, .06);
}
.alx-cart-drawer-content--empty .alx-cart-empty::before { display: none !important; }
.alx-cart-drawer-content--empty .alx-cart-empty-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 4px;
  border-radius: 50%;
  background: #f4f5f6;
}
.alx-cart-drawer-content--empty .alx-cart-empty-icon i {
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #111;
  font-size: 27px !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty > strong {
  color: #111;
  font-family: Manrope, Inter, sans-serif;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -.02em;
}
.alx-cart-drawer-content--empty .alx-cart-empty p {
  max-width: 245px;
  color: #69727d;
  font-size: 12.5px;
  line-height: 1.5;
}
.alx-cart-drawer-content--empty .alx-cart-empty .alx-checkout-btn {
  display: inline-flex !important;
  width: 100% !important;
  max-width: 220px;
  min-height: 44px;
  margin-top: 8px !important;
  align-items: center;
  justify-content: center !important;
  gap: 7px;
  text-align: center !important;
}
.alx-cart-drawer .alx-checkout-btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  text-align: center !important;
}
.alx-cart-drawer .alx-checkout-btn i {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .alx-cart-drawer-content--empty { padding: 14px 0 4px !important; }
  .alx-cart-drawer-content--empty .alx-cart-empty {
    width: 100%;
    padding: 26px 18px 22px !important;
  }
  .alx-cart-drawer-content--empty .alx-cart-empty-icon {
    width: 58px;
    height: 58px;
  }
}

/* Cart quantity-one label and stable add-on price alignment. */
.alx-cart-drawer-single-qty {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
  color: #69727e;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
}
.alx-cart-drawer-single-qty span {
  color: #7b8490;
  font-size: .92em;
  font-weight: 600;
  white-space: nowrap;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-primary {
  justify-content: center;
}
.alx-cart-drawer-addon-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}
.alx-cart-drawer-addon-item > span {
  flex: 1 1 auto;
  min-width: 0;
}
.alx-cart-drawer-addon-item > strong {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center;
  margin-left: auto;
  white-space: nowrap !important;
  word-break: normal !important;
}
.alx-cart-drawer-addon-item > strong .woocommerce-Price-amount,
.alx-cart-drawer-addon-item > strong .woocommerce-Price-currencySymbol {
  white-space: nowrap !important;
}
@media (max-width: 480px) {
  .alx-cart-drawer-single-qty {
    margin-top: 5px;
    font-size: 10px;
  }
  .alx-cart-drawer-addon-item {
    gap: 7px !important;
  }
}

/* Cart drawer final visual correction — compact cards, stable empty state and footer. */
.alx-cart-drawer-content--empty {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px 12px !important;
  overflow-y: auto !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty {
  display: flex !important;
  flex: 0 1 100% !important;
  width: 100% !important;
  max-width: 360px !important;
  min-height: 0 !important;
  margin: auto !important;
  padding: 30px 24px 24px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid #e3e7eb !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05) !important;
  text-align: center !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty-icon {
  width: 58px !important;
  height: 58px !important;
  margin: 0 0 4px !important;
  border: 1px solid #e2e6ea !important;
  border-radius: 50% !important;
  background: #f6f7f8 !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty-icon i {
  position: static !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #111 !important;
  font-size: 24px !important;
  line-height: 1 !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty > strong {
  margin: 2px 0 0 !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty p {
  max-width: 255px !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty .alx-checkout-btn {
  position: relative !important;
  display: flex !important;
  width: 100% !important;
  max-width: 240px !important;
  min-height: 44px !important;
  margin: 8px 0 0 !important;
  padding: 0 42px 0 18px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  text-align: center !important;
  overflow: hidden !important;
}
.alx-cart-drawer-content--empty .alx-cart-empty .alx-checkout-btn i {
  position: absolute !important;
  top: 50% !important;
  right: 15px !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 17px !important;
  line-height: 1 !important;
}

.alx-cart-drawer-line--showcase {
  grid-template-columns: 82px minmax(0, 1fr) 102px !important;
  gap: 0 12px !important;
  min-height: 126px !important;
  padding: 12px !important;
  border-radius: 13px !important;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-thumb {
  width: 82px !important;
  height: 102px !important;
}
.alx-cart-drawer-primary {
  padding: 4px 0 8px !important;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-name {
  margin: 0 0 7px !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}
.alx-cart-drawer-single-qty {
  margin-top: 3px !important;
  font-size: 10.5px !important;
}
.alx-cart-drawer-saving-line {
  gap: 6px !important;
  font-size: 10.5px !important;
}
.alx-cart-drawer-saving-line strong {
  min-height: 21px !important;
  padding: 3px 7px !important;
  font-size: 9.5px !important;
}
.alx-cart-drawer-actions {
  padding: 3px 0 7px 11px !important;
  gap: 7px !important;
}
.alx-cart-drawer-total {
  margin-top: 19px !important;
  font-size: 17px !important;
}
.alx-cart-drawer-stepper {
  grid-template-columns: 27px 30px 27px !important;
  min-height: 32px !important;
}
.alx-cart-drawer-stepper button {
  width: 27px !important;
  height: 30px !important;
}
.alx-cart-drawer-addon-strip {
  gap: 4px !important;
  padding-top: 8px !important;
}
.alx-cart-drawer-addon-item {
  grid-template-columns: minmax(0, 1fr) max-content !important;
  font-size: 10.5px !important;
}
.alx-cart-drawer-addon-item > strong,
.alx-cart-drawer-addon-item > strong * {
  margin: 0 !important;
  white-space: nowrap !important;
  letter-spacing: 0 !important;
}
.alx-cart-drawer-addon-item .woocommerce-Price-currencySymbol {
  margin-right: 0 !important;
}

.alx-cart-drawer-summary {
  display: grid !important;
  gap: 8px !important;
  padding: 12px 0 0 !important;
}
.alx-cart-drawer-note {
  margin: 0 0 2px !important;
  text-align: center !important;
  font-size: 10px !important;
  line-height: 1.35 !important;
}
.alx-cart-drawer-summary .alx-checkout-btn {
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 44px !important;
  border-radius: 8px !important;
  justify-content: center !important;
  text-align: center !important;
}
.alx-cart-drawer-summary .alx-checkout-btn i {
  right: 16px !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 17px !important;
}
.alx-cart-drawer-view {
  min-height: 40px !important;
  margin: 0 !important;
  border-radius: 8px !important;
}

@media (max-width: 480px) {
  .alx-cart-drawer-content--empty { padding: 18px 8px !important; }
  .alx-cart-drawer-content--empty .alx-cart-empty { padding: 26px 18px 20px !important; }
  .alx-cart-drawer-line--showcase {
    grid-template-columns: 70px minmax(0, 1fr) 90px !important;
    gap: 0 9px !important;
    min-height: 112px !important;
    padding: 10px !important;
  }
  .alx-cart-drawer-line--showcase .alx-cart-drawer-thumb {
    width: 70px !important;
    height: 88px !important;
  }
  .alx-cart-drawer-line--showcase .alx-cart-drawer-name { font-size: 12px !important; }
  .alx-cart-drawer-total { font-size: 15px !important; }
  .alx-cart-drawer-addon-item { font-size: 9.5px !important; }
  .alx-cart-drawer-addon-item > strong { font-size: 9.5px !important; }
}

/* Final low-quantity side-cart balance: remove unused centre-column space. */
.alx-cart-drawer-line--showcase.no-bulk-saving {
  min-height: 112px !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-primary {
  display: grid !important;
  grid-auto-rows: max-content;
  align-content: center !important;
  justify-content: stretch !important;
  row-gap: 5px;
  min-height: 0 !important;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-name {
  align-self: auto !important;
  margin: 0 !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-single-qty {
  align-self: auto !important;
  margin: 0 !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-actions {
  justify-content: center !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-total {
  margin-top: 12px !important;
  margin-bottom: 6px !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-thumb {
  height: 94px !important;
}
.alx-cart-drawer-line--showcase.no-bulk-saving:has(.alx-cart-drawer-addon-strip) {
  min-height: 118px !important;
}

@media (max-width: 480px) {
  .alx-cart-drawer-line--showcase.no-bulk-saving {
    min-height: 102px !important;
  }
  .alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-thumb {
    height: 82px !important;
  }
  .alx-cart-drawer-line--showcase.no-bulk-saving:has(.alx-cart-drawer-addon-strip) {
    min-height: 108px !important;
  }
}


/* Final cart drawer header spacing and typography refinements. */
.alx-cart-drawer-lines {
  margin-top: 18px !important;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-remove {
  top: 2px !important;
  right: 2px !important;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-actions {
  padding-top: 7px !important;
}
.alx-cart-drawer-line--showcase .alx-cart-drawer-total {
  margin-top: 22px !important;
}
.alx-cart-drawer-summary .alx-checkout-btn,
.alx-cart-drawer-content--empty .alx-cart-empty .alx-checkout-btn {
  font-family: Manrope, Inter, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
@media (max-width: 480px) {
  .alx-cart-drawer-lines {
    margin-top: 14px !important;
  }
  .alx-cart-drawer-line--showcase .alx-cart-drawer-remove {
    top: 3px !important;
    right: 1px !important;
  }
}

/* Final side-cart alignment refinements */
.alx-cart-drawer-line--showcase.no-bulk-saving .alx-cart-drawer-actions {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
}

.alx-cart-drawer-primary {
    align-content: center;
}


/* Resources navigation dropdown */
.alx-nav-dropdown {
    position: relative;
    display: flex;
    align-items: stretch;
}
.alx-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}
.alx-nav-dropdown-toggle i {
    font-size: 16px;
    transition: transform .2s ease;
}
.alx-nav-dropdown.is-active .alx-nav-dropdown-toggle,
.alx-nav-dropdown:hover .alx-nav-dropdown-toggle,
.alx-nav-dropdown:focus-within .alx-nav-dropdown-toggle {
    color: #079fe3;
}
.alx-nav-dropdown:hover .alx-nav-dropdown-toggle i,
.alx-nav-dropdown:focus-within .alx-nav-dropdown-toggle i {
    transform: rotate(180deg);
}
.alx-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 120;
    display: grid;
    min-width: 210px;
    padding: 8px;
    border: 1px solid #dfe5eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(10, 31, 49, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.alx-nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 16px;
}
.alx-nav-dropdown:hover .alx-nav-dropdown-menu,
.alx-nav-dropdown:focus-within .alx-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.alx-nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 6px;
    color: #111;
    text-decoration: none;
    font: 700 13px/1.2 Manrope, Inter, sans-serif;
}
.alx-nav-dropdown-menu a i { color: #079fe3; font-size: 18px; }
.alx-nav-dropdown-menu a:hover,
.alx-nav-dropdown-menu a:focus-visible,
.alx-nav-dropdown-menu a[aria-current="page"] {
    background: #eef8fd;
    color: #057fbc;
    outline: none;
}
.alx-mobile-nav-group {
    width: 100%;
    border: 0;
}
.alx-mobile-nav-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    list-style: none;
}
.alx-mobile-nav-group summary::-webkit-details-marker { display: none; }
.alx-mobile-nav-group summary i { transition: transform .2s ease; }
.alx-mobile-nav-group[open] summary i { transform: rotate(180deg); }
.alx-mobile-nav-submenu {
    display: grid;
    gap: 2px;
    margin-top: 8px;
    padding: 6px 0 4px 14px;
    border-left: 2px solid #079fe3;
}
.alx-mobile-nav-submenu a {
    padding-block: 9px !important;
    font-size: .92em !important;
}


/* Resources trigger must be visually identical to every primary navigation link. */
@media (min-width: 981px) {
    body .alx-header .alx-nav-dropdown-toggle.alx-nav-link {
        height: var(--gp-header-h) !important;
        padding: 0 !important;
        color: #101722 !important;
        font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        font-style: normal !important;
        letter-spacing: .025em !important;
        line-height: 1 !important;
        text-transform: uppercase !important;
    }
    body .alx-header .alx-nav-dropdown-toggle.alx-nav-link span {
        font: inherit !important;
        letter-spacing: inherit !important;
        text-transform: inherit !important;
    }
    body .alx-header .alx-nav-dropdown-toggle.alx-nav-link i {
        color: currentColor !important;
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    body .alx-header .alx-nav-dropdown.is-active .alx-nav-dropdown-toggle.alx-nav-link,
    body .alx-header .alx-nav-dropdown:hover .alx-nav-dropdown-toggle.alx-nav-link,
    body .alx-header .alx-nav-dropdown:focus-within .alx-nav-dropdown-toggle.alx-nav-link {
        color: #079fe3 !important;
    }
}

/* Final Resources navigation spacing and mobile menu refinements */
.alx-nav-dropdown-menu {
    top: calc(100% + 4px) !important;
}
.alx-nav-dropdown-menu::before {
    height: 7px !important;
}

@media (max-width: 980px) {
    .alx-mobile-menu {
        gap: 0 !important;
        max-height: calc(100dvh - var(--alx-alert-h) - var(--alx-header-h)) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        padding-top: 10px !important;
        padding-bottom: 22px !important;
    }
    .alx-mobile-menu > a,
    .alx-mobile-nav-group > summary {
        min-height: 52px;
        padding: 15px 2px !important;
        border-bottom: 1px solid var(--alx-line) !important;
        color: #111 !important;
        font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        letter-spacing: .025em !important;
        text-align: left !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
    }
    .alx-mobile-nav-group > summary i {
        flex: 0 0 auto;
        margin-left: 16px;
        color: #111;
        font-size: 19px;
    }
    .alx-mobile-nav-group[open] > summary {
        color: #079fe3 !important;
        border-bottom-color: transparent !important;
    }
    .alx-mobile-nav-group[open] > summary i {
        color: #079fe3;
    }
    .alx-mobile-nav-submenu {
        gap: 0 !important;
        margin: 0 0 8px !important;
        padding: 2px 0 8px 18px !important;
        border-left: 2px solid #079fe3 !important;
        background: #f7fafc;
    }
    .alx-mobile-nav-submenu a {
        min-height: 44px !important;
        padding: 12px 14px !important;
        border-bottom: 1px solid #e7edf2 !important;
        color: #364250 !important;
        font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        letter-spacing: .01em !important;
        text-align: left !important;
        text-transform: none !important;
    }
    .alx-mobile-nav-submenu a:last-child {
        border-bottom: 0 !important;
    }
    .alx-mobile-nav-submenu a[aria-current="page"] {
        color: #079fe3 !important;
        background: #eef8fd !important;
    }
}

/* Mobile navigation panel — compact site-consistent treatment */
@media (max-width: 980px) {
    .alx-mobile-menu {
        top: calc(var(--alx-alert-h) + var(--alx-header-h) + 8px) !important;
        right: max(12px, var(--alx-edge)) !important;
        left: max(12px, var(--alx-edge)) !important;
        width: auto !important;
        max-height: calc(100dvh - var(--alx-alert-h) - var(--alx-header-h) - 24px) !important;
        gap: 6px !important;
        padding: 10px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border: 1px solid #dfe5ea !important;
        border-radius: 10px !important;
        background: #fff !important;
        box-shadow: 0 18px 50px rgba(17, 24, 39, .16) !important;
    }

    .alx-mobile-menu > a,
    .alx-mobile-nav-group > summary {
        position: relative;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 48px !important;
        margin: 0 !important;
        padding: 12px 42px 12px 14px !important;
        border: 1px solid transparent !important;
        border-radius: 7px !important;
        background: transparent !important;
        color: #171717 !important;
        font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        text-transform: none !important;
        cursor: pointer;
    }

    .alx-mobile-menu > a::after {
        content: "\ea6c";
        position: absolute;
        right: 14px;
        top: 50%;
        color: #7b8794;
        font-family: "remixicon" !important;
        font-size: 18px;
        font-weight: 400;
        transform: translateY(-50%);
    }

    .alx-mobile-menu > a:hover,
    .alx-mobile-menu > a:focus-visible,
    .alx-mobile-nav-group > summary:hover,
    .alx-mobile-nav-group > summary:focus-visible {
        border-color: #d8e1e8 !important;
        background: #f6f8fa !important;
        color: #111 !important;
        outline: none !important;
    }

    .alx-mobile-menu > a[aria-current="page"] {
        border-color: rgba(7, 159, 227, .28) !important;
        background: #eef8fd !important;
        color: #057eb5 !important;
    }

    .alx-mobile-menu > a[aria-current="page"]::after {
        color: #079fe3;
    }

    .alx-mobile-nav-group {
        margin: 0 !important;
        border: 0 !important;
        border-radius: 7px !important;
        background: transparent !important;
        overflow: hidden;
    }

    .alx-mobile-nav-group > summary {
        padding-right: 14px !important;
        list-style: none;
    }

    .alx-mobile-nav-group > summary i {
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        margin-left: auto !important;
        border: 1px solid #dfe5ea;
        border-radius: 6px;
        color: #4b5563 !important;
        font-size: 17px !important;
        transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .alx-mobile-nav-group[open] {
        border: 1px solid #dfe5ea !important;
        background: #f8fafb !important;
    }

    .alx-mobile-nav-group[open] > summary {
        border: 0 !important;
        border-radius: 0 !important;
        background: #fff !important;
        color: #111 !important;
    }

    .alx-mobile-nav-group[open] > summary i {
        border-color: #111 !important;
        background: #111 !important;
        color: #fff !important;
        transform: rotate(180deg);
    }

    .alx-mobile-nav-submenu {
        display: grid !important;
        gap: 4px !important;
        margin: 0 !important;
        padding: 6px !important;
        border: 0 !important;
        background: transparent !important;
    }

    .alx-mobile-nav-submenu a {
        position: relative;
        display: flex !important;
        align-items: center !important;
        min-height: 42px !important;
        padding: 10px 36px 10px 12px !important;
        border: 0 !important;
        border-radius: 6px !important;
        background: #fff !important;
        color: #364250 !important;
        font-family: "Plus Jakarta Sans", system-ui, sans-serif !important;
        font-size: 13px !important;
        font-weight: 650 !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        text-transform: none !important;
    }

    .alx-mobile-nav-submenu a::after {
        content: "\ea6c";
        position: absolute;
        right: 12px;
        top: 50%;
        color: #8b96a3;
        font-family: "remixicon" !important;
        font-size: 16px;
        transform: translateY(-50%);
    }

    .alx-mobile-nav-submenu a:hover,
    .alx-mobile-nav-submenu a:focus-visible {
        background: #eef3f6 !important;
        color: #111 !important;
        outline: none !important;
    }

    .alx-mobile-nav-submenu a[aria-current="page"] {
        background: #e9f7fd !important;
        color: #057eb5 !important;
        box-shadow: inset 3px 0 0 #079fe3;
    }
}

@media (max-width: 420px) {
    .alx-mobile-menu {
        right: 10px !important;
        left: 10px !important;
        padding: 8px !important;
        border-radius: 8px !important;
    }

    .alx-mobile-menu > a,
    .alx-mobile-nav-group > summary {
        min-height: 46px !important;
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }
}


/* Global Peptide Sciences legal pages */
.gps-legal-page { background: #fff; color: #111; }
.gps-legal-container { width: min(100% - clamp(32px, 6vw, 96px), 1440px); margin-inline: auto; }
.gps-legal-hero { padding: clamp(38px, 5vw, 72px) 0 clamp(44px, 6vw, 88px); border-bottom: 1px solid #dfe5e9; background: linear-gradient(180deg, #f7fafb 0%, #fff 100%); }
.gps-legal-breadcrumb { display: flex; align-items: center; gap: 7px; margin-bottom: clamp(32px, 4vw, 56px); color: #68747f; font: 600 12px/1.4 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-breadcrumb a { color: #111; text-decoration: none; }
.gps-legal-breadcrumb i { font-size: 16px; }
.gps-legal-hero-copy { max-width: 980px; }
.gps-legal-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; color: #057eb5; font: 700 12px/1.3 "Plus Jakarta Sans", system-ui, sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.gps-legal-eyebrow i { font-size: 19px; }
.gps-legal-hero h1 { max-width: 1100px; margin: 0; color: #111; font: 400 clamp(48px, 8vw, 108px)/.88 "Anton", "Bebas Neue", sans-serif; letter-spacing: -.025em; }
.gps-legal-hero-copy > p { max-width: 780px; margin: 24px 0 0; color: #4b5863; font: 500 clamp(15px, 1.4vw, 18px)/1.75 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-updated { display: block; margin-top: 20px; color: #7b8791; font: 600 12px/1.4 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-content { display: grid; grid-template-columns: minmax(210px, 270px) minmax(0, 1fr); gap: clamp(42px, 7vw, 110px); padding-block: clamp(54px, 7vw, 100px); align-items: start; }
.gps-legal-index { position: sticky; top: 120px; padding: 20px; border: 1px solid #dfe5e9; border-radius: 8px; background: #f8fafb; }
.gps-legal-index strong { display: block; margin-bottom: 12px; color: #111; font: 750 13px/1.4 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-index nav { display: grid; gap: 2px; max-height: calc(100vh - 210px); overflow: auto; }
.gps-legal-index a { padding: 8px 9px; border-radius: 5px; color: #5a6670; font: 550 12px/1.45 "Plus Jakarta Sans", system-ui, sans-serif; text-decoration: none; transition: background .2s ease, color .2s ease; }
.gps-legal-index a:hover, .gps-legal-index a:focus-visible { background: #e9f5fa; color: #057eb5; outline: none; }
.gps-legal-document { min-width: 0; }
.gps-legal-section { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 22px; padding: 0 0 clamp(34px, 4vw, 50px); margin-bottom: clamp(34px, 4vw, 50px); border-bottom: 1px solid #e4e8eb; scroll-margin-top: 120px; }
.gps-legal-section-number { display: grid; place-items: center; width: 42px; height: 30px; border: 1px solid #111; border-radius: 5px; color: #111; font: 750 11px/1 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-section h2 { margin: 0 0 16px; color: #111; font: 700 clamp(21px, 2.3vw, 30px)/1.15 "Plus Jakarta Sans", system-ui, sans-serif; letter-spacing: -.025em; }
.gps-legal-section p, .gps-legal-section li { color: #4f5b65; font: 500 15px/1.78 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-section p { margin: 0 0 14px; }
.gps-legal-section ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; }
.gps-legal-section a { color: #057eb5; font-weight: 700; text-underline-offset: 3px; }
.gps-legal-callout { display: flex; align-items: flex-start; gap: 14px; margin-top: 22px; padding: 18px; border-left: 3px solid #079fe3; background: #f1f8fb; }
.gps-legal-callout i { flex: 0 0 auto; margin-top: 2px; color: #057eb5; font-size: 22px; }
.gps-legal-callout p { margin: 0; color: #30404c; }
.gps-legal-contact-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: clamp(22px, 3vw, 34px); border: 1px solid #111; border-radius: 8px; background: #111; color: #fff; }
.gps-legal-contact-card > i { font-size: 30px; color: #55c8fb; }
.gps-legal-contact-card strong { display: block; margin-bottom: 4px; font: 700 16px/1.3 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-contact-card p { margin: 0; color: #c5cdd3; font: 500 13px/1.55 "Plus Jakarta Sans", system-ui, sans-serif; }
.gps-legal-contact-card a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; border-radius: 5px; background: #fff; color: #111; font: 700 12px/1.2 "Plus Jakarta Sans", system-ui, sans-serif; text-decoration: none; white-space: nowrap; }
@media (max-width: 900px) {
  .gps-legal-content { grid-template-columns: 1fr; }
  .gps-legal-index { position: static; }
  .gps-legal-index nav { grid-template-columns: repeat(2, minmax(0,1fr)); max-height: none; }
}
@media (max-width: 620px) {
  .gps-legal-container { width: min(100% - 28px, 1440px); }
  .gps-legal-hero { padding-top: 28px; }
  .gps-legal-breadcrumb { margin-bottom: 28px; }
  .gps-legal-hero h1 { font-size: clamp(44px, 16vw, 72px); }
  .gps-legal-index nav { grid-template-columns: 1fr; }
  .gps-legal-section { grid-template-columns: 1fr; gap: 13px; }
  .gps-legal-section-number { width: 38px; height: 27px; }
  .gps-legal-contact-card { grid-template-columns: auto 1fr; }
  .gps-legal-contact-card a { grid-column: 1 / -1; justify-content: center; white-space: normal; text-align: center; }
}

/* Reliable interactive navigation states */
.alx-nav-dropdown.is-open .alx-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.alx-nav-dropdown.is-open .alx-nav-dropdown-toggle {
    color: #079fe3 !important;
}
.alx-nav-dropdown.is-open .alx-nav-dropdown-toggle i {
    transform: rotate(180deg);
}
.alx-nav-dropdown-menu {
    pointer-events: none;
}
.alx-nav-dropdown:hover .alx-nav-dropdown-menu,
.alx-nav-dropdown:focus-within .alx-nav-dropdown-menu {
    pointer-events: auto;
}
.alx-header-actions button,
.alx-menu-btn,
.alx-action-btn,
.alx-nav-dropdown-toggle,
.alx-mobile-nav-group > summary {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    touch-action: manipulation;
}
@media (max-width: 980px) {
    body.alx-mobile-nav-open {
        overflow: hidden;
    }
    .alx-mobile-menu {
        z-index: 999 !important;
    }
    .alx-mobile-menu.is-open {
        visibility: visible !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Authoritative account drawer and mobile navigation interaction layer */
.alx-account-panel--links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: min(420px, 100vw);
}
.alx-account-panel-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 42px 22px 0;
    border-bottom: 1px solid #e1e6ea;
}
.alx-account-panel-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 23px;
}
.alx-account-panel-head p {
    margin: 0 0 3px !important;
    color: #71808c !important;
    font: 650 11px/1.3 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.alx-account-panel-head h2 {
    margin: 0 !important;
    color: #111;
    font: 750 24px/1.15 "Plus Jakarta Sans", system-ui, sans-serif !important;
    letter-spacing: -.025em;
}
.alx-account-panel-copy {
    margin: 20px 0 !important;
    color: #586570 !important;
    font: 500 14px/1.65 "Plus Jakarta Sans", system-ui, sans-serif !important;
}
.alx-account-panel-links {
    display: grid;
    gap: 7px;
}
.alx-account-panel-links a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #dfe5e9;
    border-radius: 7px;
    color: #172027;
    background: #fff;
    font: 650 14px/1.3 "Plus Jakarta Sans", system-ui, sans-serif;
    text-decoration: none;
}
.alx-account-panel-links a:hover,
.alx-account-panel-links a:focus-visible {
    border-color: #111;
    background: #f7f9fa;
    outline: none;
}
.alx-account-panel-links a > i:first-child {
    color: #079fe3;
    font-size: 19px;
}
.alx-account-panel-links a > i:last-child {
    justify-self: end;
    color: #7a8791;
}
.alx-account-panel-links .alx-account-panel-primary {
    border-color: #111;
    background: #111;
    color: #fff;
}
.alx-account-panel-links .alx-account-panel-primary > i {
    color: #fff !important;
}
.alx-account-panel-links .alx-account-panel-primary:hover,
.alx-account-panel-links .alx-account-panel-primary:focus-visible {
    background: #252525;
}
@media (max-width: 980px) {
    .alx-mobile-menu[aria-hidden="false"] {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
    .alx-mobile-menu[aria-hidden="true"] {
        pointer-events: none !important;
    }
}

/* Live catalog search refinements */
.alx-search-modal { width: min(760px, calc(100vw - 32px)); max-height: min(760px, calc(100vh - 48px)); overflow: auto; }
.alx-search-status { min-height: 20px; margin: 12px 0 8px; color: #747c86; font: 600 11px/1.4 "Plus Jakarta Sans", sans-serif; letter-spacing: .03em; }
.alx-search-results { display: grid; gap: 8px; }
.alx-search-result-card { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto 20px; align-items: center; gap: 13px; min-width: 0; padding: 9px 11px; border: 1px solid #e0e4e9; border-radius: 7px; background: #fff; color: #111; text-decoration: none; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.alx-search-result-card:hover,.alx-search-result-card:focus-visible { border-color: #111; background: #f8f9fa; transform: translateY(-1px); }
.alx-search-result-image { display: grid; place-items: center; width: 58px; height: 58px; overflow: hidden; border-radius: 6px; background: #f2f4f6; }
.alx-search-result-image img { width: 100%; height: 100%; object-fit: cover; }
.alx-search-result-copy { min-width: 0; }
.alx-search-result-copy strong { display: block; overflow: hidden; color: #111; font: 700 14px/1.35 "Plus Jakarta Sans", sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.alx-search-result-copy small { display: block; margin-top: 5px; color: #178247; font: 650 10px/1.2 "Plus Jakarta Sans", sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.alx-search-result-copy small.is-out { color: #c52a2a; }
.alx-search-result-price { color: #111; font: 750 13px/1.3 "Plus Jakarta Sans", sans-serif; white-space: nowrap; }
.alx-search-result-price del { color: #8a929d; font-weight: 500; margin-right: 4px; }
.alx-search-result-price ins { color: #1268d6; text-decoration: none; }
.alx-search-result-card > i { font-size: 17px; }
.alx-search-empty { display: grid; justify-items: center; gap: 8px; padding: 34px 18px; border: 1px dashed #ccd2d9; border-radius: 7px; text-align: center; }
.alx-search-empty i { font-size: 26px; color: #1268d6; }
.alx-search-empty p,.alx-search-empty span { margin: 0; font-family: "Plus Jakarta Sans", sans-serif; }
.alx-search-empty p { color: #111; font-size: 14px; }
.alx-search-empty span { color: #747c86; font-size: 12px; }
.alx-search-modal.is-searching .alx-search-status::after { content: ""; display: inline-block; width: 11px; height: 11px; margin-left: 7px; border: 2px solid #cbd2d9; border-top-color: #1268d6; border-radius: 50%; vertical-align: -2px; animation: alx-search-spin .7s linear infinite; }
@keyframes alx-search-spin { to { transform: rotate(360deg); } }
@media (max-width: 560px) {
  .alx-search-result-card { grid-template-columns: 48px minmax(0, 1fr) 18px; gap: 10px; }
  .alx-search-result-image { width: 48px; height: 48px; }
  .alx-search-result-price { grid-column: 2; font-size: 12px; }
  .alx-search-result-card > i { grid-column: 3; grid-row: 1 / span 2; }
}

/* Research Guide archive and article templates */
.alx-research-container,.alx-article-container--wide{width:calc(100% - clamp(32px,6vw,112px));max-width:none;margin-inline:auto}.alx-research-hero{padding:34px 0 54px;background:#f4f6f7;border-bottom:1px solid #dfe4e8}.alx-research-breadcrumb{display:flex;align-items:center;gap:7px;min-width:0;margin-bottom:34px;color:#737c84;font:600 12px/1.3 "Plus Jakarta Sans",sans-serif}.alx-research-breadcrumb a{color:#39434b;text-decoration:none}.alx-research-breadcrumb a:hover{color:#079fe3}.alx-research-breadcrumb span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.alx-research-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,470px);align-items:end;gap:60px}.alx-research-kicker{display:flex;align-items:center;gap:9px;margin:0 0 14px;color:#111;font:700 12px/1.2 "Plus Jakarta Sans",sans-serif;text-transform:uppercase;letter-spacing:.08em}.alx-research-kicker i{color:#079fe3;font-size:18px}.alx-research-hero h1,.alx-article-heading h1{margin:0;color:#111;font:400 clamp(54px,7vw,108px)/.88 "Bebas Neue","Anton",sans-serif;letter-spacing:.005em}.alx-research-intro{max-width:760px;margin-top:22px;color:#53606a;font:500 clamp(15px,1.3vw,18px)/1.7 "Plus Jakarta Sans",sans-serif}.alx-research-intro p{margin:0}.alx-research-search label{display:block;margin-bottom:10px;color:#111;font:700 12px/1.3 "Plus Jakarta Sans",sans-serif}.alx-research-search>div{display:grid;grid-template-columns:22px minmax(0,1fr) auto;align-items:center;gap:9px;padding:6px 6px 6px 16px;border:1px solid #ccd3d9;border-radius:7px;background:#fff}.alx-research-search i{color:#6e7881;font-size:18px}.alx-research-search input{min-width:0;border:0!important;box-shadow:none!important;padding:10px 0!important;background:transparent!important;color:#111;font:500 14px/1.3 "Plus Jakarta Sans",sans-serif}.alx-research-search button{min-height:42px;padding:0 20px;border:1px solid #111;border-radius:5px;background:#111;color:#fff;font:700 12px/1 "Plus Jakarta Sans",sans-serif}.alx-research-categories{display:flex;flex-wrap:wrap;gap:8px;margin-top:38px}.alx-research-categories a{padding:9px 13px;border:1px solid #ccd3d9;border-radius:5px;background:#fff;color:#39434b;font:650 11px/1 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-research-categories a:hover,.alx-research-categories a.is-active{border-color:#111;background:#111;color:#fff}.alx-research-listing{padding:70px 0 92px;background:#fff}.alx-research-section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:30px}.alx-research-section-head p{margin:0 0 7px;color:#079fe3;font:700 11px/1.2 "Plus Jakarta Sans",sans-serif;text-transform:uppercase;letter-spacing:.08em}.alx-research-section-head h2{margin:0;color:#111;font:400 clamp(34px,4vw,58px)/.95 "Bebas Neue","Anton",sans-serif}.alx-research-section-head>span,.alx-research-section-head>a{color:#68737d;font:650 12px/1.3 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-research-section-head>a{display:flex;align-items:center;gap:7px;color:#111}.alx-research-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.alx-research-card{display:flex;min-width:0;flex-direction:column;overflow:hidden;border:1px solid #dce2e6;border-radius:8px;background:#fff;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.alx-research-card:hover{transform:translateY(-3px);border-color:#b8c1c8;box-shadow:0 14px 34px rgba(21,31,39,.08)}.alx-research-card-media{display:block;aspect-ratio:16/10;overflow:hidden;background:#edf1f3}.alx-research-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.alx-research-card:hover .alx-research-card-media img{transform:scale(1.025)}.alx-research-card-media>span{display:grid;width:100%;height:100%;place-items:center;color:#079fe3;font-size:42px;background:linear-gradient(145deg,#edf4f7,#f9fbfc)}.alx-research-card-body{display:flex;flex:1;flex-direction:column;padding:22px}.alx-research-card-meta{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:14px}.alx-research-card-meta a{padding:6px 8px;border-radius:4px;background:#111;color:#fff;font:700 9px/1 "Plus Jakarta Sans",sans-serif;text-decoration:none;text-transform:uppercase;letter-spacing:.04em}.alx-research-card-meta span{color:#77818a;font:600 10px/1.2 "Plus Jakarta Sans",sans-serif}.alx-research-card h3{margin:0}.alx-research-card h3 a{color:#111;font:700 clamp(18px,1.7vw,24px)/1.25 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-research-card-body>p{margin:12px 0 24px;color:#65717a;font:500 13px/1.65 "Plus Jakarta Sans",sans-serif}.alx-research-card-foot{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:auto;padding-top:16px;border-top:1px solid #edf0f2}.alx-research-card-foot time{color:#8a939b;font:600 10px/1.2 "Plus Jakarta Sans",sans-serif}.alx-research-card-foot a{display:flex;align-items:center;gap:7px;color:#111;font:700 11px/1.2 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-research-card-foot a i{display:grid;width:28px;height:28px;place-items:center;border-radius:50%;background:#111;color:#fff}.alx-research-pagination{margin-top:44px}.alx-research-pagination .nav-links{display:flex;align-items:center;justify-content:center;gap:7px}.alx-research-pagination .page-numbers{display:flex;align-items:center;justify-content:center;gap:6px;min-width:38px;height:38px;padding:0 11px;border:1px solid #d7dde1;border-radius:5px;color:#33404a;font:650 11px/1 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-research-pagination .current,.alx-research-pagination a:hover{border-color:#111;background:#111;color:#fff}.alx-research-empty{display:grid;justify-items:center;padding:64px 24px;border:1px dashed #cbd3d8;border-radius:8px;text-align:center}.alx-research-empty i{color:#079fe3;font-size:38px}.alx-research-empty h2{margin:14px 0 8px;color:#111;font:700 24px/1.2 "Plus Jakarta Sans",sans-serif}.alx-research-empty p{margin:0;color:#6c7780;font:500 14px/1.6 "Plus Jakarta Sans",sans-serif}.alx-research-empty a{margin-top:20px;padding:12px 18px;border-radius:5px;background:#111;color:#fff;font:700 12px/1 "Plus Jakarta Sans",sans-serif;text-decoration:none}
.alx-article-hero{padding:34px 0 58px;background:#f4f6f7;border-bottom:1px solid #dfe4e8}.alx-article-heading{max-width:980px;margin:0 auto;text-align:center}.alx-article-meta-top{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:18px}.alx-article-meta-top a,.alx-article-meta-top span{font:700 10px/1 "Plus Jakarta Sans",sans-serif;text-transform:uppercase;letter-spacing:.05em}.alx-article-meta-top a{padding:7px 9px;border-radius:4px;background:#111;color:#fff;text-decoration:none}.alx-article-meta-top span{color:#737e87}.alx-article-heading h1{font-size:clamp(48px,6.6vw,94px);line-height:.96}.alx-article-deck{max-width:800px;margin:24px auto 0;color:#55616b;font:500 clamp(16px,1.5vw,20px)/1.65 "Plus Jakarta Sans",sans-serif}.alx-article-byline{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:30px;text-align:left}.alx-article-author-mark img{display:block;width:44px;height:44px;border-radius:50%}.alx-article-byline strong,.alx-article-byline span{display:block;font-family:"Plus Jakarta Sans",sans-serif}.alx-article-byline strong{color:#111;font-size:12px}.alx-article-byline span{margin-top:3px;color:#7b858e;font-size:10px}.alx-article-featured{margin-top:42px}.alx-article-featured img{display:block;width:100%;max-height:680px;object-fit:cover;border-radius:8px}.alx-article-layout{display:grid;grid-template-columns:250px minmax(0,820px);justify-content:center;gap:64px;padding-top:64px;padding-bottom:92px}.alx-article-aside{position:relative}.alx-article-aside-card,.alx-article-research-note{border:1px solid #dce2e6;border-radius:7px;background:#fff}.alx-article-aside-card{position:sticky;top:130px;padding:18px}.alx-article-aside-card>span{display:block;padding-bottom:12px;border-bottom:1px solid #e8ecef;color:#111;font:700 11px/1.2 "Plus Jakarta Sans",sans-serif;text-transform:uppercase;letter-spacing:.06em}.alx-article-aside-card dl{margin:0}.alx-article-aside-card dl>div{display:grid;gap:4px;padding:13px 0;border-bottom:1px solid #edf0f2}.alx-article-aside-card dl>div:last-child{border:0;padding-bottom:0}.alx-article-aside-card dt{color:#8a939b;font:650 9px/1.2 "Plus Jakarta Sans",sans-serif;text-transform:uppercase;letter-spacing:.05em}.alx-article-aside-card dd{margin:0;color:#29343c;font:650 11px/1.4 "Plus Jakarta Sans",sans-serif}.alx-article-aside-card dd a{color:#1268d6;text-decoration:none}.alx-article-research-note{display:flex;gap:11px;margin-top:14px;padding:15px;background:#f5f9fb}.alx-article-research-note>i{color:#079fe3;font-size:20px}.alx-article-research-note strong{color:#111;font:700 11px/1.3 "Plus Jakarta Sans",sans-serif}.alx-article-research-note p{margin:5px 0 0;color:#6b7680;font:500 10px/1.55 "Plus Jakarta Sans",sans-serif}.alx-article-content{color:#303b43;font:500 16px/1.85 "Plus Jakarta Sans",sans-serif}.alx-article-content>*:first-child{margin-top:0}.alx-article-content h2,.alx-article-content h3,.alx-article-content h4{color:#111;font-family:"Plus Jakarta Sans",sans-serif}.alx-article-content h2{margin:54px 0 18px;font-size:30px;line-height:1.2}.alx-article-content h3{margin:38px 0 14px;font-size:22px;line-height:1.3}.alx-article-content p,.alx-article-content ul,.alx-article-content ol{margin:0 0 22px}.alx-article-content a{color:#096fc4;text-decoration-thickness:1px;text-underline-offset:3px}.alx-article-content blockquote{margin:34px 0;padding:22px 24px;border-left:4px solid #079fe3;background:#f5f8fa;color:#253039;font-size:18px}.alx-article-content img{max-width:100%;height:auto;border-radius:7px}.alx-article-content table{width:100%;margin:28px 0;border-collapse:collapse;font-size:13px}.alx-article-content th,.alx-article-content td{padding:12px;border:1px solid #dce2e6;text-align:left}.alx-article-content th{background:#111;color:#fff}.alx-article-tags{display:flex;flex-wrap:wrap;align-items:center;gap:7px;margin-top:42px;padding-top:22px;border-top:1px solid #e2e6e9}.alx-article-tags span{margin-right:5px;color:#111;font:700 11px/1 "Plus Jakarta Sans",sans-serif}.alx-article-tags a{padding:7px 9px;border:1px solid #d8dee2;border-radius:5px;color:#5a6670;font:650 10px/1 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-article-nav{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:36px}.alx-article-nav>a{display:flex;align-items:center;gap:12px;min-width:0;padding:16px;border:1px solid #dce2e6;border-radius:7px;color:#111;font:650 12px/1.4 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-article-nav>a:last-child{justify-content:flex-end;text-align:right}.alx-article-nav small{display:block;margin-bottom:3px;color:#8a939b;font-size:9px;text-transform:uppercase;letter-spacing:.05em}.alx-related-research{padding:70px 0 86px;background:#f4f6f7;border-top:1px solid #dfe4e8}.alx-related-research-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.alx-related-research-grid article{overflow:hidden;border:1px solid #dce2e6;border-radius:7px;background:#fff}.alx-related-research-media{display:block;aspect-ratio:16/9;overflow:hidden;background:#e9eef1}.alx-related-research-media img{width:100%;height:100%;object-fit:cover}.alx-related-research-media span{display:grid;width:100%;height:100%;place-items:center;color:#079fe3;font-size:32px}.alx-related-research-grid article>div{padding:18px}.alx-related-research-grid time{color:#87919a;font:600 9px/1.2 "Plus Jakarta Sans",sans-serif}.alx-related-research-grid h3{margin:8px 0 18px}.alx-related-research-grid h3 a{color:#111;font:700 17px/1.35 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-related-research-link{display:flex;align-items:center;justify-content:space-between;color:#111;font:700 10px/1.2 "Plus Jakarta Sans",sans-serif;text-decoration:none}.alx-related-research-link i{display:grid;width:28px;height:28px;place-items:center;border-radius:50%;background:#111;color:#fff}
@media(max-width:980px){.alx-research-hero-grid{grid-template-columns:1fr;gap:34px}.alx-research-search{max-width:640px}.alx-research-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.alx-article-layout{grid-template-columns:1fr;gap:28px}.alx-article-aside{display:grid;grid-template-columns:1fr 1fr;gap:14px}.alx-article-aside-card{position:static}.alx-article-research-note{margin-top:0}.alx-related-research-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.alx-related-research-grid article:last-child{display:none}}
@media(max-width:640px){.alx-research-container,.alx-article-container--wide{width:calc(100% - 28px)}.alx-research-hero,.alx-article-hero{padding-top:22px}.alx-research-breadcrumb{margin-bottom:24px}.alx-research-hero h1{font-size:58px}.alx-research-search>div{grid-template-columns:20px minmax(0,1fr)}.alx-research-search button{grid-column:1/-1;width:100%}.alx-research-categories{flex-wrap:nowrap;overflow-x:auto;padding-bottom:4px}.alx-research-categories a{flex:0 0 auto}.alx-research-listing{padding:50px 0 66px}.alx-research-section-head{align-items:start;flex-direction:column}.alx-research-grid,.alx-related-research-grid{grid-template-columns:1fr}.alx-related-research-grid article:last-child{display:block}.alx-research-card-body{padding:18px}.alx-article-heading{text-align:left}.alx-article-meta-top,.alx-article-byline{justify-content:flex-start}.alx-article-heading h1{font-size:52px}.alx-article-deck{font-size:15px}.alx-article-featured{margin-top:24px}.alx-article-featured img{border-radius:6px}.alx-article-layout{padding-top:38px;padding-bottom:64px}.alx-article-aside{grid-template-columns:1fr}.alx-article-content{font-size:15px;line-height:1.75}.alx-article-content h2{font-size:25px}.alx-article-nav{grid-template-columns:1fr}.alx-article-nav>a:last-child{justify-content:flex-start;text-align:left}.alx-related-research{padding:52px 0 64px}}


/* v1.9.9 restored live product search interface */
.alx-search-modal {
  width: min(calc(100% - 32px), 720px) !important;
  max-height: min(760px, calc(100vh - 48px));
  padding: clamp(24px, 4vw, 42px) !important;
  overflow: auto;
  border-radius: 24px !important;
}
.alx-search-status {
  margin: 14px 2px 0;
  color: #747b84;
  font: 600 11px/1.4 "Plus Jakarta Sans", sans-serif;
}
.alx-search-results {
  display: grid !important;
  gap: 10px !important;
  margin-top: 12px !important;
}
.alx-search-result-card {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px 16px !important;
  color: #111 !important;
  background: #f7f7f7 !important;
  border: 1px solid var(--alx-line) !important;
  border-radius: 16px !important;
  text-decoration: none !important;
  transform: none !important;
}
.alx-search-result-card:hover,
.alx-search-result-card:focus-visible {
  border-color: #111 !important;
  background: #fff !important;
}
.alx-search-result-card img {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  background: #f1f2f4 !important;
}
.alx-search-result-card strong {
  min-width: 0;
  overflow: hidden;
  color: #111;
  font: 700 14px/1.35 "Plus Jakarta Sans", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.alx-search-result-card > span {
  color: #111;
  font: 700 13px/1.3 "Plus Jakarta Sans", sans-serif;
  white-space: nowrap;
}
.alx-search-result-card > span del { color: #8a929d; font-weight: 500; }
.alx-search-result-card > span ins { color: #1268d6; text-decoration: none; }
.alx-search-empty-copy { margin: 6px 0 0; color: #6e747c; font: 500 13px/1.6 "Plus Jakarta Sans", sans-serif; }
@media (max-width: 560px) {
  .alx-search-result-card { grid-template-columns: 42px minmax(0, 1fr) !important; gap: 11px !important; padding: 11px 12px !important; }
  .alx-search-result-card img { width: 42px !important; height: 42px !important; }
  .alx-search-result-card > span { grid-column: 2; font-size: 12px; }
}

/* Global Peptide Sciences v1.10.0 — Research Guide width and minimal cards */
.alx-research-container,
.alx-article-container--wide {
  width: calc(100% - (var(--gp-page-pad, clamp(24px, 5vw, 112px)) * 2)) !important;
  max-width: none !important;
  margin-inline: auto !important;
}

.alx-research-grid {
  gap: clamp(18px, 2vw, 26px) !important;
}

.alx-research-card {
  border-radius: 6px !important;
  box-shadow: none !important;
  transition: border-color .2s ease !important;
}

.alx-research-card:hover {
  transform: none !important;
  border-color: #9fa9b1 !important;
  box-shadow: none !important;
}

.alx-research-card-media {
  aspect-ratio: 16 / 9 !important;
}

.alx-research-card:hover .alx-research-card-media img {
  transform: none !important;
}

.alx-research-card-body {
  padding: 18px !important;
}

.alx-research-card-meta {
  justify-content: flex-start !important;
  flex-wrap: wrap !important;
  margin-bottom: 11px !important;
}

.alx-research-card-meta a {
  padding: 5px 7px !important;
  border-radius: 4px !important;
  background: #eef2f4 !important;
  color: #28333b !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.alx-research-card h3 a {
  font-size: clamp(17px, 1.35vw, 21px) !important;
  line-height: 1.35 !important;
}

.alx-research-card-body > p {
  margin: 9px 0 18px !important;
  font-size: 12.5px !important;
  line-height: 1.6 !important;
}

.alx-research-card-foot {
  padding-top: 13px !important;
}

.alx-research-card-foot a i {
  width: 25px !important;
  height: 25px !important;
  border-radius: 5px !important;
}

.alx-article-layout {
  grid-template-columns: minmax(210px, 240px) minmax(0, 820px) !important;
  justify-content: center !important;
  gap: clamp(34px, 4vw, 58px) !important;
}

.alx-article-heading {
  max-width: 920px !important;
}

.alx-article-featured img {
  max-height: 620px !important;
}

@media (max-width: 980px) {
  .alx-research-container,
  .alx-article-container--wide {
    width: calc(100% - 48px) !important;
  }

  .alx-research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .alx-article-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 640px) {
  .alx-research-container,
  .alx-article-container--wide {
    width: calc(100% - 28px) !important;
  }

  .alx-research-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .alx-research-card-body {
    padding: 16px !important;
  }

  .alx-research-card-body > p {
    margin-bottom: 15px !important;
  }

  .alx-article-layout {
    padding-top: 34px !important;
    padding-bottom: 58px !important;
  }
}


/* v1.10.2 — concise live-search prices */
.alx-search-result-card .price,
.alx-search-result-card .woocommerce-Price-amount,
.alx-search-result-card .alx-search-price-separator {
  display: inline !important;
}
.alx-search-result-card .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* v1.10.8 account drawer: sign-in only for guests, account links for customers */
.alx-account-panel--links .alx-account-panel-note{display:flex;align-items:flex-start;gap:10px;margin-top:18px;padding:13px;border:1px solid #dce3e8;border-radius:6px;background:#f6f8fa;color:#65717b;font:500 11px/1.55 "Plus Jakarta Sans",sans-serif}.alx-account-panel--links .alx-account-panel-note i{flex:0 0 auto;color:#1268d6;font-size:18px}.alx-account-panel-links .alx-account-panel-logout{margin-top:8px;border-color:#ead7d7;color:#9c2525}.alx-account-panel-links .alx-account-panel-logout:hover,.alx-account-panel-links .alx-account-panel-logout:focus-visible{border-color:#9c2525;background:#fff5f5;color:#7f1616}
