/*
Theme Name: Elevated Wellness Co
Theme URI: https://precisionpeptides.example
Author: FSR Labs
Description: Professional WooCommerce-ready theme for Elevated Wellness Co.
Version: 0.1.1
Requires at least: 6.4
Tested up to: 6.5
Requires PHP: 8.1
Text Domain: elevated-wellness-co
*/

:root {
  --pp-ink: #17202a;
  --pp-muted: #58636f;
  --pp-line: #d9e1e8;
  --pp-surface: #f6f8fa;
  --pp-panel: #ffffff;
  --pp-blue: #126a8d;
  --pp-teal: #1d8b85;
  --pp-green: #4b8b57;
  --pp-gold: #b4873c;
  --pp-danger: #9a2f2f;
  --pp-radius: 8px;
  --pp-shadow: 0 18px 45px rgba(23, 32, 42, 0.12);
  --pp-max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Ensure the container is the reference point */
.product-stage {
  position: relative;
}

/* Position the text panel directly over the ::after box */
.vial-spec-panel {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  z-index: 10;
  pointer-events: none; /* Prevents the box from blocking clicks if needed */
}

/* Ensure individual lines of text are centered */
.vial-spec-panel span, 
.vial-spec-panel strong {
  display: block;
  text-align: center;
  margin: 0;
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--pp-ink);
  background: var(--pp-surface);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 225, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner,
.site-footer__inner,
.pp-section__inner {
  width: min(var(--pp-max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pp-blue), var(--pp-teal));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
}

.brand__text span {
  display: block;
  color: var(--pp-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--pp-muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a:hover {
  color: var(--pp-blue);
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  color: #fff;
  background: var(--pp-blue);
  font-weight: 720;
  line-height: 1.1;
  cursor: pointer;
}

.button:hover,
.wp-block-button__link:hover {
  background: #0f5b79;
}

.button--ghost {
  border-color: var(--pp-line);
  color: var(--pp-ink);
  background: #fff;
}

.button--ghost:hover {
  color: var(--pp-blue);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 248, 250, 0.98) 0%, rgba(246, 248, 250, 0.92) 48%, rgba(246, 248, 250, 0.68) 100%),
    url("assets/biotech-lab-pattern.svg") center right / min(760px, 70vw) no-repeat,
    #f6f8fa;
}

.hero__inner {
  width: min(var(--pp-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pp-teal);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--pp-muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 680px;
}

.proof {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.proof strong {
  display: block;
  font-size: 20px;
}

.proof span {
  color: var(--pp-muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.hero__instrument {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
}

.instrument__screen {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(18, 106, 141, 0.08), transparent),
    #fff;
}

.vial-rack {
  width: min(320px, 100%);
  aspect-ratio: 1 / 0.72;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 14px;
}

.vial {
  position: relative;
  height: 100%;
  border: 1px solid #9db4c5;
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(220, 239, 244, 0.82));
  overflow: hidden;
}

.vial::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 8%;
  height: 12%;
  border-radius: 5px;
  background: #d5dee6;
}

.vial::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--fill, 38%);
  background: linear-gradient(180deg, rgba(29, 139, 133, 0.42), rgba(18, 106, 141, 0.74));
}

.instrument__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--pp-line);
}

.instrument__meta span {
  padding: 14px;
  color: var(--pp-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.instrument__meta span + span {
  border-left: 1px solid var(--pp-line);
}

.pp-section {
  padding: 76px 0;
  background: #fff;
}

.pp-section:nth-of-type(even) {
  background: var(--pp-surface);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--pp-muted);
}

.trust-bar {
  border-top: 1px solid var(--pp-border);
  border-bottom: 1px solid var(--pp-border);
  background: #fff;
}

.trust-bar__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-point {
  min-width: 0;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  border-right: 1px solid var(--pp-border);
}

.trust-point:first-child {
  border-left: 1px solid var(--pp-border);
}

.trust-point svg {
  width: 30px;
  height: 30px;
  color: var(--pp-blue);
}

.trust-point h2 {
  margin: 1px 0 8px;
  color: var(--pp-blue);
  font: 700 17px/1.2 Georgia, "Times New Roman", serif;
}

.trust-point p {
  margin: 0;
  color: var(--pp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.who-we-serve {
  padding: 86px 0;
  border-top: 1px solid var(--pp-border);
  background: #fff;
}

.who-we-serve__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: end;
}

.who-we-serve__heading h2 {
  max-width: 720px;
  margin: 8px 0 20px;
  color: var(--pp-blue);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.who-we-serve__heading > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--pp-muted);
}

.who-we-serve__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--pp-blue);
}

