: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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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 Peptides 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; }
}
