@font-face {
  font-family: Poppins;
  src: url("assets/fonts/Poppins-Regular.ttf");
}
@font-face {
  font-family: Poppins;
  src: url("assets/fonts/Poppins-SemiBold.ttf");
  font-weight: 600;
}
:root {
  --teal: #00b8b0;
  --teal-deep: #008f8a;
  --coral: #ff6f91;
  --coral-deep: #d95275;
  --midnight-navy: #202437;
  --orange: #ffb38a;
  --navy: #2a2e45;
  --yellow: #ffd166;
  --ink: #202437;
  --muted: #687080;
  --surface: #fff;
  --soft: #f7f8fa;
  --border: #e4e7ec;
  --content-max: 1200px;
  --texture-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Ccircle cx='5' cy='5' r='1.5' fill='%2300b8b0' fill-opacity='.14'/%3E%3Cpath d='M0 35H36M35 0V36' stroke='%23ff6f91' stroke-opacity='.08'/%3E%3C/svg%3E");
  --texture-coral: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Ccircle cx='5' cy='5' r='1.5' fill='%23ffffff' fill-opacity='.16'/%3E%3Cpath d='M0 35H36M35 0V36' stroke='%2300b8b0' stroke-opacity='.1'/%3E%3C/svg%3E");
  --texture-navy: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Ccircle cx='5' cy='5' r='1.5' fill='%23ff6f91' fill-opacity='.16'/%3E%3Cpath d='M0 35H36M35 0V36' stroke='%2300b8b0' stroke-opacity='.12'/%3E%3C/svg%3E");
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
}
main {
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 1.04;
  letter-spacing: -3px;
}
h2 {
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.12;
  letter-spacing: -2px;
}
p {
  line-height: 1.7;
  color: var(--muted);
}
.announcement {
  padding: 9px 5vw;
  text-align: center;
  background: var(--midnight-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.announcement span {
  padding: 0 10px;
  color: var(--yellow);
}
header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 82px;
  padding: 0 max(5vw, calc((100% - var(--content-max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.brand img {
  width: 158px;
  height: 50px;
  object-fit: contain;
}
header nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}
header nav a {
  padding: 30px 0 26px;
  border-bottom: 3px solid transparent;
}
header nav a:hover,
header nav a.active {
  color: var(--teal);
  border-color: var(--teal);
}
.tools {
  display: flex;
  gap: 9px;
}
.cart-btn,
.menu-btn {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 600;
}
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cart-icon {
  font-size: 15px;
  line-height: 1;
}
.cart-btn b {
  padding: 2px 6px;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
}
.menu-btn {
  display: none;
}
.hero-banner {
  width: 100%;
  padding: 24px 5vw 0;
}
.hero-banner-placeholder {
  min-height: 280px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 2px dashed #a8d9d5;
  border-radius: 18px;
  background-color: #f0fbfa;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), transparent 55%),
    repeating-linear-gradient(
      135deg,
      rgba(0, 184, 176, 0.08) 0,
      rgba(0, 184, 176, 0.08) 1px,
      transparent 1px,
      transparent 18px
    );
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero {
  min-height: 650px;
  padding: 90px 5vw;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  background-color: #fff;
  background-image:
    linear-gradient(120deg, #fff 0 60%, rgba(244, 251, 250, 0.92) 60%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 46px,
      rgba(0, 184, 176, 0.035) 46px,
      rgba(0, 184, 176, 0.035) 47px
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 72px,
      rgba(255, 111, 145, 0.045) 72px,
      rgba(255, 111, 145, 0.045) 74px
    );
}
.hero-content > p,
.page-hero > p {
  font-size: 18px;
  max-width: 700px;
}
.hero-content,
.hero-panel {
  width: min(100%, 620px);
}
.hero-content {
  justify-self: start;
}
.hero-panel {
  justify-self: end;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.light {
  color: var(--yellow);
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.primary {
  background: var(--coral);
  color: #fff;
}
.primary:hover {
  background: #ef5d81;
}
.secondary {
  background: #fff;
  border-color: var(--navy);
  color: var(--navy);
}
.inverse {
  background: #fff;
  color: var(--navy);
}
.full {
  width: 100%;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-row b,
.trust-row span {
  display: block;
}
.trust-row b {
  font-size: 20px;
  color: var(--navy);
}
.trust-row span {
  font-size: 12px;
  color: var(--muted);
}
.hero-panel {
  padding: 34px;
  background: var(--teal-deep);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(42, 46, 69, 0.18);
}
.panel-label {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
}
.ecosystem article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ecosystem article:last-child {
  border: 0;
}
.ecosystem span {
  grid-row: 1/3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  font-size: 12px;
  font-weight: 700;
}
.ecosystem h3 {
  margin-bottom: 5px;
}
.ecosystem p {
  margin: 0;
  color: #cfd3df;
  font-size: 14px;
}
.section {
  padding: 90px 5vw;
}
.muted {
  background: var(--soft);
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 44px;
}
.section-head p {
  margin-bottom: 5px;
}
.feature-grid,
.product-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid article,
.topic-grid article {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  transition: 0.2s;
}
.feature-grid article:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(42, 46, 69, 0.1);
}
.feature-grid h3 {
  margin: 22px 0 10px;
}
.feature-grid a,
.text-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}
.testimonials {
  background-color: var(--soft);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 22px,
    rgba(42, 46, 69, 0.025) 22px,
    rgba(42, 46, 69, 0.025) 23px
  );
}
.testimonial-carousel {
  max-width: 860px;
  margin: 0 auto;
}
.testimonial-viewport {
  min-height: 250px;
  padding: 44px 56px 38px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(42, 46, 69, 0.08);
}
.testimonial-slide {
  display: none;
  text-align: center;
}
.testimonial-slide.active {
  display: block;
  animation: testimonial-in 0.35s ease-out;
}
.quote-mark {
  display: block;
  color: var(--coral);
  font-size: 58px;
  line-height: 0.8;
}
.testimonial-slide blockquote {
  max-width: 680px;
  margin: 18px auto 20px;
  color: var(--navy);
  font-size: clamp(20px, 2.5vw, 29px);
  font-weight: 600;
  line-height: 1.35;
}
.testimonial-slide cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}
.carousel-arrow,
.carousel-dot {
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}
.carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  font-size: 18px;
}
.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
}
.carousel-dot.active,
.carousel-dot:hover,
.carousel-dot:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
}
@keyframes testimonial-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.icon.teal {
  background: var(--teal);
}
.icon.coral {
  background: var(--coral);
}
.icon.yellow {
  background: var(--yellow);
  color: var(--navy);
}
.community-strip {
  padding: 70px 5vw;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  background-color: var(--coral-deep);
  background-image:
    radial-gradient(
      circle at 18px 18px,
      rgba(255, 255, 255, 0.1) 0 2px,
      transparent 2.5px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 35px,
      rgba(0, 184, 176, 0.06) 35px,
      rgba(0, 184, 176, 0.06) 36px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 35px,
      rgba(0, 184, 176, 0.06) 35px,
      rgba(0, 184, 176, 0.06) 36px
    );
  color: #fff;
}
.community-strip h2 {
  margin-bottom: 0;
  color: #fff;
}
.community-strip .button {
  justify-self: end;
}
.about-community-cta {
  margin-bottom: 48px;
  background-color: var(--coral-deep);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 24px,
      rgba(255, 255, 255, 0.035) 24px,
      rgba(255, 255, 255, 0.035) 25px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 48px,
      rgba(0, 184, 176, 0.1) 48px,
      rgba(0, 184, 176, 0.1) 49px
    );
}
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-story {
  max-width: var(--content-max);
  margin: 0 auto;
}
.about-story h2 {
  max-width: 760px;
}
.about-story-copy {
  max-width: 760px;
  margin-top: 30px;
}
.about-story-copy blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--coral);
  background: #fff1f4;
  color: var(--navy);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.35;
}
.about-story-closing {
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
}
.product-visual {
  min-height: 410px;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 18px;
  background: #f0f9f8;
}
.product-box {
  width: 210px;
  height: 290px;
  padding: 34px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(42, 46, 69, 0.12);
}
.product-box.accent {
  transform: translateY(25px);
  background: #fff1f4;
}
.product-box small {
  color: var(--teal);
  font-weight: 700;
}
.product-box strong {
  margin: 12px 0;
  font-size: 24px;
}
.product-box span {
  font-size: 13px;
  color: var(--muted);
}
.page-hero {
  min-height: 430px;
  padding: 90px 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 24px;
}
.shop-hero {
  background: linear-gradient(135deg, #f1fbfa, #fff8e8);
}
.community-hero {
  background: linear-gradient(135deg, #fff1f4, #fff8f3);
}
.expert-hero {
  background: linear-gradient(135deg, #fff9e7, #f0fbfa);
}
.about-hero {
  background-color: var(--midnight-navy);
  background-image:
    linear-gradient(135deg, rgba(0, 184, 176, 0.14), transparent 58%),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 34px,
      rgba(255, 111, 145, 0.12) 34px,
      rgba(255, 111, 145, 0.12) 36px
    );
  color: #fff;
}
.about-hero h1 {
  color: #fff;
}
.about-hero > p {
  color: #e2e5ed;
}
.about-hero .eyebrow {
  color: var(--yellow);
}
.checkout-hero {
  background: #f3faf9;
}
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
}
.catalog-head h2 {
  margin-bottom: 4px;
}
.catalog-head p {
  margin: 0;
}
.catalog-head select {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  transition: 0.2s;
}
.product-art {
  height: 300px;
  padding: 45px;
  display: grid;
  place-items: center;
}
.product-art.teal {
  background: #e8f9f7;
}
.product-art.orange {
  background: #fff3eb;
}
.product-art.pink {
  background: #fff0f4;
}
.product-art > div {
  width: 180px;
  height: 220px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(42, 46, 69, 0.12);
}
.product-art small {
  color: var(--teal);
  font-weight: 700;
}
.product-art strong {
  margin: 10px 0;
  font-size: 22px;
}
.product-art span {
  font-size: 12px;
  color: var(--muted);
}
.product-info {
  padding: 24px;
}
.product-detail-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
}
.category {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-info h3 {
  margin: 10px 0;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.product-detail {
  min-height: 620px;
  padding: 90px 5vw;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 90px;
  align-items: center;
  background: linear-gradient(135deg, #f0fbfa, #fff8e8);
}
.product-detail-art {
  min-height: 460px;
  display: grid;
  place-items: center;
}
.product-detail-art > div {
  width: 270px;
  height: 350px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(42, 46, 69, 0.15);
}
.product-detail-art small {
  color: var(--teal);
  font-weight: 700;
}
.product-detail-art strong {
  margin: 16px 0;
  font-size: 32px;
}
.product-detail-art span {
  color: var(--muted);
  font-size: 14px;
}
.product-detail-copy h1 {
  max-width: 12ch;
  margin-bottom: 12px;
}
.product-detail-copy > p:not(.product-detail-price) {
  max-width: 600px;
  font-size: 17px;
}
.product-detail-art,
.product-detail-copy {
  width: min(100%, 620px);
  justify-self: center;
}
.product-detail-price {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 600;
}
.product-benefits {
  margin: 28px 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
}
.product-back-link {
  margin-left: 18px;
}
.addBtn {
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  padding: 10px 14px;
  font-weight: 600;
}
.info-banner {
  width: min(calc(100% - 10vw), var(--content-max));
  margin: 0 auto 80px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-left: 5px solid var(--yellow);
  border-radius: 10px;
  background: #fff;
}
.info-banner p {
  margin: 4px 0;
}
.standards {
  padding: 80px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--navy);
  color: #fff;
}
.standards ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.standards li {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #e2e5ed;
  font-size: 14px;
}
.standards li:before {
  content: "✓";
  margin-right: 9px;
  color: var(--yellow);
}
.join {
  padding: 85px 5vw;
  text-align: center;
  background: #f2fbfa;
}
.join form {
  max-width: 620px;
  margin: 24px auto 0;
  display: flex;
  gap: 10px;
}
.join input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.expert-feature {
  padding: 40px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 45px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.expert-symbol {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 76px;
}
.topic-grid article span {
  color: var(--teal);
  font-weight: 700;
}
.topic-grid article h3 {
  margin: 18px 0 8px;
}
.medical-note {
  margin: 0 5vw 80px;
  padding: 25px 30px;
  border-radius: 8px;
  background: #fff7dd;
  border-left: 5px solid var(--yellow);
}
.medical-note p {
  margin: 5px 0 0;
}
.value-list {
  display: grid;
  gap: 12px;
}
.value-list article {
  padding: 20px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.value-list article > span {
  color: var(--teal);
  font-weight: 700;
}
.value-list h3 {
  margin-bottom: 4px;
}
.value-list p {
  margin: 0;
}
.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 12px;
  overflow: hidden;
}
.palette span {
  min-height: 120px;
  display: grid;
  place-items: center;
  font-weight: 600;
}
.p-teal {
  background: var(--teal);
  color: #fff;
}
.p-coral {
  background: var(--coral);
  color: #fff;
}
.p-orange {
  background: var(--orange);
}
.p-navy {
  background: var(--navy);
  color: #fff;
}
.p-yellow {
  background: var(--yellow);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: start;
}
.checkout-form,
.summary {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid label {
  font-size: 13px;
  font-weight: 600;
}
.form-grid input {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
}
.wide {
  grid-column: 1/-1;
}
.consent {
  display: flex;
  gap: 8px;
  margin: 22px 0;
  font-size: 13px;
}
.summary > div:not(#checkoutItems) {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.summary .grand {
  font-size: 19px;
  border-bottom: 0;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(420px, 92vw);
  padding: 28px;
  background: #fff;
  transform: translateX(105%);
  transition: 0.25s;
  box-shadow: -20px 0 60px rgba(42, 46, 69, 0.18);
}
.drawer.open {
  transform: none;
}
.drawer-top,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-top button {
  border: 0;
  background: none;
  font-size: 30px;
}
.drawer-item {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--border);
}
.drawer-item button {
  border: 0;
  background: none;
  color: var(--coral);
}
.cart-total {
  padding: 21px 0;
  font-size: 18px;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(42, 46, 69, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  opacity: 0;
}
.toast.show {
  opacity: 1;
}
footer {
  padding: 55px max(5vw, calc((100% - var(--content-max)) / 2));
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  background: var(--midnight-navy);
  color: #fff;
}
footer .footer-brand img {
  width: 155px;
  filter: brightness(0) invert(1);
}
footer p {
  max-width: 420px;
  color: #c9ceda;
  font-size: 13px;
}
footer > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}
footer > div:not(.footer-brand) b {
  margin-bottom: 8px;
  color: var(--yellow);
}
footer > div:last-child {
  display: grid;
  grid-template-columns: repeat(3, 28px);
  align-content: start;
  column-gap: 8px;
}
footer > div:last-child b {
  grid-column: 1 / -1;
}
.facebook-link,
.shopee-link,
.tiktok-link {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.facebook-icon,
.shopee-icon,
.tiktok-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}
@media (max-width: 880px) {
  header nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 20px 5vw;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  header nav.open {
    display: flex;
  }
  .menu-btn {
    display: block;
  }
  .hero,
  .product-detail,
  .section-head,
  .editorial,
  .community-strip,
  .standards,
  .expert-feature,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .product-grid,
  .topic-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    background: #fff;
    padding-top: 60px;
  }
  .product-detail {
    padding-top: 60px;
    gap: 35px;
  }
  .product-detail-art {
    min-height: 350px;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .community-strip .button {
    justify-self: start;
    margin-left: 0;
  }
  .standards ul {
    grid-template-columns: 1fr;
  }
  .join form {
    flex-direction: column;
  }
  .palette {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .catalog-head,
  .info-banner {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
  .product-visual {
    padding: 25px;
  }
  .product-box {
    width: 48%;
  }
}

.hero-banner-placeholder {
  background-image: linear-gradient(135deg, #e8f9f7, #fff8e8);
}
.hero {
  background-color: #fff;
  background-image: linear-gradient(120deg, #fff 0 60%, #f4fbfa 60%);
}
.testimonials {
  background-color: var(--soft);
  background-image: var(--texture-light);
}
.community-strip,
.about-community-cta {
  background-color: var(--coral-deep);
  background-image: var(--texture-coral);
}
.about-hero {
  background-color: var(--midnight-navy);
  background-image: none;
}
.shop-hero,
.community-hero,
.expert-hero,
.checkout-hero {
  background-image: none;
}
.shop-hero {
  background-color: #f1fbfa;
}
.community-hero {
  background-color: #fff1f4;
}
.expert-hero {
  background-color: #fff9e7;
}
.checkout-hero {
  background-color: #f3faf9;
}
.product-detail {
  background-color: #f0fbfa;
  background-image: linear-gradient(135deg, #f0fbfa, #fff8e8);
}
.section > *,
.page-hero > *,
.community-strip > * {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}
.section > .eyebrow,
.page-hero > .eyebrow {
  width: auto;
  margin-left: 0;
}
.community-strip > .button {
  width: auto;
  margin-right: 0;
}
.hero,
.page-hero,
.section,
.community-strip,
.standards,
.join,
.product-detail {
  padding-right: max(5vw, calc((100% - var(--content-max)) / 2));
  padding-left: max(5vw, calc((100% - var(--content-max)) / 2));
}

*:not(.cart-btn b):not(.ecosystem span):not(.carousel-arrow):not(
    .carousel-dot
  ):not(.expert-symbol) {
  border-radius: 3px;
}
.cart-btn b,
.ecosystem span,
.carousel-arrow,
.carousel-dot,
.expert-symbol {
  border-radius: 50%;
}

/* Softer professional typography */
:root {
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
}
body,
button,
input,
select,
textarea {
  font-weight: var(--weight-regular);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, Arial, sans-serif;
  text-wrap: balance;
  color: var(--ink);
}
h1 {
  font-weight: var(--weight-semibold);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
h2 {
  font-weight: var(--weight-semibold);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
h3,
h4,
h5,
h6 {
  font-weight: var(--weight-medium);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
p,
li,
label,
input,
select,
textarea {
  font-weight: var(--weight-regular);
}
header nav,
.button,
.cart-btn,
.menu-btn,
.addBtn,
.eyebrow,
.category,
.panel-label,
strong,
b {
  font-weight: var(--weight-medium);
}
.eyebrow,
.category,
.panel-label,
.announcement {
  letter-spacing: 0.1em;
}
.hero h1,
.page-hero h1 {
  max-width: 18ch;
}
.hero-content > p,
.page-hero > p,
.section-head > p {
  max-width: 68ch;
}
@media (max-width: 880px) {
  h1 {
    font-size: clamp(2.35rem, 10vw, 3.75rem);
    letter-spacing: -0.025em;
  }
  h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
}


/* =========================================================
   Alignment and responsive layout repair, September 2026
   ========================================================= */
:root{--page-gutter:clamp(20px,5vw,64px);--content-max:1200px;--header-h:82px}
html{overflow-x:hidden}
body{min-width:320px;overflow-x:hidden}
img,svg,video{display:block;max-width:100%;height:auto}
main{width:100%;min-height:60vh}
header{width:100%;height:var(--header-h);padding-inline:max(var(--page-gutter),calc((100vw - var(--content-max))/2));gap:28px}
.brand{display:flex;flex:0 0 auto;align-items:center}
.brand img{display:block;width:158px;height:50px;object-fit:contain;object-position:left center}
header nav{display:flex;flex:1 1 auto;align-items:center;justify-content:center;gap:clamp(16px,2vw,28px);white-space:nowrap}
header nav a{display:flex;align-items:center;height:var(--header-h);padding:0;border-bottom:3px solid transparent}
.tools{display:flex;flex:0 0 auto;align-items:center;justify-content:flex-end}
.cart-btn,.menu-btn{display:inline-flex;align-items:center;justify-content:center;min-height:40px}
.primary:hover{background:var(--coral-deep);color:#fff}
.secondary{background:#fff;border-color:var(--navy);color:var(--navy)}
.secondary:hover{border-color:var(--teal);color:var(--teal)}

.hero-banner{padding:24px var(--page-gutter) 0}
.hero-banner-placeholder{width:min(100%,var(--content-max));margin-inline:auto}
.hero,.page-hero,.section,.community-strip,.standards,.join,.product-detail{padding-inline:max(var(--page-gutter),calc((100vw - var(--content-max))/2))}
.hero{grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr)}
.hero-content,.hero-panel{width:100%;max-width:620px}
.hero-content{justify-self:start}.hero-panel{justify-self:end}
.hero-content>p,.page-hero>p{max-width:68ch}
.hero h1,.page-hero h1{max-width:18ch}
.page-hero>*{width:auto;max-width:var(--content-max);margin-left:0;margin-right:auto}
.section>*{width:min(100%,var(--content-max));margin-left:auto;margin-right:auto}
.section>.eyebrow{width:auto;margin-left:max(0px,calc((100% - var(--content-max))/2))}
.section-head,.catalog-head,.editorial,.feature-grid,.product-grid,.topic-grid,.checkout-grid,.about-story{width:min(100%,var(--content-max));margin-left:auto;margin-right:auto}
.section-head{grid-template-columns:minmax(0,1.2fr) minmax(260px,.8fr)}
.feature-grid,.product-grid,.topic-grid{align-items:stretch}
.feature-grid article,.product-card,.topic-grid article{height:100%}
.product-card{display:flex;flex-direction:column}.product-info{display:flex;flex:1;flex-direction:column}.product-meta{margin-top:auto}
.product-art{width:100%}.product-art>div{align-items:flex-start}
.catalog-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px}
.info-banner,.medical-note{width:min(calc(100% - 2*var(--page-gutter)),var(--content-max));margin-inline:auto}
.community-strip>*{width:100%;margin:0}.community-strip .button{justify-self:end;margin:0}
.standards>*{width:100%;margin:0}
.join>*{width:auto;margin-left:auto;margin-right:auto}
.testimonial-carousel{width:min(100%,860px)}
.product-detail{grid-template-columns:minmax(280px,.9fr) minmax(0,1.1fr)}
.product-detail-art,.product-detail-copy{width:100%;max-width:620px}
.product-detail-art{justify-self:end}.product-detail-copy{justify-self:start}
.product-detail .button-row{align-items:center}
.product-back-link{display:inline-flex;margin-left:18px}
.checkout-grid{grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr)}
.summary{position:sticky;top:calc(var(--header-h) + 24px)}
.drawer{overflow-y:auto}.drawer-top{position:sticky;top:-28px;z-index:2;padding-top:28px;background:#fff}
footer{padding-inline:max(var(--page-gutter),calc((100vw - var(--content-max))/2));align-items:start}
footer .footer-brand{max-width:460px}
footer>div:not(.footer-brand){min-width:0}
footer>div:last-child{justify-content:start}

.about-hero h1,.about-hero>p{color:#fff}.about-hero .eyebrow{color:var(--yellow)}
.shop-hero{background:#f0fbfa}.community-hero{background:#fff5f7}.expert-hero{background:#fff9e7}.checkout-hero{background:#f3faf9}
.product-art.teal{background:#e8f9f7}.product-art.orange{background:#fff3eb}.product-art.pink{background:#fff0f4}

@media(max-width:1020px){
 header nav{gap:14px;font-size:13px}.brand img{width:142px}.hero{gap:44px}
 footer{grid-template-columns:1.5fr repeat(3,1fr);gap:30px}
}
@media(max-width:880px){
 :root{--header-h:72px}
 header{height:var(--header-h);padding-inline:var(--page-gutter)}
 .brand img{width:132px;height:44px}
 header nav{position:absolute;top:var(--header-h);left:0;right:0;display:none;height:auto;align-items:stretch;padding:12px var(--page-gutter) 20px;background:#fff;border-bottom:1px solid var(--border);box-shadow:0 12px 25px rgba(42,46,69,.08)}
 header nav.open{display:flex}
 header nav a{height:auto;padding:12px 0;border:0}
 .menu-btn{display:inline-flex}
 .hero,.product-detail,.section-head,.editorial,.community-strip,.standards,.expert-feature,.checkout-grid{grid-template-columns:1fr}
 .hero{min-height:auto;padding-top:60px;gap:42px;background:#fff}
 .hero-content,.hero-panel,.product-detail-art,.product-detail-copy{max-width:none;justify-self:stretch}
 .feature-grid,.product-grid,.topic-grid{grid-template-columns:1fr}
 .section-head{gap:18px;align-items:start}
 .community-strip{gap:28px}.community-strip .button{justify-self:start}
 .standards ul{grid-template-columns:1fr}
 .product-detail{min-height:auto;gap:30px;padding-top:60px}
 .product-detail-art{min-height:340px}
 .summary{position:static}
 .join form{width:min(100%,620px);flex-direction:column}
 footer{grid-template-columns:1fr 1fr;gap:36px}
 footer .footer-brand{grid-column:1/-1}
 .catalog-head,.info-banner{align-items:flex-start;flex-direction:column}
}
@media(max-width:560px){
 :root{--page-gutter:20px}
 .announcement{font-size:11px}.announcement span{padding-inline:5px}
 .cart-btn span:not(.cart-icon){display:none}
 h1{font-size:clamp(2.25rem,11vw,3.2rem)}h2{font-size:clamp(1.75rem,8vw,2.35rem)}
 .hero,.page-hero,.section,.community-strip,.standards,.join,.product-detail{padding-top:56px;padding-bottom:56px}
 .trust-row{grid-template-columns:1fr;gap:14px}
 .testimonial-viewport{min-height:290px;padding:34px 24px}
 .product-meta{align-items:flex-start;gap:14px;flex-direction:column}
 .product-detail-art>div{width:min(250px,86vw);height:330px}
 .form-grid{grid-template-columns:1fr}.wide{grid-column:auto}
 .product-back-link{margin:12px 0 0;width:100%}
 footer{grid-template-columns:1fr}
 footer .footer-brand{grid-column:auto}
}


/* Why Choose Provita home-page value grid */
.why-choose{padding:88px max(var(--page-gutter),calc((100vw - var(--content-max))/2));background:#dff7f6;border-block:1px solid #c9ece9}
.why-choose-inner{width:min(100%,var(--content-max));margin-inline:auto}
.why-choose-heading{max-width:760px;margin:0 auto 44px;text-align:center}
.why-choose-heading .eyebrow{margin-bottom:12px}
.why-choose-heading h2{max-width:760px;margin:0 auto 14px;color:var(--midnight-navy)}
.why-choose-heading p{max-width:680px;margin:0 auto}
.why-choose-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.why-item{min-height:225px;padding:26px 22px;display:flex;flex-direction:column;align-items:center;text-align:center;border:1px solid rgba(0,143,138,.2);border-radius:10px;background:rgba(255,255,255,.72);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.why-item:hover{transform:translateY(-3px);border-color:rgba(0,143,138,.45);box-shadow:0 14px 30px rgba(42,46,69,.08)}
.why-icon{width:54px;height:54px;margin-bottom:18px;display:grid;place-items:center;border-radius:50%;background:#fff;color:var(--teal-deep);box-shadow:0 8px 20px rgba(0,143,138,.12)}
.why-icon svg{width:30px;height:30px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.why-item h3{margin:0 0 9px;color:var(--midnight-navy);font-size:17px;font-weight:500}
.why-item p{margin:0;color:#5f6877;font-size:13px;line-height:1.65}
@media(max-width:960px){.why-choose-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.why-choose{padding:60px var(--page-gutter)}.why-choose-heading{margin-bottom:32px}.why-choose-grid{grid-template-columns:1fr}.why-item{min-height:0;align-items:flex-start;text-align:left}.why-icon{margin-bottom:14px}}


/* Supplied About hero campaign image */
.about-hero{min-height:520px;display:grid;grid-template-columns:minmax(0,.82fr) minmax(460px,1.18fr);align-items:center;gap:clamp(36px,5vw,78px);background-color:var(--midnight-navy);background-image:linear-gradient(135deg,rgba(0,184,176,.14),transparent 58%)}
.about-hero>*{width:100%;max-width:none;margin:0}
.about-hero-copy{align-self:center}
.about-hero-copy h1{max-width:14ch;margin-bottom:24px;color:#fff}
.about-hero-copy p{max-width:55ch;margin-bottom:0;color:#dfe4eb}
.about-hero-copy .eyebrow{color:var(--yellow)}
.about-hero-media{overflow:hidden;margin:0;border:1px solid rgba(255,255,255,.16);border-radius:12px;background:#fff;box-shadow:0 24px 55px rgba(0,0,0,.22)}
.about-hero-media img{display:block;width:100%;height:auto;aspect-ratio:600/263;object-fit:cover;object-position:center}
@media(max-width:980px){.about-hero{grid-template-columns:1fr;min-height:auto;gap:36px}.about-hero-copy h1{max-width:18ch}.about-hero-media{width:100%}}
@media(max-width:560px){.about-hero{padding-top:56px;padding-bottom:56px}.about-hero-media{border-radius:8px}.about-hero-media img{aspect-ratio:600/330;object-fit:cover}}


/* v5: Header logo sizing and refined Why Choose cards */
header .brand{display:flex!important;flex:0 0 150px!important;width:150px!important;height:52px!important;align-items:center!important;overflow:hidden!important}
header .brand img{display:block!important;width:150px!important;max-width:150px!important;height:44px!important;max-height:44px!important;object-fit:contain!important;object-position:left center!important}

.why-choose{padding-block:82px;background:#eef9f8;border-block:1px solid #d6efed}
.why-choose-heading{margin-bottom:38px}
.why-choose-heading h2{font-size:clamp(30px,3.2vw,44px);max-width:720px}
.why-choose-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.why-item{position:relative;min-height:0;padding:28px;display:grid;grid-template-columns:48px minmax(0,1fr);grid-template-rows:auto 1fr;column-gap:18px;row-gap:7px;align-items:start;text-align:left;border:1px solid #d8e9e7;border-radius:12px;background:#fff;box-shadow:0 8px 24px rgba(42,46,69,.055);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.why-item:hover{transform:translateY(-3px);border-color:#a9dcd8;box-shadow:0 16px 34px rgba(42,46,69,.09)}
.why-icon{grid-row:1/3;width:48px;height:48px;margin:0;display:grid;place-items:center;border:1px solid #bce5e2;border-radius:10px;background:#eaf9f7;color:var(--teal-deep);box-shadow:none}
.why-icon svg{width:25px;height:25px}
.why-item h3{margin:1px 0 0;font-size:16px;font-weight:500;line-height:1.35;color:var(--midnight-navy)}
.why-item p{margin:0;font-size:13px;line-height:1.6;color:#667080}
@media(max-width:900px){.why-choose-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:880px){header .brand{flex-basis:132px!important;width:132px!important}header .brand img{width:132px!important;max-width:132px!important;height:40px!important}}
@media(max-width:560px){header .brand{flex-basis:112px!important;width:112px!important}header .brand img{width:112px!important;max-width:112px!important;height:36px!important}.why-choose{padding-block:58px}.why-choose-grid{grid-template-columns:1fr}.why-item{padding:22px;grid-template-columns:44px minmax(0,1fr);column-gap:15px}.why-icon{width:44px;height:44px}}


/* v6: Uniform header logo containment across every page */
header > .brand{
  display:flex!important;
  flex:0 0 150px!important;
  width:150px!important;
  min-width:150px!important;
  max-width:150px!important;
  height:52px!important;
  min-height:52px!important;
  max-height:52px!important;
  align-items:center!important;
  justify-content:flex-start!important;
  overflow:hidden!important;
  line-height:0!important;
}
header > .brand > img{
  display:block!important;
  flex:none!important;
  width:150px!important;
  min-width:0!important;
  max-width:150px!important;
  height:44px!important;
  min-height:0!important;
  max-height:44px!important;
  margin:0!important;
  padding:0!important;
  object-fit:contain!important;
  object-position:left center!important;
  transform:none!important;
}
@media(max-width:880px){
  header > .brand{flex-basis:132px!important;width:132px!important;min-width:132px!important;max-width:132px!important;height:46px!important;min-height:46px!important;max-height:46px!important}
  header > .brand > img{width:132px!important;max-width:132px!important;height:40px!important;max-height:40px!important}
}
@media(max-width:560px){
  header > .brand{flex-basis:112px!important;width:112px!important;min-width:112px!important;max-width:112px!important;height:40px!important;min-height:40px!important;max-height:40px!important}
  header > .brand > img{width:112px!important;max-width:112px!important;height:34px!important;max-height:34px!important}
}

/* v7: WebPeachy-aligned content width system */
:root{
  --content-max:1140px;
  --page-gutter:24px;
}
header,
footer,
.hero,
.page-hero,
.section,
.community-strip,
.standards,
.join,
.product-detail,
.why-choose{
  padding-left:max(var(--page-gutter),calc((100vw - var(--content-max))/2));
  padding-right:max(var(--page-gutter),calc((100vw - var(--content-max))/2));
}
.hero-banner{
  padding-left:var(--page-gutter);
  padding-right:var(--page-gutter);
}
.hero-banner-placeholder,
.why-choose-inner,
.section-head,
.catalog-head,
.editorial,
.feature-grid,
.product-grid,
.topic-grid,
.checkout-grid,
.about-story{
  width:min(100%,var(--content-max));
  max-width:var(--content-max);
  margin-left:auto;
  margin-right:auto;
}
.info-banner,
.medical-note{
  width:min(calc(100% - (var(--page-gutter) * 2)),var(--content-max));
  max-width:var(--content-max);
  margin-left:auto;
  margin-right:auto;
}
@media(max-width:620px){
  :root{--page-gutter:15px}
}

/* v8: Products with Purpose section alignment repair */
.section.editorial{
  width:100%;
  max-width:none;
  display:grid;
  grid-template-columns:minmax(400px,.92fr) minmax(0,1.08fr);
  gap:clamp(48px,7vw,88px);
  align-items:center;
}
.section.editorial > div:first-child{
  width:100%;
  max-width:500px;
  margin:0;
  justify-self:start;
}
.section.editorial > div:first-child .eyebrow{
  margin-bottom:16px;
}
.section.editorial > div:first-child h2{
  max-width:11.5ch;
  margin-bottom:26px;
  font-size:clamp(34px,3.45vw,50px);
  line-height:1.14;
  letter-spacing:-.025em;
}
.section.editorial > div:first-child p{
  width:100%;
  max-width:46ch;
  margin-bottom:24px;
  font-size:16px;
  line-height:1.72;
}
.section.editorial > div:first-child .text-link{
  display:inline-flex;
  align-items:center;
  margin-top:2px;
}
.section.editorial .product-visual{
  width:100%;
  max-width:590px;
  min-height:410px;
  margin:0;
  padding:42px;
  justify-self:end;
  align-items:center;
}
.section.editorial .product-box{
  flex:1 1 0;
  width:auto;
  max-width:220px;
  min-width:0;
  height:290px;
}
@media(max-width:940px){
  .section.editorial{
    grid-template-columns:1fr;
    gap:42px;
  }
  .section.editorial > div:first-child,
  .section.editorial .product-visual{
    width:100%;
    max-width:720px;
    margin-inline:auto;
    justify-self:center;
  }
  .section.editorial > div:first-child h2{
    max-width:15ch;
  }
}
@media(max-width:560px){
  .section.editorial{
    gap:32px;
  }
  .section.editorial > div:first-child h2{
    max-width:none;
    font-size:clamp(30px,9vw,40px);
  }
  .section.editorial .product-visual{
    min-height:0;
    padding:22px;
    gap:12px;
  }
  .section.editorial .product-box{
    width:50%;
    height:235px;
    padding:24px 16px;
  }
  .section.editorial .product-box.accent{
    transform:translateY(14px);
  }
  .section.editorial .product-box strong{
    font-size:20px;
  }
}

/* v9: Full-page layout audit and About page repair */
:root{--content-max:1140px;--page-gutter:24px}

/* Keep every major page section inside one predictable content system. */
header,footer,.hero,.page-hero,.section,.community-strip,.standards,.join,.product-detail,.why-choose{
  padding-left:max(var(--page-gutter),calc((100vw - var(--content-max))/2));
  padding-right:max(var(--page-gutter),calc((100vw - var(--content-max))/2));
}
main>section{box-sizing:border-box}
.page-hero{min-height:390px;padding-top:76px;padding-bottom:76px}
.page-hero>h1,.page-hero>p,.page-hero>.eyebrow{width:100%;max-width:var(--content-max);margin-left:auto;margin-right:auto}
.page-hero>h1{max-width:min(18ch,var(--content-max))}
.section{width:100%;max-width:none;margin:0}
.section>*,.why-choose-inner{max-width:var(--content-max)}

/* About hero: no clipping, balanced copy and supplied photo. */
.page-hero.about-hero{
  min-height:500px;
  padding-top:72px;
  padding-bottom:72px;
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(440px,1.1fr);
  gap:clamp(42px,6vw,76px);
  align-items:center;
  overflow:hidden;
}
.about-hero>.about-hero-copy,.about-hero>.about-hero-media{
  width:100%;
  max-width:none;
  min-width:0;
  margin:0;
}
.about-hero-copy{align-self:center}
.about-hero-copy h1{
  max-width:15ch;
  margin:0 0 22px;
  font-size:clamp(42px,4.6vw,64px);
  line-height:1.08;
  color:#fff;
}
.about-hero-copy p{max-width:52ch;margin:0;color:#dfe4eb}
.about-hero-media{align-self:center;justify-self:end;overflow:hidden}
.about-hero-media img{width:100%;height:auto;aspect-ratio:600/263;object-fit:cover}

/* About story: use the full container instead of a narrow centered strip. */
.section.about-story{
  width:100%;
  max-width:none;
  padding-top:88px;
  padding-bottom:88px;
  display:grid;
  grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr);
  grid-template-rows:auto 1fr;
  column-gap:clamp(54px,8vw,104px);
  row-gap:12px;
  align-items:start;
}
.about-story>.eyebrow{
  grid-column:1;
  grid-row:1;
  width:auto;
  margin:0 0 4px;
  justify-self:start;
}
.about-story>h2{
  grid-column:1;
  grid-row:2;
  width:100%;
  max-width:11ch;
  margin:0;
  font-size:clamp(36px,4vw,52px);
  line-height:1.14;
}
.about-story>.about-story-copy{
  grid-column:2;
  grid-row:1/3;
  width:100%;
  max-width:650px;
  margin:0;
  justify-self:end;
}
.about-story-copy p{max-width:65ch;margin-bottom:20px}
.about-story-copy blockquote{margin:30px 0;padding:22px 26px;font-size:clamp(20px,2vw,27px)}
.about-story-closing{margin-bottom:0}

/* Audited internal layouts. */
.checkout-grid,.product-grid,.topic-grid,.feature-grid,.editorial,.catalog-head{
  width:100%;
  max-width:var(--content-max);
  margin-left:auto;
  margin-right:auto;
}
.checkout-grid{grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr)}
.product-detail{grid-template-columns:minmax(320px,.9fr) minmax(0,1.1fr);gap:clamp(48px,7vw,84px)}
.standards{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
.community-strip{grid-template-columns:minmax(0,1.3fr) auto}
.info-banner,.medical-note{width:min(calc(100% - 48px),var(--content-max));max-width:var(--content-max)}

@media(max-width:940px){
  .page-hero.about-hero{grid-template-columns:1fr;min-height:auto;gap:34px}
  .about-hero-copy h1{max-width:18ch}
  .about-hero-media{max-width:760px;justify-self:start}
  .section.about-story{grid-template-columns:1fr;grid-template-rows:auto;row-gap:18px}
  .about-story>.eyebrow,.about-story>h2,.about-story>.about-story-copy{grid-column:1;grid-row:auto;justify-self:start}
  .about-story>h2{max-width:16ch;margin-bottom:12px}
  .about-story>.about-story-copy{max-width:720px}
  .checkout-grid,.product-detail,.standards,.community-strip{grid-template-columns:1fr}
  .community-strip .button{justify-self:start}
}
@media(max-width:620px){
  :root{--page-gutter:15px}
  .page-hero{min-height:auto;padding-top:58px;padding-bottom:58px}
  .page-hero.about-hero{padding-top:58px;padding-bottom:58px}
  .about-hero-copy h1{max-width:none;font-size:clamp(36px,10vw,48px)}
  .about-hero-media img{aspect-ratio:600/330}
  .section.about-story{padding-top:64px;padding-bottom:64px}
  .about-story>h2{max-width:none;font-size:clamp(32px,9vw,42px)}
  .info-banner,.medical-note{width:calc(100% - 30px)}
}

/* v10: Internal page hero alignment debug */
/* A narrow h1 must not center independently inside a full-width page hero. */
.page-hero:not(.about-hero){
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.page-hero:not(.about-hero) > .eyebrow,
.page-hero:not(.about-hero) > h1,
.page-hero:not(.about-hero) > p,
.page-hero:not(.about-hero) > .button,
.page-hero:not(.about-hero) > .button-row{
  width:auto;
  margin-left:0;
  margin-right:0;
  align-self:flex-start;
}
.page-hero:not(.about-hero) > h1{
  max-width:18ch;
  margin-bottom:24px;
}
.page-hero:not(.about-hero) > p{
  width:100%;
  max-width:760px;
  margin-bottom:0;
}
.page-hero:not(.about-hero) > p + .button,
.page-hero:not(.about-hero) > p + .button-row{
  margin-top:26px;
}

/* Keep section-level headings aligned with their own content grids. */
.section > .section-head,
.section > .catalog-head,
.section > .feature-grid,
.section > .product-grid,
.section > .topic-grid,
.section > .expert-feature,
.section > .checkout-grid,
.section > .editorial,
.section > .testimonial-carousel{
  width:100%;
  max-width:var(--content-max);
  margin-left:auto;
  margin-right:auto;
}

/* The full section already provides the horizontal gutter. Avoid a second inset. */
.info-banner,
.medical-note{
  width:min(calc(100% - 48px),var(--content-max));
  margin-left:auto;
  margin-right:auto;
}

@media(max-width:620px){
  .page-hero:not(.about-hero) > h1{
    max-width:none;
  }
  .info-banner,
  .medical-note{
    width:calc(100% - 30px);
  }
}

/* v11: Shop hero with supplied Provita product composition */
.page-hero.shop-hero{
  min-height:560px;
  padding-top:64px;
  padding-bottom:64px;
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(440px,1.18fr);
  gap:clamp(36px,5vw,72px);
  align-items:center;
  overflow:hidden;
  background:#75d9df;
}
.shop-hero > .shop-hero-copy,
.shop-hero > .shop-hero-media{
  width:100%;
  max-width:none;
  min-width:0;
  margin:0;
}
.shop-hero-copy{
  position:relative;
  z-index:2;
  align-self:center;
}
.shop-hero-copy .eyebrow{
  margin-bottom:18px;
  color:#007f80;
}
.shop-hero-copy h1{
  max-width:9ch;
  margin:0 0 26px;
  color:var(--midnight-navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(58px,6.5vw,92px);
  font-weight:400;
  line-height:1.02;
  letter-spacing:-.045em;
}
.shop-hero-copy .shop-hero-support{
  width:auto;
  max-width:none;
  margin:0;
  color:var(--midnight-navy);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(22px,2.25vw,34px);
  line-height:1.3;
  letter-spacing:-.015em;
}
.shop-hero-media{
  position:relative;
  min-height:470px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.shop-hero-media::before{
  content:"";
  position:absolute;
  width:min(460px,78%);
  aspect-ratio:1;
  right:4%;
  bottom:4%;
  border-radius:50%;
  background:rgba(255,255,255,.22);
}
.shop-hero-media img{
  position:relative;
  z-index:1;
  width:min(100%,650px);
  max-height:500px;
  margin:0;
  object-fit:contain;
  object-position:center;
  filter:drop-shadow(0 25px 28px rgba(32,36,55,.16));
}
@media(max-width:940px){
  .page-hero.shop-hero{
    min-height:auto;
    grid-template-columns:1fr;
    gap:28px;
  }
  .shop-hero-copy h1{
    max-width:12ch;
  }
  .shop-hero-media{
    min-height:380px;
    justify-content:center;
  }
  .shop-hero-media img{
    max-height:400px;
  }
}
@media(max-width:620px){
  .page-hero.shop-hero{
    padding-top:52px;
    padding-bottom:36px;
  }
  .shop-hero-copy h1{
    max-width:none;
    margin-bottom:18px;
    font-size:clamp(48px,15vw,68px);
  }
  .shop-hero-copy .shop-hero-support{
    font-size:clamp(20px,6vw,27px);
  }
  .shop-hero-media{
    min-height:290px;
  }
  .shop-hero-media img{
    width:min(105%,430px);
    max-height:320px;
  }
}

/* v12: Restore Provita Poppins typography in the Shop hero */
.shop-hero-copy h1{
  font-family:Poppins,Arial,sans-serif;
  font-weight:600;
  line-height:1.08;
  letter-spacing:-.035em;
}
.shop-hero-copy .shop-hero-support{
  font-family:Poppins,Arial,sans-serif;
  font-weight:400;
  line-height:1.55;
  letter-spacing:-.01em;
}

/* v13: Remove the three-line menu control beside the cart */
.menu-btn,
#menuBtn{
  display:none!important;
}
.tools{
  gap:0;
}
@media(max-width:880px){
  header nav{
    display:flex;
    position:static;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    padding:0;
    background:transparent;
    border:0;
    box-shadow:none;
  }
}
@media(max-width:760px){
  header nav{
    display:none!important;
  }
}

/* v14: Unified typography scale and responsive Shop hero image */
:root{
  --type-h1:clamp(42px,4.8vw,64px);
  --type-h2:clamp(32px,3.4vw,46px);
  --type-h3:clamp(18px,1.5vw,22px);
  --type-body:16px;
  --type-lead:18px;
  --type-small:13px;
}

/* One consistent type hierarchy across all pages. */
h1,
.hero h1,
.page-hero h1,
.product-detail-copy h1,
.about-hero-copy h1,
.shop-hero-copy h1{
  font-family:Poppins,Arial,sans-serif!important;
  font-size:var(--type-h1)!important;
  font-weight:600!important;
  line-height:1.1!important;
  letter-spacing:-.035em!important;
}
h2,
.section h2,
.community-strip h2,
.join h2,
.drawer h2,
.about-story h2{
  font-family:Poppins,Arial,sans-serif!important;
  font-size:var(--type-h2)!important;
  font-weight:600!important;
  line-height:1.16!important;
  letter-spacing:-.025em!important;
}
h3,
.product-info h3,
.feature-grid h3,
.topic-grid h3,
.why-item h3,
.ecosystem h3{
  font-family:Poppins,Arial,sans-serif!important;
  font-size:var(--type-h3)!important;
  font-weight:500!important;
  line-height:1.35!important;
  letter-spacing:-.01em!important;
}
body,
p,
li,
label,
input,
select,
textarea,
button{
  font-size:var(--type-body);
}
.hero-content>p,
.page-hero>p,
.about-hero-copy p,
.product-detail-copy>p:not(.product-detail-price){
  font-size:var(--type-lead)!important;
  line-height:1.7!important;
}
.eyebrow,
.category,
.panel-label,
.announcement,
.product-detail-link,
footer,
footer p{
  font-size:var(--type-small);
}
.why-item p,
.ecosystem p,
.trust-row span{
  font-size:var(--type-small)!important;
}

/* Preserve readable context-specific sizes without changing the hierarchy. */
.product-detail-price{font-size:28px!important}
.product-box strong,.product-art strong{font-size:22px!important}
.trust-row b{font-size:20px!important}
.testimonial-slide blockquote{font-size:clamp(20px,2.4vw,28px)!important}
.shop-hero-copy .shop-hero-support{
  font-family:Poppins,Arial,sans-serif!important;
  font-size:var(--type-lead)!important;
  font-weight:400!important;
  line-height:1.7!important;
  letter-spacing:0!important;
}

/* Shop hero: image scales within its column and keeps its full transparent artwork. */
.page-hero.shop-hero{
  grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);
  min-height:520px;
  gap:clamp(30px,5vw,64px);
  padding-top:56px;
  padding-bottom:56px;
}
.shop-hero-copy{
  min-width:0;
}
.shop-hero-copy h1{
  width:100%;
  max-width:11ch!important;
  margin-bottom:22px;
}
.shop-hero-media{
  width:100%;
  min-width:0;
  min-height:0;
  aspect-ratio:1/1;
  display:grid;
  place-items:center;
  justify-self:end;
  overflow:visible;
}
.shop-hero-media::before{
  width:min(78%,440px);
  right:8%;
  bottom:8%;
}
.shop-hero-media img{
  display:block;
  width:min(100%,560px)!important;
  height:auto!important;
  max-width:100%!important;
  max-height:none!important;
  aspect-ratio:1/1;
  object-fit:contain!important;
  object-position:center!important;
}

@media(max-width:940px){
  .page-hero.shop-hero{
    grid-template-columns:1fr;
    min-height:auto;
    gap:24px;
  }
  .shop-hero-copy h1{
    max-width:14ch!important;
  }
  .shop-hero-media{
    width:min(100%,620px);
    aspect-ratio:1/1;
    margin-inline:auto;
    justify-self:center;
  }
  .shop-hero-media img{
    width:min(100%,520px)!important;
  }
}
@media(max-width:620px){
  :root{
    --type-h1:clamp(36px,10vw,48px);
    --type-h2:clamp(30px,8vw,40px);
    --type-h3:18px;
    --type-body:15px;
    --type-lead:16px;
    --type-small:12px;
  }
  .page-hero.shop-hero{
    padding-top:48px;
    padding-bottom:28px;
  }
  .shop-hero-copy h1{
    max-width:none!important;
  }
  .shop-hero-media{
    width:min(108%,430px);
    margin-inline:-4%;
  }
  .shop-hero-media img{
    width:100%!important;
  }
}

/* v15: Responsive Shop hero artwork sizing and hover interaction */
.page-hero.shop-hero{
  grid-template-columns:minmax(0,.96fr) minmax(340px,1.04fr);
  min-height:510px;
  gap:clamp(34px,5vw,70px);
}
.shop-hero-media{
  width:min(100%,540px);
  aspect-ratio:1/1;
  justify-self:end;
  place-items:center;
  overflow:visible;
  perspective:1000px;
}
.shop-hero-media::before{
  width:min(76%,400px);
  right:8%;
  bottom:8%;
  transition:transform .45s ease,opacity .45s ease;
}
.shop-hero-media img{
  width:min(92%,500px)!important;
  max-width:500px!important;
  transform:translate3d(0,0,0) scale(1);
  transform-origin:center;
  transition:transform .45s cubic-bezier(.2,.75,.2,1),filter .45s ease;
  will-change:transform;
}
@media(hover:hover) and (pointer:fine){
  .shop-hero-media:hover img,
  .shop-hero-media:focus-within img{
    transform:translate3d(-8px,-10px,28px) scale(1.055);
    filter:drop-shadow(0 32px 34px rgba(32,36,55,.22));
  }
  .shop-hero-media:hover::before,
  .shop-hero-media:focus-within::before{
    transform:scale(1.06) translate(-4px,4px);
    opacity:.9;
  }
}
@media(max-width:940px){
  .shop-hero-media{
    width:min(88vw,520px);
    justify-self:center;
  }
  .shop-hero-media img{
    width:min(90%,470px)!important;
    max-width:470px!important;
  }
}
@media(max-width:620px){
  .shop-hero-media{
    width:min(92vw,390px);
    margin-inline:auto;
  }
  .shop-hero-media img{
    width:92%!important;
    max-width:360px!important;
  }
}
@media(prefers-reduced-motion:reduce){
  .shop-hero-media img,
  .shop-hero-media::before{
    transition:none!important;
    transform:none!important;
  }
}

/* v16: More expressive, interactive Shop hero */
.page-hero.shop-hero{
  position:relative;
  isolation:isolate;
  min-height:560px;
  background:
    radial-gradient(circle at 79% 46%,rgba(255,255,255,.32) 0 15%,transparent 15.3%),
    radial-gradient(circle at 86% 51%,rgba(255,255,255,.16) 0 27%,transparent 27.3%),
    linear-gradient(118deg,#7be1e2 0%,#69d1d8 58%,#5ac4ce 100%);
}
.page-hero.shop-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
  opacity:.32;
  background-image:radial-gradient(rgba(32,36,55,.16) 1px,transparent 1.4px);
  background-size:22px 22px;
  -webkit-mask-image:linear-gradient(90deg,#000 0%,transparent 47%);
  mask-image:linear-gradient(90deg,#000 0%,transparent 47%);
}
.page-hero.shop-hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  width:220px;
  height:220px;
  left:-75px;
  bottom:-94px;
  border:42px solid rgba(255,111,145,.25);
  border-radius:50%;
}
.shop-hero-copy{
  padding:34px 0;
}
.shop-hero-copy .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border:1px solid rgba(0,127,128,.24);
  border-radius:999px;
  background:rgba(255,255,255,.3);
  backdrop-filter:blur(8px);
}
.shop-hero-copy .eyebrow::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--coral);
  box-shadow:0 0 0 5px rgba(255,111,145,.15);
}
.shop-hero-copy h1{
  max-width:10ch!important;
  text-shadow:0 2px 0 rgba(255,255,255,.16);
}
.shop-hero-copy .shop-hero-support{
  max-width:34ch;
}
.shop-hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:30px;
}
.shop-hero-actions .button{
  min-height:46px;
  padding:12px 19px;
}
.shop-hero-actions .primary{
  box-shadow:0 12px 28px rgba(217,82,117,.24);
}
.shop-hero-link{
  border:1px solid rgba(32,36,55,.4)!important;
  background:rgba(255,255,255,.22)!important;
  color:var(--midnight-navy)!important;
  backdrop-filter:blur(8px);
}
.shop-hero-link:hover,
.shop-hero-link:focus-visible{
  border-color:var(--midnight-navy)!important;
  background:#fff!important;
}
.shop-hero-media{
  width:min(100%,580px);
  transform-style:preserve-3d;
}
.shop-hero-media::before{
  width:min(80%,430px);
  background:linear-gradient(145deg,rgba(255,255,255,.34),rgba(255,255,255,.12));
  border:1px solid rgba(255,255,255,.28);
  box-shadow:inset 0 0 50px rgba(255,255,255,.15);
}
.shop-hero-media::after{
  content:"";
  position:absolute;
  left:11%;
  right:8%;
  bottom:9%;
  height:30px;
  border-radius:50%;
  background:rgba(32,36,55,.18);
  filter:blur(18px);
  transform:translateZ(-20px);
}
.shop-hero-media img{
  width:min(100%,540px)!important;
  max-width:540px!important;
  transform:translate3d(0,0,20px) rotate(-1deg);
  filter:drop-shadow(0 25px 24px rgba(32,36,55,.17));
}
.shop-float-note{
  position:absolute;
  z-index:3;
  left:3%;
  bottom:13%;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:8px;
  background:rgba(255,255,255,.82);
  color:var(--midnight-navy);
  font-size:12px;
  font-weight:500;
  letter-spacing:.02em;
  box-shadow:0 14px 30px rgba(32,36,55,.12);
  backdrop-filter:blur(10px);
  transition:transform .45s ease;
}
@media(hover:hover) and (pointer:fine){
  .shop-hero-media:hover img,
  .shop-hero-media:focus-within img{
    transform:translate3d(-8px,-14px,45px) rotate(1deg) scale(1.07);
  }
  .shop-hero-media:hover .shop-float-note,
  .shop-hero-media:focus-within .shop-float-note{
    transform:translate(-8px,-12px);
  }
}
@media(max-width:940px){
  .page-hero.shop-hero{
    background:
      radial-gradient(circle at 50% 75%,rgba(255,255,255,.28) 0 19%,transparent 19.3%),
      linear-gradient(145deg,#7be1e2,#5bc6d0);
  }
  .shop-hero-copy{
    padding-bottom:0;
  }
  .shop-hero-copy h1{
    max-width:13ch!important;
  }
  .shop-hero-media{
    width:min(100%,570px);
  }
}
@media(max-width:620px){
  .page-hero.shop-hero::before{
    opacity:.18;
    -webkit-mask-image:linear-gradient(#000,transparent 46%);
    mask-image:linear-gradient(#000,transparent 46%);
  }
  .shop-hero-actions{
    align-items:stretch;
    flex-direction:column;
  }
  .shop-hero-actions .button{
    width:100%;
  }
  .shop-hero-media{
    width:min(102%,410px);
  }
  .shop-float-note{
    left:1%;
    bottom:10%;
    font-size:11px;
  }
}
@media(prefers-reduced-motion:reduce){
  .shop-float-note{
    transition:none!important;
    transform:none!important;
  }
}

/* v17: Additional Shop hero message */
.shop-hero-description{
  width:100%;
  max-width:43ch;
  margin:0 0 13px;
  color:var(--midnight-navy);
  font-family:Poppins,Arial,sans-serif;
  font-size:clamp(17px,1.45vw,20px);
  font-weight:500;
  line-height:1.55;
  letter-spacing:-.01em;
}
.shop-hero-description + .shop-hero-support{
  margin-top:0;
  color:rgba(32,36,55,.82);
}
@media(max-width:620px){
  .shop-hero-description{
    max-width:35ch;
    margin-bottom:10px;
    font-size:16px;
  }
}