.who-we-serve__list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--pp-border);
  color: var(--pp-blue);
  font-weight: 700;
}

.category-grid,
.product-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category,
.product,
.quality-card,
.legal-band {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
}

.category,
.quality-card {
  padding: 22px;
}

.category span,
.product__meta,
.quality-card span {
  color: var(--pp-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.category h3,
.quality-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

.category p,
.quality-card p {
  margin: 0;
  color: var(--pp-muted);
}

.product {
  overflow: hidden;
}

.product__visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(18, 106, 141, 0.08), rgba(75, 139, 87, 0.08)),
    #f9fbfc;
}

.product__body {
  padding: 18px;
}

.product h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.product p {
  margin: 0 0 16px;
  color: var(--pp-muted);
}

.price {
  color: var(--pp-ink);
  font-size: 20px;
  font-weight: 800;
}

.product__purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product__cart {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 12px;
  white-space: nowrap;
}

.legal-band {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-left: 5px solid var(--pp-gold);
}

.legal-band h2,
.legal-band p {
  margin: 0;
}

.legal-band p {
  color: var(--pp-muted);
}

.site-footer {
  background: #111820;
  color: #fff;
}

.site-footer__inner {
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.footer-links h3 {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 7px 0;
  font-size: 14px;
}

.pp-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(17, 24, 32, 0.74);
}

.pp-gate.is-active {
  display: flex;
}

.pp-gate__dialog {
  width: min(620px, 100%);
  border-radius: var(--pp-radius);
  padding: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.pp-gate__dialog h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

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

.pp-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 14px 0;
  color: var(--pp-ink);
  font-weight: 650;
}

.pp-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.pp-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pp-gate__error {
  display: none;
  margin-top: 12px;
  color: var(--pp-danger);
  font-weight: 700;
}

.pp-gate__error.is-active {
  display: block;
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .site-nav__menu {
    flex-wrap: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 52px 0 72px;
  }

  .hero__proof,
  .category-grid,
  .product-grid,
  .quality-grid,
  .site-footer__inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .legal-band {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

/* Premium demo direction: warm product-brand polish over the original scaffold. */
:root {
  --pp-ink: #081a35;
  --pp-muted: #5f6270;
  --pp-line: #e4d8cb;
  --pp-surface: #fbf3ec;
  --pp-blue: #071936;
  --pp-teal: #1f8d9a;
  --pp-gold: #9d7444;
  --pp-shadow: 0 18px 45px rgba(8, 26, 53, 0.14);
}

body {
  background: #fffaf6;
}

.site-header {
  border-bottom-color: rgba(157, 116, 68, 0.2);
  background: rgba(255, 248, 243, 0.9);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand__mark {
  position: relative;
  width: 46px;
  height: 52px;
  border-radius: 8px;
  color: var(--pp-blue);
  font-size: 42px;
  line-height: 1;
  background: linear-gradient(145deg, #f5f8fb, #a7afb8 48%, #f8f8f8);
  box-shadow: inset -8px -8px 18px rgba(8, 26, 53, 0.16), inset 8px 8px 18px rgba(255, 255, 255, 0.72);
}

.brand__mark::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 5px;
  width: 16px;
  height: 42px;
  border-left: 4px solid #166aa6;
  border-right: 4px solid #31a7c1;
  border-radius: 999px;
  transform: rotate(28deg);
}

.brand__mark span {
  position: relative;
  z-index: 1;
}

.brand__mark--image {
  width: 88px;
  height: 32px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  flex: 0 0 auto;
  overflow: visible;
}

.brand__mark--image::before {
  display: none;
}

.brand__mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__text {
  font-size: 28px;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand__text span {
  color: var(--pp-blue);
  letter-spacing: 0.22em;
}

.site-nav,
.site-nav__menu {
  color: var(--pp-blue);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-link {
  width: 34px;
  height: 40px;
  display: grid;
  place-items: end center;
  color: var(--pp-blue);
}

.cart-link__bag {
  position: relative;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 2px;
  font-size: 12px;
}

.cart-link__bag::before {
  content: "";
  position: absolute;
  top: -11px;
  width: 13px;
  height: 14px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.button {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button--ghost {
  border-color: rgba(8, 26, 53, 0.18);
  background: rgba(255, 255, 255, 0.54);
}

.hero {
  background:
    radial-gradient(circle at 76% 42%, rgba(255, 221, 199, 0.95), rgba(255, 221, 199, 0) 34%),
    linear-gradient(105deg, #fffaf6 0%, #fff7f0 47%, #f5d8c8 100%);
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 70px;
}

.eyebrow {
  color: var(--pp-gold);
  letter-spacing: 0.28em;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero__rule {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(470px, 100%);
  margin-top: 20px;
  color: var(--pp-blue);
  font-size: 20px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero__rule span {
  height: 1px;
  flex: 1;
  background: var(--pp-gold);
}

.hero__copy {
  font-size: 17px;
}

.proof {
  border-color: rgba(157, 116, 68, 0.2);
  background: rgba(255, 255, 255, 0.55);
}

.hero__product {
  min-height: 580px;
  display: grid;
  align-items: end;
}

.product-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  justify-items: center;
  align-items: end;
}

.product-stage::after {
  content: "";
  width: 430px;
  max-width: 100%;
  height: 92px;
  border-radius: 12px;
  background: linear-gradient(135deg, #efe2d5, #c7ad94);
  box-shadow: 0 38px 70px rgba(98, 70, 42, 0.18);
}

.vial-spec-panel {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 430px;
  height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  z-index: 10;
  pointer-events: none;
}

.vial-spec-panel span,
.vial-spec-panel strong {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
}

.vial-spec-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vial-spec-panel strong {
  margin-top: 10px;
  color: #00e6bd;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.display-vial {
  position: absolute;
  bottom: 54px;
  width: 225px;
  height: 465px;
  filter: drop-shadow(0 24px 34px rgba(8, 26, 53, 0.22));
}

.display-vial__cap {
  position: absolute;
  left: -16px;
  top: 0;
  width: 257px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(90deg, #d9d7d2, #ffffff 24%, #a39f99 70%, #ecebe7);
  box-shadow: inset 0 -16px 20px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.display-vial__glass {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 54px;
  bottom: 0;
  border: 2px solid rgba(8, 26, 53, 0.12);
  border-radius: 30px 30px 24px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 32%, rgba(8, 26, 53, 0.06) 72%, rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.display-vial__glass::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 115px;
  height: 20px;
  border-top: 2px solid rgba(8, 26, 53, 0.14);
  border-bottom: 2px solid rgba(8, 26, 53, 0.08);
  background: rgba(255, 255, 255, 0.24);
}

.display-vial__liquid {
  position: absolute;
  left: 0;
  right: 0;
  top: 138px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(244, 237, 230, 0.44), rgba(255, 255, 255, 0.3));
}

.display-vial__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 76px;
  min-height: 190px;
  padding: 26px 22px 22px;
  display: grid;
  align-content: start;
  text-align: center;
  background: linear-gradient(90deg, #f6f2ed, #ffffff 42%, #e8ded5);
  color: var(--pp-blue);
}

.display-vial__label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 0.9;
  text-transform: uppercase;
}

.display-vial__label span {
  margin: 12px 0 22px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.display-vial__label em {
  font-style: normal;
  font-size: 19px;
  font-weight: 800;
}

.display-vial__label small {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.category,
.quality-card {
  box-shadow: 0 12px 30px rgba(8, 26, 53, 0.05);
}

.product__visual {
  background:
    linear-gradient(135deg, rgba(157, 116, 68, 0.08), rgba(31, 141, 154, 0.08)),
    #fffaf6;
}

.pp-gate__shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--pp-radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.pp-gate__visual {
  min-height: 600px;
  padding: 42px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(180deg, rgba(8, 26, 53, 0.12), rgba(8, 26, 53, 0.78)),
    url("assets/biotech-lab-pattern.svg") center bottom / cover no-repeat,
    #0d2639;
  color: #fff;
}

.pp-gate__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.pp-gate__badges {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.pp-gate__badges span {
  width: fit-content;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.pp-gate__dialog {
  box-shadow: none;
}

.pp-gate__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
  border: 1px solid var(--pp-line);
  border-radius: 999px;
  padding: 8px;
  background: #f7f9fb;
}

.pp-gate__tabs a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #12586a;
  font-weight: 800;
}

.pp-gate__tabs a:first-child {
  background: #fff;
  box-shadow: 0 4px 12px rgba(8, 26, 53, 0.08);
}

.pp-gate__notice {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 18px;
  margin: 18px 0;
}

.pp-gate__notice strong {
  display: block;
  color: #12586a;
  font-size: 22px;
}

.pp-invoice-message,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 26, 53, 0.05);
}

.pp-invoice-message {
  margin: 24px 0;
  border-left: 5px solid var(--pp-gold);
}

.pp-invoice-message h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.pp-invoice-message p {
  margin: 8px 0 0;
  color: var(--pp-muted);
}

.woocommerce-info {
  border-left: 5px solid var(--pp-teal);
}

.woocommerce-message {
  border-left: 5px solid var(--pp-green);
}

.woocommerce-error {
  border-left: 5px solid var(--pp-danger);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  position: relative;
  margin: 0 0 24px;
  padding: 18px 20px 18px 58px;
  overflow: hidden;
  list-style: none;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.woocommerce-error li {
  margin: 0;
}

.woocommerce form.login,
.woocommerce form.checkout_coupon {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 26, 53, 0.04);
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 28px;
  text-align: center;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  width: 100%;
  text-align: center;
}

.woocommerce ul.products li.product .button {
  align-self: center;
  margin-top: 16px;
  margin-bottom: 0;
}

.policy-page {
  background: #fffaf6;
}

.policy-document {
  max-width: 880px;
  margin: 0 auto;
}

.policy-hero {
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pp-line);
}

.policy-hero h1 {
  margin: 0;
  color: var(--pp-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
}

.policy-section,
.faq-item {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 24px;
  margin-bottom: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 26, 53, 0.04);
}

.policy-section h2,
.faq-item h2 {
  margin: 0 0 10px;
  color: var(--pp-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
}

.policy-section p,
.faq-item p {
  margin: 0;
  color: var(--pp-muted);
}

.policy-section p + p {
  margin-top: 12px;
}

.policy-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--pp-muted);
}

.policy-section li::marker {
  color: var(--pp-gold);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  margin: 0;
}

.faq-item a {
  color: var(--pp-blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(157, 116, 68, 0.45);
  text-underline-offset: 3px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.resource-card {
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 26, 53, 0.04);
}

.resource-card span {
  color: var(--pp-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin: 10px 0 8px;
  color: var(--pp-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
}

.resource-card p {
  margin: 0;
  color: var(--pp-muted);
}

@media (max-width: 860px) {
  .site-header__inner {
    gap: 12px;
  }
.brand__text {
    font-size: 22px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__product {
    min-height: 450px;
  }

  .product-stage {
    min-height: 430px;
  }

  .display-vial {
    transform: scale(0.78);
    transform-origin: bottom center;
  }

  .pp-gate__shell {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    overflow: auto;
  }

  .pp-gate__visual {
    min-height: 260px;
  }

  .policy-section,
  .faq-item {
    padding: 20px;
  }

  .policy-section ul {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-point:nth-child(3) {
    border-left: 1px solid var(--pp-border);
  }

  .trust-point:nth-child(-n + 2) {
    border-bottom: 1px solid var(--pp-border);
  }

  .who-we-serve__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .trust-bar__inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .trust-point,
  .trust-point:first-child,
  .trust-point:nth-child(3) {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--pp-border);
  }

  .trust-point:last-child {
    border-bottom: 0;
  }

  .who-we-serve {
    padding: 64px 0;
  }

  .who-we-serve__inner {
    width: min(100% - 32px, 1100px);
  }
}


/* Elevated Wellness Co premium homepage direction */
:root {
  --ew-navy: #061629;
  --ew-navy-2: #0b2036;
  --ew-ink: #0b1830;
  --ew-cream: #fbf7ef;
  --ew-paper: #fffaf3;
  --ew-gold: #d9ad62;
  --ew-gold-2: #f2d99a;
  --ew-cyan: #15d7e8;
  --ew-muted: #5c6470;
  --ew-max: 1180px;
}

body {
  background: var(--ew-paper);
  color: var(--ew-ink);
}

.ew-site-header {
  background: linear-gradient(90deg, #061629, #071a2f 62%, #04101f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 35px rgba(2, 8, 18, 0.24);
}

.ew-site-header__inner {
  width: min(var(--ew-max), calc(100% - 44px));
  min-height: 86px;
  gap: 28px;
}

.ew-brand {
  color: #fff;
  gap: 14px;
  min-width: max-content;
}

.ew-brand__text {
  display: grid;
  gap: 3px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.ew-brand__text span {
  display: block;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 780;
  letter-spacing: 0.24em;
}

.ew-brand__text small {
  display: block;
  color: var(--ew-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  position: relative;
  padding-inline: 22px;
}

.ew-brand__text small::before,
.ew-brand__text small::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--ew-gold);
}

.ew-brand__text small::before { left: 0; }
.ew-brand__text small::after { right: 0; }

.brand__mark--image {
  width: 84px;
  height: 44px;
}

.ew-site-nav,
.ew-site-nav__menu {
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ew-site-nav a,
.ew-site-nav__menu a {
  color: #fff;
}

.ew-site-nav a:hover,
.ew-site-nav__menu a:hover {
  color: var(--ew-gold-2);
}

.ew-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.ew-account-link,
.ew-cart-link {
  width: 30px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
}

.ew-account-link svg {
  width: 24px;
  height: 24px;
}

.ew-cart-link .cart-link__bag {
  color: #fff;
  border-color: #fff;
  background: transparent;
}

.ew-cart-link .cart-link__bag::before {
  border-color: #fff;
  background: transparent;
}

.ew-hero {
  min-height: 590px;
  background: radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.13), transparent 24%), radial-gradient(circle at 70% 76%, rgba(217, 173, 98, 0.18), transparent 25%), linear-gradient(115deg, #041121 0%, #061629 42%, #172638 100%);
  color: #fff;
  overflow: hidden;
}

.ew-hero__inner {
  width: min(var(--ew-max), calc(100% - 44px));
  margin: 0 auto;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.ew-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.ew-kicker {
  margin: 0 0 20px;
  color: var(--ew-gold-2);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.ew-kicker::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--ew-gold);
}

.ew-hero h1 {
  margin: 0;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 680px;
  text-wrap: balance;
}

.ew-hero h1::after {
  content: "";
  display: block;
}


.ew-hero__copy > p:not(.ew-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.55;
}

.ew-spark-rule {
  width: min(420px, 100%);
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--ew-cyan);
}

.ew-spark-rule span {
  height: 2px;
  background: currentColor;
}

.ew-spark-rule i {
  width: 14px;
  height: 14px;
  background: currentColor;
  display: block;
  transform: rotate(45deg);
}

.ew-spark-rule--small {
  width: 160px;
  margin: 8px auto 0;
}

.ew-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.ew-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.ew-button--gold {
  color: #071629;
  border-color: var(--ew-gold-2);
  background: linear-gradient(135deg, #fff4c8, var(--ew-gold));
}

.ew-button--outline {
  color: #fff;
  border-color: var(--ew-gold);
  background: transparent;
}

.ew-button--navy {
  color: #fff;
  border-color: var(--ew-navy);
  background: var(--ew-navy);
}

.ew-hero__media {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}


.ew-hero__pedestal {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  width: min(440px, 86%);
  aspect-ratio: 2.4 / 1;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.22), rgba(120, 132, 143, 0.22) 34%, rgba(8, 15, 25, 0.44) 68%, rgba(4, 10, 18, 0.08) 100%);
  box-shadow: 0 30px 42px rgba(0, 0, 0, 0.28);
}
.ew-hero__vial {
  position: relative;
  z-index: 4;
  width: min(350px, 68vw);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.48));
}


.ew-vial-fallback,
.ew-product-card__placeholder {
  position: relative;
  width: 210px;
  height: 360px;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.28));
}

.ew-vial-fallback__cap,
.ew-product-card__placeholder::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 54px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(#17263c, #050b16 65%, #b9b1a2 66%, #f2e4c7);
}

.ew-vial-fallback__glass,
.ew-product-card__placeholder::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  top: 48px;
  bottom: 0;
  border-radius: 20px 20px 36px 36px;
  background: linear-gradient(90deg, rgba(255,255,255,.76), #f4e6cf 28%, #fff8eb 70%, rgba(138,90,32,.42));
  border: 2px solid rgba(255,255,255,.58);
}

.ew-vial-fallback__label {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 96px;
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px 10px;
  color: var(--ew-navy);
  background: #f7e8cd;
  text-align: center;
  text-transform: uppercase;
}

.ew-vial-fallback__label span {
  font-size: 18px;
  letter-spacing: .28em;
}

.ew-vial-fallback__label strong {
  font-size: 28px;
}

.ew-vial-fallback__label em {
  font-style: normal;
  font-size: 14px;
}

.ew-vial-fallback__label small {
  width: 100%;
  padding: 6px 2px;
  color: #fff;
  background: var(--ew-navy);
  font-size: 9px;
  letter-spacing: .08em;
}

.ew-intro-band {
  background: linear-gradient(90deg, #fffaf3, #f7efe4);
  border-bottom: 1px solid rgba(11, 24, 48, 0.08);
}

.ew-intro-band__inner {
  width: min(var(--ew-max), calc(100% - 44px));
  margin: 0 auto;
  min-height: 210px;
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.ew-mini-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ew-cyan);
  margin-bottom: 12px;
}

.ew-mini-rule span {
  width: 48px;
  height: 2px;
  background: currentColor;
}

.ew-mini-rule i {
  width: 10px;
  height: 10px;
  background: currentColor;
  transform: rotate(45deg);
}

.ew-intro-copy h2,
.ew-section-heading h2,
.ew-difference h2 {
  margin: 0;
  color: var(--ew-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ew-intro-copy h2,
.ew-section-heading h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.ew-intro-copy p {
  margin: 18px 0 0;
  max-width: 520px;
  color: var(--ew-ink);
  font-size: 17px;
}

.ew-proof-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.ew-proof-icons article {
  min-height: 120px;
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 0 20px;
  text-align: center;
  border-left: 1px solid rgba(11, 24, 48, 0.14);
}

.ew-proof-icons svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  color: var(--ew-navy);
  border: 1px solid var(--ew-gold);
  border-radius: 999px;
}

.ew-proof-icons strong {
  color: var(--ew-navy);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ew-featured-products {
  padding: 24px 0 52px;
  background: var(--ew-paper);
}

.ew-section-heading {
  width: min(var(--ew-max), calc(100% - 44px));
  margin: 0 auto 28px;
  text-align: center;
}

.ew-product-grid {
  width: min(var(--ew-max), calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ew-product-card {
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(11, 24, 48, 0.08);
  box-shadow: 0 18px 38px rgba(6, 22, 41, 0.08);
  overflow: hidden;
}

.ew-product-card__image {
  min-height: 286px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dbc5a8, #f4e8d6);
}

.ew-product-card__image img {
  width: 100%;
  height: 286px;
  object-fit: contain;
  padding: 14px 18px 0;
}

.ew-product-card__body {
  padding: 12px 16px 16px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.ew-product-card h3 {
  margin: 0;
  color: var(--ew-navy);
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.ew-shop-link {
  min-width: 142px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--ew-navy);
  color: var(--ew-navy);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ew-featured-products__all {
  width: max-content;
  margin: 18px auto 0;
}

.ew-standards-band {
  background: linear-gradient(90deg, #061629, #071d33);
  color: #fff;
}

.ew-standards-band__inner {
  width: min(var(--ew-max), calc(100% - 44px));
  margin: 0 auto;
  min-height: 150px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.ew-standards-band article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.ew-standards-band article:last-child {
  border-right: 0;
}

.ew-standards-band svg {
  width: 72px;
  height: 72px;
  padding: 17px;
  color: var(--ew-gold-2);
  border: 2px solid var(--ew-gold);
  border-radius: 999px;
}

.ew-standards-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ew-standards-band h2::after {
  content: "";
  width: 54px;
  height: 2px;
  display: block;
  margin-top: 8px;
  background: var(--ew-gold);
}

.ew-standards-band p {
  margin: 0;
  max-width: 260px;
  color: rgba(255,255,255,.88);
}

.ew-difference {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #e7ddcf, #fff7ed 45%, #e9ddcf);
}

.ew-difference__inner {
  position: relative;
  z-index: 2;
  width: min(var(--ew-max), calc(100% - 44px));
  min-height: 142px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.ew-difference h2 {
  font-size: clamp(28px, 4vw, 40px);
}

.ew-hero h1 span,
.ew-difference h2 span,
.ew-difference h2 em {
  color: var(--ew-gold);
}

.ew-difference p {
  margin: 8px 0 0;
  color: var(--ew-ink);
  font-size: 17px;
}

.ew-difference__leaf {
  position: absolute;
  left: -60px;
  bottom: -40px;
  width: 240px;
  height: 150px;
  background: radial-gradient(ellipse at 70% 35%, rgba(69, 118, 57, .78), transparent 28%), radial-gradient(ellipse at 35% 65%, rgba(31, 76, 49, .74), transparent 30%);
  transform: rotate(-12deg);
}

.ew-site-footer {
  background: linear-gradient(90deg, #061629, #071d33);
  color: #fff;
  border-top: 1px solid rgba(217, 173, 98, .3);
}

.ew-site-footer__inner {
  width: min(var(--ew-max), calc(100% - 44px));
  min-height: 170px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 2.1fr;
  gap: 34px;
  align-items: center;
}

.ew-footer-note {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,.24);
}

.ew-footer-note p {
  margin: 0 0 6px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.ew-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ew-footer-links > div {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,.24);
}

.ew-footer-links h3 {
  margin: 0 0 12px;
  color: var(--ew-gold-2);
  font-size: 13px;
  font-weight: 740;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ew-footer-links a {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.55;
}

.ew-social-links {
  display: flex;
  gap: 10px;
}

.ew-social-links a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ew-gold-2);
  border: 1px solid var(--ew-gold);
  border-radius: 999px;
}

.ew-social-links svg {
  width: 18px;
  height: 18px;
}

.policy-hero,
.pp-section:not(.ew-featured-products) {
  background: var(--ew-paper);
}

.policy-hero h1,
.section-heading h2 {
  color: var(--ew-navy);
}

@media (max-width: 980px) {
  .ew-site-header__inner {
    min-height: 78px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .ew-site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .ew-hero__inner,
  .ew-intro-band__inner,
  .ew-difference__inner,
  .ew-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .ew-hero__inner {
    padding: 56px 0 0;
    text-align: center;
  }

  .ew-hero__copy,
  .ew-hero__copy > p:not(.ew-kicker) {
    margin-inline: auto;
  }

  .ew-kicker,
  .ew-hero__actions {
    justify-content: center;
  }

  .ew-spark-rule {
    margin-inline: auto;
  }

  .ew-hero__media {
    min-height: 430px;
  }

  .ew-proof-icons,
  .ew-product-grid,
  .ew-standards-band__inner,
  .ew-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .ew-standards-band__inner {
    padding: 30px 0;
  }

  .ew-standards-band article:nth-child(2) {
    border-right: 0;
  }

  .ew-site-footer__inner {
    padding: 34px 0;
  }

  .ew-footer-note,
  .ew-footer-links > div {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .ew-site-header__inner,
  .ew-hero__inner,
  .ew-intro-band__inner,
  .ew-section-heading,
  .ew-product-grid,
  .ew-standards-band__inner,
  .ew-difference__inner,
  .ew-site-footer__inner {
    width: min(100% - 28px, var(--ew-max));
  }

  .ew-brand__text span {
    font-size: 22px;
    letter-spacing: .16em;
  }

  .ew-brand__text small {
    font-size: 10px;
    letter-spacing: .24em;
  }

  .ew-site-nav,
  .ew-site-nav__menu {
    gap: 14px;
    font-size: 11px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .ew-hero h1 {
    font-size: 42px;
  }

  .ew-hero__actions,
  .ew-button {
    width: 100%;
  }

  .ew-button {
    padding: 0 18px;
  }

  .ew-proof-icons,
  .ew-product-grid,
  .ew-standards-band__inner,
  .ew-footer-links {
    grid-template-columns: 1fr;
  }

  .ew-proof-icons article {
    border-left: 0;
    border-top: 1px solid rgba(11, 24, 48, 0.12);
    padding: 20px 0;
  }

  .ew-standards-band article {
    grid-template-columns: 70px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding-bottom: 22px;
  }

  .ew-standards-band article:last-child {
    border-bottom: 0;
  }

  .ew-product-card__image,
  .ew-product-card__image img {
    min-height: 250px;
    height: 250px;
  }
}

.pp-checkout-acknowledgments,
.pp-checkout-payment-options {
  margin: 22px 0;
  padding: 18px 20px;
  border: 1px solid rgba(11, 24, 48, 0.16);
  background: #fffaf3;
}

.pp-checkout-acknowledgments h3,
.pp-checkout-payment-options h3 {
  margin: 0 0 14px;
  color: var(--ew-navy, #061629);
  font-size: 16px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pp-checkout-acknowledgment {
  margin: 0 0 13px;
}

.pp-checkout-acknowledgment:last-child {
  margin-bottom: 0;
}

.pp-checkout-acknowledgment label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ew-ink, #0b1830);
  line-height: 1.45;
}

.pp-checkout-acknowledgment input {
  margin-top: 4px;
}

.pp-checkout-payment-options p {
  margin: 0;
  color: var(--ew-muted, #5c6470);
}

.policy-email-link {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Elevated Wellness Co access gate refresh */
.pp-gate {
  background: rgba(3, 12, 24, 0.88);
  backdrop-filter: blur(10px);
  padding: max(36px, env(safe-area-inset-top)) 20px max(72px, env(safe-area-inset-bottom));
}

.pp-gate__shell {
  width: min(980px, calc(100% - 32px));
  border: 1px solid rgba(217, 173, 98, 0.28);
  background: linear-gradient(115deg, #061629 0%, #071d33 46%, #fffaf3 46%, #fffaf3 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.pp-gate__visual {
  background: radial-gradient(circle at 18% 18%, rgba(21, 215, 232, 0.18), transparent 28%), linear-gradient(150deg, #061629, #0a223b);
}

.pp-gate__brand {
  color: #fff;
  gap: 16px;
  align-items: center;
  text-transform: uppercase;
}

.pp-gate__brand strong {
  color: #fff;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.16em;
}

.pp-gate__logo-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #061629;
  background: linear-gradient(135deg, #fff5cf, #d9ad62);
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 800;
}

.pp-gate__badges span {
  color: #fff;
  border-color: rgba(217, 173, 98, 0.62);
  background: rgba(217, 173, 98, 0.1);
}

.pp-gate__dialog {
  color: #0b1830;
  background: #fffaf3;
}

.pp-gate__dialog h2 {
  color: #061629;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.pp-gate__tabs a:first-child,
.pp-gate__actions .button {
  background: #061629;
  color: #fff;
  border-color: #061629;
}

.pp-gate__actions .button--ghost {
  background: transparent;
  color: #061629;
  border-color: #d9ad62;
}

.pp-gate__notice {
  border-color: rgba(217, 173, 98, 0.45);
  background: #f7efe4;
}

.pp-gate__notice strong,
.pp-gate .eyebrow {
  color: #b98736;
}

@media (max-width: 860px) {
  .pp-gate {
    align-items: stretch;
    justify-content: flex-start;
    padding: max(32px, env(safe-area-inset-top)) 0 max(96px, env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }

  .pp-gate.is-active {
    display: block;
  }

  .pp-gate__shell {
    width: 100%;
    min-height: calc(100dvh - max(32px, env(safe-area-inset-top)) - max(96px, env(safe-area-inset-bottom)));
    max-height: none;
    overflow: visible;
    margin: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
    background: #fffaf3;
  }

  .pp-gate__dialog {
    width: 100%;
    min-height: inherit;
    padding: 32px max(24px, env(safe-area-inset-right)) 40px max(24px, env(safe-area-inset-left));
  }
}
