:root {
  --green:#0b593b;
  --green-2:#127a4f;
  --green-dark:#072914;
  --lime:#9fca38;
  --lime-soft:#e7f6c8;
  --cream:#f8f4e9;
  --text:#17251b;
  --muted:#68736b;
  --line:#e4eadf;
  --white:#fff;
  --shadow:0 18px 50px rgba(20,45,27,.13);
  --radius:24px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  font-family:Lato,Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
a {
  text-decoration:none;
  color:inherit;
}
img {
  max-width:100%;
  display:block;
}
.container {
  width:min(1200px,92vw);
  margin:auto;
}
.site-announcement {
  background:var(--green);
  color:white;
  font-size:.88rem;
  padding:8px 0;
}
.announcement-inner {
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}
.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid #edf1e8;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.header-inner {
  display:grid;
  grid-template-columns:150px minmax(230px,1fr) auto auto;
  align-items:center;
  gap:26px;
  min-height:110px;
}
.site-logo img {
  width:120px;
  max-height:74px;
  object-fit:contain;
}
.site-search {
  display:flex;
  align-items:center;
  border-bottom:1.5px solid #111;
  min-width:240px;
}
.site-search input {
  border:0;
  outline:0;
  width:100%;
  padding:14px 10px;
  background:transparent;
  font-size:1rem;
}
.site-search button {
  border:0;
  background:transparent;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
  color:#111;
  width:44px;
  min-width:44px;
  height:44px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.site-nav {
  display:flex;
  align-items:center;
  gap:28px;
  font-size:1.06rem;
  font-weight:700;
  color:#050d07;
}
.site-nav a:hover {
  color:var(--green-2);
}
.site-actions {
  display:flex;
  align-items:center;
  gap:12px;
}
.currency-select {
  height:44px;
  border:1px solid #1f1f1f;
  background:white;
  padding:0 10px;
  font-weight:700;
}
.header-icon {
  width:44px;
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:1.6rem;
  line-height:1;
}
.cart-pill {
  height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:900;
  color:var(--green);
}
.mobile-menu-btn {
  display:none;
  border:0;
  background:var(--green);
  color:#fff;
  border-radius:12px;
  width:44px;
  height:44px;
  font-size:1.2rem;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:0;
  background:var(--green);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(18,122,79,.2);
}
.btn:hover {
  transform:translateY(-1px);
}
.btn.secondary {
  background:#fff;
  color:var(--green);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn.dark {
  background:var(--green-dark);
}
.btn-large {
  padding:15px 24px;
}
.eyebrow {
  display:inline-flex;
  padding:7px 13px;
  border:1px solid #cce8b5;
  border-radius:999px;
  color:var(--green);
  background:#f5ffe9;
  font-weight:900;
  font-size:.82rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.eyebrow.light {
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.25);
  color:#fff;
}
.link-arrow {
  color:var(--green);
  font-weight:900;
}
.empty-state {
  grid-column:1/-1;
  border:1px dashed #bdd0b5;
  border-radius:18px;
  padding:24px;
  background:#fbfff8;
  color:var(--muted);
}
.home-slider {
  position:relative;
  overflow:hidden;
  background:#dcebc9;
  min-height:560px;
  padding:0;
}
.slider-track {
  position:relative;
  min-height:560px;
}
.slider-slide {
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .7s ease,visibility .7s ease;
  background:#dcebc9;
  overflow:hidden;
}
.slider-slide::before {
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(6,30,11,.60),rgba(255,255,255,.12));
}
.slider-slide-bg {
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.slider-slide.is-active {
  opacity:1;
  visibility:visible;
}
.slide-grid {
  position:relative;
  z-index:2;
  min-height:560px;
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  gap:36px;
}
.slide-copy {
  color:white;
  text-shadow:0 3px 16px rgba(0,0,0,.28);
  padding:60px 0;
}
.slide-kicker {
  display:inline-flex;
  color:#fff;
  background:rgba(0,0,0,.26);
  border:1px solid rgba(255,255,255,.35);
  padding:8px 15px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.78rem;
}
.slide-copy h1 {
  font-size:clamp(2.6rem,5vw,5.3rem);
  line-height:.98;
  margin:18px 0 18px;
  font-weight:900;
}
.slide-copy p {
  font-size:1.18rem;
  max-width:620px;
  color:#f7fff1;
}
.slide-actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}
.slide-visual {
  display:flex;
  justify-content:flex-end;
}
.slide-visual img {
  width:min(620px,100%);
  height:auto;
  filter:drop-shadow(0 28px 42px rgba(0,0,0,.32));
}
.slider-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:48px;
  height:70px;
  border:0;
  background:rgba(0,0,0,.18);
  color:#fff;
  font-size:3rem;
  cursor:pointer;
}
.slider-arrow:hover {
  background:rgba(0,0,0,.34);
}
.slider-prev {
  left:18px;
}
.slider-next {
  right:18px;
}
.slider-dots {
  position:absolute;
  bottom:4px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:2px;
  z-index:6;
}
.slider-dots button {
  position:relative;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  border-radius:999px;
  background:transparent;
  cursor:pointer;
}
.slider-dots button::after {
  content:'';
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  transform:translate(-50%,-50%);
}
.slider-dots button.is-active::after {
  width:34px;
  background:#fff;
}
.logo-strip {
  padding:0;
  background:#effffb;
  border-top:1px solid rgba(14,105,71,.08);
  border-bottom:1px solid rgba(14,105,71,.12);
  box-shadow:0 8px 24px rgba(11,89,59,.06);
  overflow:hidden;
}

.logo-strip-track {
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(24px,5vw,64px);
  padding:10px max(24px,calc((100vw - 1200px) / 2));
  overflow-x:auto;
  white-space:nowrap;
  scrollbar-width:none;
}

.logo-strip-track::-webkit-scrollbar {
  display:none;
}

.logo-strip-item {
  display:inline-flex;
  align-items:center;
  gap:13px;
  color:#0b1510;
  font-weight:900;
  font-size:clamp(1rem,1.7vw,1.35rem);
  text-decoration:none;
  flex:0 0 auto;
}

.logo-strip-item:hover {
  color:var(--green);
}

.strip-icon {
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-size:2rem;
  line-height:1;
  background:#e9f7db;
}

.strip-icon-pink {
  color:#ed2798;
  background:#fff0fa;
}

.strip-icon-blue {
  color:#295edb;
  background:#eef4ff;
}

.strip-icon-teal {
  color:#047a79;
  background:#e8fffb;
}

.strip-icon-green {
  color:#5b8d30;
  background:#effbdc;
}

.logo-strip-inner {
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
}

section {
  padding:72px 0;
}
.section-title {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:25px;
  margin-bottom:30px;
}
.section-title.center {
  text-align:center;
  justify-content:center;
}
.section-title h2 {
  font-size:clamp(1.9rem,3vw,3rem);
  line-height:1.08;
  margin:10px 0 0;
  color:#15351b;
}
.section-title p {
  margin:9px 0 0;
  color:var(--muted);
  max-width:650px;
}
.grid {
  display:grid;
  gap:24px;
}
.grid-3 {
  grid-template-columns:repeat(3,1fr);
}
.grid-4 {
  grid-template-columns:repeat(4,1fr);
}
.card {
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  background:white;
  box-shadow:0 8px 24px rgba(37,51,41,.05);
}
.video-story {
  background:linear-gradient(180deg,#fff,#f8fbf3);
}
.video-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:center;
}
.video-copy h2 {
  font-size:clamp(2.1rem,3vw,3rem);
  line-height:1.02;
  margin:14px 0;
  color:#15351b;
}
.video-copy p {
  color:var(--muted);
  font-size:1.08rem;
}
.check-list {
  padding:0;
  margin:22px 0;
  list-style:none;
}
.check-list li {
  padding:4px 0 4px 22px;
  position:relative;
  font-weight:800;
}
.check-list li:before {
  content:'✓';
  position:absolute;
  left:0;
  top:2px;
  color:var(--green);
  font-weight:900;
}
.video-card {
  position:relative;
  border:0;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
  padding:0;
  background:#000;
  min-height:360px;
}
.video-card img {
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  opacity:.88;
}
.video-card:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.54));
}
.play-button {
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:86px;
  height:86px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  box-shadow:0 20px 40px rgba(0,0,0,.28);
}
.video-card strong {
  position:absolute;
  z-index:2;
  left:28px;
  bottom:24px;
  color:#fff;
  font-size:1.4rem;
  text-align:left;
}
.goals-section {
  background:#fff;
  padding:66px 0 58px;
}

.category-title-tight {
  margin-bottom:24px;
}

.wellness-carousel-wrap {
  position:relative;
}

.wellness-category-track {
  display:flex;
  gap:34px;
  align-items:flex-start;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:4px 12px 10px;
  scrollbar-width:none;
}

.wellness-category-track::-webkit-scrollbar {
  display:none;
}

.wellness-category-card {
  flex:0 0 170px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:15px;
  scroll-snap-align:center;
  color:#555;
  font-weight:900;
}

.wellness-category-card:hover {
  color:var(--green);
}

.wellness-category-circle {
  width:156px;
  height:156px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#006c68;
  box-shadow:0 18px 36px rgba(0,85,80,.16);
  overflow:hidden;
  transition:.22s ease;
}

.wellness-category-card:hover .wellness-category-circle {
  transform:translateY(-5px);
  box-shadow:0 24px 44px rgba(0,85,80,.24);
}

.wellness-category-circle img {
  width:94%;
  height:94%;
  object-fit:contain;
}

.wellness-category-card strong {
  display:block;
  font-size:1.08rem;
  line-height:1.25;
}

.wellness-carousel-arrow {
  position:absolute;
  top:68px;
  z-index:4;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(11,89,59,.16);
  background:#fff;
  color:#4f6255;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.2rem;
  line-height:1;
  cursor:pointer;
}

.wellness-carousel-arrow:hover {
  color:#fff;
  background:var(--green);
}

.wellness-carousel-prev {
  left:-8px;
}

.wellness-carousel-next {
  right:-8px;
}

.goal-scroll {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.goal-tile {
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg,#fff,#f6fff0);
  min-height:190px;
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:0 12px 34px rgba(23,55,27,.06);
  transition:.25s ease;
}

.goal-tile:hover {
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}

.goal-tile span {
  font-size:2.2rem;
}

.goal-tile strong {
  font-size:1.05rem;
  color:#15351b;
}

.goal-tile small {
  color:var(--muted);
  line-height:1.45;
}

.featured-section {
  background:#f8fbf5;
}
.product-showcase {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.product-card {
  display:flex;
  flex-direction:column;
  overflow:hidden;
  padding:0;
  border-radius:24px;
  background:#fff;
}
.product-img {
  height:250px;
  background:radial-gradient(circle,#ecf7de,#fff 66%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.product-img img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.product-img img:not(.product-placeholder-img) {
  object-fit:cover;
  padding:0;
}
.product-body {
  padding:20px;
}
.product-body h3 {
  margin:12px 0 8px;
  line-height:1.2;
  font-size:1.1rem;
}
.product-body p {
  color:var(--muted);
  font-size:.95rem;
  min-height:54px;
}
.price {
  font-size:1.35rem;
  font-weight:900;
  color:var(--green);
}
.badge {
  display:inline-flex;
  padding:4px 10px;
  border-radius:999px;
  background:#e9f7db;
  color:var(--green);
  font-size:.76rem;
  font-weight:900;
}
.product-card-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
}
.quick-cart {
  width:42px;
  height:42px;
  border-radius:999px;
  border:0;
  background:var(--green);
  color:white;
  font-size:1.6rem;
  font-weight:900;
  cursor:pointer;
}
.collection-band {
  background:linear-gradient(135deg,var(--green-dark),#0b593b);
  color:#fff;
}
.collection-grid {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:center;
}
.collection-grid h2 {
  font-size:clamp(2rem,4vw,3.6rem);
  line-height:1.05;
  margin:12px 0;
}
.collection-grid p {
  color:#e9f6e4;
}
.category-pills {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.category-pills a {
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:900;
}
.category-pills a:hover {
  background:#fff;
  color:var(--green);
}

/* ================================
   Quality commitment timeline
   ================================ */
.quality-timeline-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 76px 0 92px;
}

.quality-timeline-container {
  width: min(1180px, 92vw);
}

.quality-timeline-top {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.quality-timeline-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f3f6f2;
  color: #42564a;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quality-timeline-arrow:hover {
  background: var(--green);
  color: #fff;
}

.quality-timeline-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-top: 1px dashed #cfd9cf;
  border-bottom: 1px dashed #cfd9cf;
}

.quality-timeline-tab {
  position: relative;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: #006c68;
  font-size: clamp(1rem, 1.3vw, 1.55rem);
  font-weight: 800;
  cursor: pointer;
  padding: 10px 8px;
}

.quality-timeline-tab::before,
.quality-timeline-tab::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  background: currentColor;
  transform: translateY(-50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: .2s ease;
}

.quality-timeline-tab::before {
  left: 8px;
}

.quality-timeline-tab::after {
  right: 8px;
}

.quality-timeline-tab.is-active {
  color: var(--green);
}

.quality-timeline-tab.is-active::before,
.quality-timeline-tab.is-active::after {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1);
}

.quality-timeline-tab.is-active {
  box-shadow:
    inset 0 2px 0 rgba(0, 108, 104, .75),
    inset 0 -2px 0 rgba(0, 108, 104, .75);
}

.quality-stage-wrap {
  position: relative;
  min-height: 360px;
}

.quality-stage {
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}

.quality-stage.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: qualityStageFade .38s ease both;
}

.quality-stage-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.quality-stage-image {
  position: relative;
  min-height: 330px;
  border-radius: 0;
  overflow: hidden;
  background: #f4fbef;
}

.quality-stage-image::before {
  content: '';
  position: absolute;
  inset: auto auto -70px -90px;
  width: 260px;
  height: 260px;
  border: 2px solid rgba(0, 108, 104, .75);
  border-radius: 50%;
  z-index: 2;
}

.quality-stage-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.quality-stage-copy {
  padding: 20px 0;
}

.quality-stage-tag {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e7efec;
  color: #0b5142;
  font-size: .88rem;
  font-weight: 800;
}

.quality-stage-copy h2 {
  margin: 22px 0 16px;
  color: #006c68;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 500;
}

.quality-stage-copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #1e2b25;
  font-size: 1rem;
  line-height: 1.65;
}

@keyframes qualityStageFade {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media(max-width: 1000px) {
  .quality-timeline-top {
    grid-template-columns: 38px 1fr 38px;
    gap: 10px;
  }

  .quality-timeline-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .quality-timeline-tabs::-webkit-scrollbar {
    display: none;
  }

  .quality-timeline-tab {
    flex: 0 0 auto;
    min-width: 170px;
  }

  .quality-stage-grid {
    grid-template-columns: 1fr;
  }

  .quality-stage-image img {
    height: 300px;
  }
}

@media(max-width: 640px) {
  .quality-timeline-section {
    padding: 56px 0 68px;
  }

  .quality-stage-copy h2 {
    font-size: 2rem;
  }

  .quality-stage-image,
  .quality-stage-image img {
    min-height: 240px;
    height: 240px;
  }
}

.newsletter-block {
  background:linear-gradient(135deg,#143817,#0b593b);
  color:#fff;
}
.newsletter-inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}
.newsletter-inner h2 {
  font-size:clamp(2rem,3vw,2.2rem);
  margin:12px 0;
}
.newsletter-inner p {
  color:#e9f6e4;
}
.newsletter-form {
  display:flex;
  gap:12px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  padding:12px;
  border-radius:999px;
}
.newsletter-form input {
  flex:1;
  border:0;
  outline:0;
  border-radius:999px;
  padding:0 18px;
  min-height:48px;
}
.video-modal[hidden] {
  display:none;
}
.video-modal {
  position:fixed;
  inset:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.video-modal-backdrop {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.68);
}
.video-modal-box {
  position:relative;
  width:min(720px,94vw);
  background:#fff;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  overflow:hidden;
}
.video-modal-close {
  position:absolute;
  right:14px;
  top:14px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:0;
  background:#fff;
  font-size:1.5rem;
  z-index:2;
  cursor:pointer;
}
.video-placeholder {
  padding:54px 28px;
  text-align:center;
  background:radial-gradient(circle at top,#e7f6c8,#fff 70%);
}
.video-placeholder img {
  width:220px;
  margin:0 auto 18px;
}
.video-placeholder p {
  color:var(--muted);
}
.footer {
  background:#172519;
  color:#dfe8dc;
  padding:55px 0 22px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:30px;
}
.footer a {
  color:#dfe8dc;
  display:block;
  margin:8px 0;
}
.footer small {
  color:#aebcac;
}
.page-hero {
  position:relative;
  overflow:hidden;
  padding:82px 0;
  background:
    linear-gradient(90deg,rgba(4,34,17,.90) 0%,rgba(6,62,34,.74) 52%,rgba(13,105,65,.28) 100%),
    var(--page-hero-bg,url('../img/page-heroes/default.svg'));
  background-size:cover;
  background-position:center;
  color:#fff;
}

.page-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 82% 18%,rgba(159,202,56,.24),transparent 34%),
    radial-gradient(circle at 16% 88%,rgba(255,255,255,.10),transparent 28%);
  pointer-events:none;
}

.page-hero::after {
  content:'';
  position:absolute;
  right:-120px;
  top:-160px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  pointer-events:none;
}

.page-hero .container {
  position:relative;
  z-index:2;
}

.page-hero .eyebrow {
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.30);
  color:#fff;
}

.page-hero h1 {
  max-width:760px;
  font-size:clamp(2.6rem,4.6vw,5rem);
  line-height:1.02;
  margin:14px 0 14px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.035em;
}

.page-hero p {
  max-width:680px;
  color:#eefbea;
  font-size:1.08rem;
  margin:0;
}

.product-page-hero {
  background-position:center;
}

.content {
  max-width:850px;
}
.content h2 {
  color:#19351b;
}
.filters {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:25px;
}
.form-control {
  width:100%;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.alert {
  padding:12px 16px;
  border-radius:14px;
  margin:15px 0;
}
.alert.success {
  background:#e5f7d9;
  color:#265c1f;
}
.alert.error {
  background:#ffe5e5;
  color:#8a1f1f;
}
.table {
  width:100%;
  border-collapse:collapse;
  background:white;
}
.table th,.table td {
  border-bottom:1px solid var(--line);
  padding:12px;
  text-align:left;
}
.product-detail {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:35px;
}
.detail-img {
  background:#f5f8f0;
  border-radius:24px;
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.detail-img img {
  max-width:100%;
  max-height:420px;
  object-fit:contain;
}
.tabs {
  display:grid;
  gap:12px;
  margin-top:30px;
}
.tab-box {
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

/* ================================
   Shop hero with category background
   ================================ */
.shop-hero {
  position:relative;
  overflow:hidden;
  padding:82px 0;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(90deg,rgba(4,34,17,.90) 0%,rgba(6,62,34,.72) 48%,rgba(13,105,65,.28) 100%),
    var(--shop-hero-bg,url('../img/shop-heroes/shop.svg'));
  background-size:cover;
  background-position:center;
  color:#fff;
}

.shop-hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 82% 18%,rgba(159,202,56,.24),transparent 34%),
    radial-gradient(circle at 16% 88%,rgba(255,255,255,.10),transparent 28%);
  pointer-events:none;
}

.shop-hero::after {
  content:'';
  position:absolute;
  right:-120px;
  top:-160px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  pointer-events:none;
}

.shop-hero-inner {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:30px;
  align-items:center;
}

.shop-hero .eyebrow {
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.28);
  color:#fff;
}

.shop-hero h1 {
  max-width:650px;
  font-size:clamp(2.6rem,4.6vw,5rem);
  line-height:1.02;
  margin:14px 0 14px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.035em;
}

.shop-hero p {
  max-width:650px;
  color:#eefbea;
  font-size:1.08rem;
}

.shop-search-card {
  position:relative;
  z-index:3;
  border:1px solid rgba(255,255,255,.30);
  border-radius:24px;
  background:rgba(255,255,255,.94);
  padding:20px;
  box-shadow:0 22px 60px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}

.shop-search-card label {
  display:block;
  font-weight:900;
  margin-bottom:8px;
  color:#102016;
}

.shop-search-card div {
  display:flex;
  gap:10px;
}

.shop-search-card input {
  flex:1;
  border:1px solid var(--line);
  border-radius:999px;
  padding:0 16px;
}

.shop-layout-section {
  background:#fff;
}
.shop-layout {
  display:grid;
  grid-template-columns:260px 1fr;
  gap:30px;
}
.shop-sidebar {
  position:sticky;
  top:132px;
  align-self:start;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  background:#fbfdf8;
}
.shop-sidebar h3 {
  margin:18px 0 10px;
}
.shop-sidebar h3:first-child {
  margin-top:0;
}
.filter-link {
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:#26382b;
  font-weight:800;
}
.filter-link:hover {
  background:#e9f7db;
  color:var(--green);
}
.shop-toolbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
  padding:14px 18px;
  background:#fbfdf8;
  border:1px solid var(--line);
  border-radius:18px;
}
.shop-toolbar span {
  color:var(--muted);
}
.pager-wrap {
  margin-top:30px;
}
/* ================================
   Product ratings and share buttons
   ================================ */

.product-rating-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    margin-top: 18px;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    min-width: 0;
}

.product-rating-number {
    color: #102716;
    font-size: 1.22rem;
    font-weight: 900;
}

.product-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #f5a400;
    font-size: 15px;
}

.product-review-total {
    color: #17251b;
    font-size: 13px;
    font-weight: 800;
}

.product-share-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
}

.product-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    margin: 0;
    padding: 0;
    color: #fff !important;
    font-size: 15px;
    line-height: 1;
    text-decoration: none !important;
    border-radius: 0;
    transition:
        transform .18s ease,
        opacity .18s ease;
}

.product-share-button:hover {
    color: #fff !important;
    opacity: .88;
    transform: translateY(-2px);
}

.product-share-button.share-email {
    background: #3187e8;
}

.product-share-button.share-x {
    background: #252525;
}

.product-share-button.share-facebook {
    background: #4267a9;
}

.product-share-button.share-linkedin {
    background: #087ba7;
}

.product-share-button.share-whatsapp {
    background: #16a836;
}

/* ================================
   Product card rating
   ================================ */

.product-card-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
    margin: 7px 0 8px;
}

.product-card-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #ffb000;
    font-size: 14px;
    line-height: 1;
}

.product-card-stars .far {
    color: #d8dde3;
}

.product-card-rating-average {
    color: #26322b;
    font-size: 13px;
    font-weight: 800;
}

.product-card-review-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
    margin: -5px 0 !important;
    padding: 0 5px !important;
    color: #657269;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
}

.product-card-review-count:hover {
    color: var(--green);
    text-decoration: underline;
}

@media (max-width: 760px) {
    .product-rating-share {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .product-share-buttons {
        justify-content: flex-start;
        width: 100%;
    }
}
@media(max-width:1050px) {
  .header-inner {
    grid-template-columns:120px 1fr auto;
  }
  .site-nav {
    position:absolute;
    left:0;
    right:0;
    top:100%;
    display:none;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:18px 4vw;
    box-shadow:0 18px 30px rgba(0,0,0,.08);
  }
  .site-header.is-open .site-nav {
    display:grid;
    grid-template-columns:repeat(3,1fr);
  }
  .mobile-menu-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .currency-select {
    display:none;
  }
  .site-logo img {
    width:105px;
  }
  .header-inner {
    min-height:88px;
  }
  .product-showcase,.goal-scroll {
    grid-template-columns:repeat(2,1fr);
  }
  .quality-grid {
    grid-template-columns:1fr 1fr;
  }
  .quality-card.big {
    grid-column:1/-1;
  }
  .shop-layout {
    grid-template-columns:1fr;
  }
  .shop-sidebar {
    position:relative;
    top:auto;
  }
  .shop-sidebar .filter-link {
    display:inline-block;
    margin:4px;
  }
  .shop-hero-inner {
    grid-template-columns:1fr;
  }
  .grid-3 {
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:850px) {
  .site-search {
    grid-column:1/-1;
    order:4;
  }
  .header-inner {
    grid-template-columns:110px 1fr;
    gap:12px;
    padding:10px 0;
  }
  .site-actions {
    justify-content:flex-end;
  }
  .site-nav {
    top:100%;
  }
  .slide-grid,.video-grid,.collection-grid,.newsletter-inner,.product-detail,.footer-grid {
    grid-template-columns:1fr;
  }
  .slide-visual {
    display:none;
  }
  .slide-copy {
    padding:54px 24px;
  }
  .home-slider,.slider-track,.slide-grid {
    min-height:500px;
  }
  .slider-arrow {
    display:none;
  }
  .goal-scroll,.product-showcase,.grid-3,.grid-4 {
    grid-template-columns:1fr 1fr;
  }
  .section-title {
    display:block;
  }
  .shop-search-card div {
    display:block;
  }
  .shop-search-card input {
    width:100%;
    min-height:48px;
    margin-bottom:10px;
  }
  .page-hero h1 {
    font-size:2.2rem;
  }
}
@media(max-width:560px) {
  .site-announcement .announcement-inner {
    display:block;
  }
  .site-actions {
    gap:8px;
  }
  .cart-pill {
    display:none;
  }
  .header-icon {
    font-size:1.3rem;
  }
  .site-header.is-open .site-nav {
    grid-template-columns:1fr;
  }
  .goal-scroll,.product-showcase,.grid-3,.grid-4,.quality-grid {
    grid-template-columns:1fr;
  }
  .slide-copy h1 {
    font-size:2.5rem;
  }
  .newsletter-form {
    border-radius:24px;
    display:grid;
  }
  .newsletter-form input {
    min-height:52px;
  }
  .logo-strip-inner {
    justify-content:center;
    text-align:center;
  }
  .product-img {
    height:220px;
  }
}

@media(max-width:850px) {
  .site-search {
    grid-column:1/-1;
    order:4;
  }
  .header-inner {
    grid-template-columns:110px 1fr;
    gap:12px;
    padding:10px 0;
  }
  .site-actions {
    justify-content:flex-end;
  }
  .site-nav {
    top:100%;
  }
  .slide-grid,.video-grid,.collection-grid,.newsletter-inner,.product-detail,.footer-grid {
    grid-template-columns:1fr;
  }
  .slide-visual {
    display:none;
  }
  .slide-copy {
    padding:54px 24px;
  }
  .home-slider,.slider-track,.slide-grid {
    min-height:500px;
  }
  .slider-arrow {
    display:none;
  }
  .goal-scroll,.product-showcase,.grid-3,.grid-4 {
    grid-template-columns:1fr 1fr;
  }
  .section-title {
    display:block;
  }
  .shop-search-card div {
    display:block;
  }
  .shop-search-card input {
    width:100%;
    min-height:48px;
    margin-bottom:10px;
  }
  .page-hero h1 {
    font-size:2.2rem;
  }
}
@media(max-width:560px) {
  .site-announcement .announcement-inner {
    display:block;
  }
  .site-actions {
    gap:8px;
  }
  .cart-pill {
    display:none;
  }
  .header-icon {
    font-size:1.3rem;
  }
  .site-header.is-open .site-nav {
    grid-template-columns:1fr;
  }
  .goal-scroll,.product-showcase,.grid-3,.grid-4,.quality-grid {
    grid-template-columns:1fr;
  }
  .slide-copy h1 {
    font-size:2.5rem;
  }
  .newsletter-form {
    border-radius:24px;
    display:grid;
  }
  .newsletter-form input {
    min-height:52px;
  }
  .logo-strip-inner {
    justify-content:center;
    text-align:center;
  }
  .product-img {
    height:220px;
  }
}


@media(max-width:760px) {
  .logo-strip-track {
    justify-content:flex-start;
    gap:26px;
    padding:10px 18px;
  }

  .strip-icon {
    width:42px;
    height:42px;
    font-size:1.6rem;
  }

  .wellness-category-track {
    gap:22px;
    padding-left:24px;
    padding-right:24px;
  }

  .wellness-category-card {
    flex-basis:138px;
  }

  .wellness-category-circle {
    width:128px;
    height:128px;
  }

  .wellness-carousel-arrow {
    display:none;
  }
}

/* ================================
   Wellness Goals Carousel: 5 visible + auto scroll
   ================================ */
.goals-section {
  overflow:hidden;
  padding:58px 0 66px;
}

.goals-section > .container {
  width:100%;
  max-width:none;
}

.category-title-tight {
  width:min(1200px,92vw);
  margin-left:auto;
  margin-right:auto;
  margin-bottom:28px;
}

.wellness-carousel-wrap {
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  overflow:hidden;
  position:relative;
}

.wellness-category-track {
  --goal-side:64px;
  --goal-gap:34px;
  width:100%;
  display:flex;
  gap:var(--goal-gap);
  align-items:flex-start;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:8px var(--goal-side) 18px;
  scrollbar-width:none;
  cursor:grab;
  user-select:none;
}

.wellness-category-track::-webkit-scrollbar {
  display:none;
}

.wellness-category-track.is-dragging {
  cursor:grabbing;
  scroll-snap-type:none;
  scroll-behavior:auto;
}

.wellness-category-card {
  flex:0 0 calc((100vw - 264px) / 5);
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:14px;
  scroll-snap-align:start;
  color:#555;
  font-weight:900;
}

.wellness-category-circle {
  width:clamp(142px,12vw,176px);
  height:clamp(142px,12vw,176px);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#006c68;
  box-shadow:0 18px 36px rgba(0,85,80,.16);
  overflow:hidden;
  transition:.22s ease;
}

.wellness-category-card strong {
  display:block;
  max-width:210px;
  min-height:48px;
  font-size:1.08rem;
  line-height:1.22;
}

.wellness-carousel-arrow {
  top:35%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  z-index:8;
}

.wellness-carousel-prev {
  left:28px;
}

.wellness-carousel-next {
  right:28px;
}

@media(max-width:1100px) {
  .wellness-category-track {
    --goal-side:34px;
    --goal-gap:24px;
    padding-left:var(--goal-side);
    padding-right:var(--goal-side);
  }

  .wellness-category-card {
    flex-basis:calc((100vw - 164px) / 4);
  }
}

@media(max-width:760px) {
  .wellness-category-track {
    --goal-side:20px;
    --goal-gap:18px;
  }

  .wellness-category-card {
    flex-basis:calc((100vw - 58px) / 2);
  }

  .wellness-category-circle {
    width:132px;
    height:132px;
  }

  .wellness-carousel-arrow {
    display:none;
  }
}

/* ================================
   Wellness Goals Carousel: clean 5-card viewport inside arrows
   ================================ */
@media(min-width:1101px) {
  .wellness-carousel-wrap {
    overflow:hidden;
  }

  .wellness-category-track {
    --goal-side:88px;
    --goal-gap:34px;
    gap:var(--goal-gap);
    padding-left:var(--goal-side);
    padding-right:var(--goal-side);
    scroll-padding-left:var(--goal-side);
    scroll-padding-right:var(--goal-side);
  }

  .wellness-category-card {
    flex:0 0 calc((100vw - 312px) / 5);
    scroll-snap-align:start;
  }

  .wellness-category-circle {
    width:clamp(136px,11.5vw,164px);
    height:clamp(136px,11.5vw,164px);
  }

  .wellness-carousel-prev {
    left:28px;
  }

  .wellness-carousel-next {
    right:28px;
  }
}

@media(min-width:761px) and (max-width:1100px) {
  .wellness-category-track {
    --goal-side:74px;
    --goal-gap:24px;
    gap:var(--goal-gap);
    padding-left:var(--goal-side);
    padding-right:var(--goal-side);
    scroll-padding-left:var(--goal-side);
    scroll-padding-right:var(--goal-side);
  }

  .wellness-category-card {
    flex:0 0 calc((100vw - 220px) / 4);
    scroll-snap-align:start;
  }

  .wellness-carousel-prev {
    left:20px;
  }

  .wellness-carousel-next {
    right:20px;
  }
}

@media(max-width:760px) {
  .wellness-category-track {
    --goal-side:20px;
    --goal-gap:18px;
    gap:var(--goal-gap);
    padding-left:var(--goal-side);
    padding-right:var(--goal-side);
    scroll-padding-left:var(--goal-side);
    scroll-padding-right:var(--goal-side);
  }

  .wellness-category-card {
    flex:0 0 calc((100vw - 58px) / 2);
    scroll-snap-align:start;
  }
}

/* ================================
   Wellness carousel: keep cards inside arrows
   ================================ */
@media(min-width:1101px) {
  .wellness-carousel-wrap {
    width:min(1220px,92vw);
    margin-left:auto;
    margin-right:auto;
    padding:0 76px;
    overflow:hidden;
  }

  .wellness-category-track {
    --goal-gap:38px;
    --goal-side:0px;
    width:100%;
    gap:var(--goal-gap);
    padding:8px 0 22px;
    scroll-padding-left:0;
    scroll-padding-right:0;
    overflow-x:auto;
  }

  .wellness-category-card {
    flex:0 0 calc((100% - (var(--goal-gap) * 4)) / 5);
    scroll-snap-align:start;
  }

  .wellness-category-circle {
    width:clamp(140px,11vw,164px);
    height:clamp(140px,11vw,164px);
  }

  .wellness-carousel-prev {
    left:12px;
  }

  .wellness-carousel-next {
    right:12px;
  }
}

@media(min-width:761px) and (max-width:1100px) {
  .wellness-carousel-wrap {
    width:min(1000px,94vw);
    margin-left:auto;
    margin-right:auto;
    padding:0 58px;
    overflow:hidden;
  }

  .wellness-category-track {
    --goal-gap:26px;
    --goal-side:0px;
    gap:var(--goal-gap);
    padding:8px 0 22px;
    scroll-padding-left:0;
    scroll-padding-right:0;
  }

  .wellness-category-card {
    flex:0 0 calc((100% - (var(--goal-gap) * 3)) / 4);
  }

  .wellness-carousel-prev {
    left:6px;
  }

  .wellness-carousel-next {
    right:6px;
  }
}

/* ================================
   Featured Products carousel like reference
   ================================ */
.product-carousel-section {
  background:#effdf4;
  padding:72px 0 86px;
  overflow:hidden;
}

.featured-container {
  width:min(1180px,90vw);
}

.featured-heading {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:48px;
  text-align:center;
}

.featured-heading h2 {
  margin:0;
  color:#063a35;
  font-size:clamp(2rem,3vw,3.4rem);
  line-height:1.1;
  font-weight:500;
}

.featured-all-link {
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  color:var(--green);
  font-weight:900;
}

.featured-carousel-wrap {
  position:relative;
  padding:0 58px;
  overflow:hidden;
}

.featured-product-track.product-showcase {
  display:flex;
  grid-template-columns:none;
  gap:24px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:2px 0 10px;
  scrollbar-width:none;
}

.featured-product-track::-webkit-scrollbar {
  display:none;
}

.featured-product-track.is-dragging {
  cursor:grabbing;
  scroll-snap-type:none;
  scroll-behavior:auto;
}

.featured-product-track > .le-shop-product-card,
.featured-product-track > .product-card {
  flex:0 0 calc((100% - 48px) / 3);
  min-width:0;
  scroll-snap-align:start;
}

.featured-carousel-arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:8;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#0b3f3a;
  box-shadow:0 14px 34px rgba(13,72,52,.11);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

.featured-carousel-arrow:hover:not(:disabled) {
  background:var(--green);
  color:#fff;
}

.featured-carousel-arrow:disabled {
  opacity:.38;
  cursor:not-allowed;
  box-shadow:none;
}

.featured-carousel-prev {
  left:0;
}

.featured-carousel-next {
  right:0;
}

.product-carousel-section .product-card {
  position:relative;
  border:0;
  border-radius:8px;
  background:#fff;
  box-shadow:0 16px 34px rgba(18,72,48,.08);
  overflow:hidden;
  min-height:438px;
  padding:0;
}

.product-media-wrap {
  position:relative;
  min-height:254px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 18px 0;
}

.product-carousel-section .product-img {
  width:100%;
  height:250px;
  background:#fff;
  border-radius:0;
  padding:0;
}

.product-carousel-section .product-img img {
  width:100%;
  height:100%;
  object-fit:contain;
  padding:0;
}

.product-carousel-section .product-img img:not(.product-placeholder-img) {
  object-fit:contain;
}

.product-discount-badge {
  position:absolute;
  top:22px;
  right:22px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  height:24px;
  padding:0 9px;
  border-radius:2px;
  background:#ff513d;
  color:#fff;
  font-weight:900;
  font-size:.82rem;
}

.product-floating-actions {
  position:absolute;
  left:22px;
  top:28px;
  z-index:3;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.product-floating-actions button {
  width:44px;
  height:44px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#1f3027;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.35rem;
  cursor:pointer;
}

.product-floating-actions button:hover {
  background:var(--green);
  color:#fff;
}

.product-carousel-section .product-body {
  padding:18px 20px 30px;
  text-align:center;
}

.product-carousel-section .badge {
  display:none;
}

.product-carousel-section .product-body h3 {
  min-height:54px;
  margin:0 0 10px;
  color:#111;
  font-size:1.02rem;
  line-height:1.35;
  font-weight:700;
}

.product-carousel-section .product-body p {
  display:none;
}

.product-price-row {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0 0 24px;
  font-size:1rem;
}

.old-price {
  color:#66736a;
  text-decoration:line-through;
  font-weight:800;
}

.current-price {
  color:#b22f2f;
  font-weight:900;
}

.product-price-row .current-price:only-child,
.product-price-row:not(:has(.old-price)) .current-price {
  color:#111;
}

.product-cart-form {
  margin:0;
}

.add-cart-btn {
  width:100%;
  height:54px;
  border-radius:14px;
  background:#e6f0ec;
  color:#006c68;
  box-shadow:none;
  font-size:1rem;
  font-weight:900;
}

.add-cart-btn:hover {
  background:#006c68;
  color:#fff;
  transform:none;
}

.product-card-bottom,
.quick-cart {
  display:none;
}

@media(max-width:1050px) {
  .featured-product-track > .le-shop-product-card,
  .featured-product-track > .product-card {
    flex-basis:calc((100% - 24px) / 2);
  }

  .featured-heading {
    display:block;
  }

  .featured-all-link {
    position:static;
    transform:none;
    display:inline-flex;
    margin-top:12px;
  }
}

@media(max-width:640px) {
  .featured-carousel-wrap {
    padding:0;
  }

  .featured-carousel-arrow {
    display:none;
  }

  .featured-product-track.product-showcase {
    padding-left:18px;
    padding-right:18px;
  }

  .featured-product-track > .le-shop-product-card,
  .featured-product-track > .product-card {
    flex-basis:82vw;
  }
}

.product-price-row .current-price {
  color:#111;
}

.product-price-row .old-price + .current-price {
  color:#b22f2f;
}

/* ================================
   Category fade showcase
   ================================ */
.category-fade-band {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(159, 202, 56, .18), transparent 34%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, .08), transparent 32%),
    linear-gradient(135deg, #043417 0%, #075737 58%, #0b6c44 100%);
  color: #fff;
}

.category-fade-band::before,
.category-fade-band::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.category-fade-band::before {
  width: 540px;
  height: 540px;
  right: -190px;
  top: -210px;
  background: rgba(255, 255, 255, .06);
}

.category-fade-band::after {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -220px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.category-fade-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 0;
  align-items: center;
}

.category-fade-text {
  position: relative;
  z-index: 6;
  max-width: 650px;
}

.category-fade-text h2 {
  max-width: 650px;
  margin: 14px 0 18px;
  font-size: clamp(3rem, 4.75vw, 4.85rem);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -.035em;
}

.category-fade-text p {
  max-width: 620px;
  margin: 0;
  color: #e6f8e8;
  font-size: 1.06rem;
}

.category-showcase {
  position: relative;
  z-index: 3;
  min-height: 500px;
  display: grid;
  place-items: center end;
  padding-right: 4px;
  transform: none;
}

.category-orbit-line {
  position: absolute;
  z-index: 1;
  width: min(440px, 33vw);
  height: min(440px, 33vw);
  border: 3px solid rgba(188, 244, 220, .78);
  border-right-color: transparent;
  border-radius: 50%;
  transform: translate(-48px, -16px) rotate(-10deg);
}

.category-image-card {
  position: relative;
  z-index: 2;
  width: min(420px, 31vw);
  height: min(420px, 31vw);
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 34px 72px rgba(0, 0, 0, .30);
  animation: categoryImageFloat 5.5s ease-in-out infinite;
}

.category-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .35s ease;
}

.category-image-card img.is-fading {
  opacity: .12;
  transform: scale(.985);
}

.category-current-caption {
  position: absolute;
  z-index: 4;
  top: 3px;
  right: 18px;
  left: auto;
  bottom: auto;
  width: min(260px, 55vw);
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  color: var(--green-dark);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
}

.category-current-caption small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
}

.category-current-caption strong {
  display: block;
  font-size: 1.2rem;
  line-height: 1.18;
}

.category-fade-btn,
.category-fade-pills,
.category-fade-pill {
  display: none !important;
}

@keyframes categoryImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media(max-width: 1100px) {
  .category-fade-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .category-fade-text {
    max-width: 100%;
  }

  .category-fade-text h2,
  .category-fade-text p {
    max-width: 100%;
  }

  .category-showcase {
    min-height: 500px;
    place-items: center;
    padding-right: 0;
  }

  .category-orbit-line {
    width: min(455px, 74vw);
    height: min(455px, 74vw);
    transform: translate(-46px, -14px) rotate(-10deg);
  }

  .category-image-card {
    width: min(430px, 72vw);
    height: min(430px, 72vw);
  }

  .category-current-caption {
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    text-align: center;
  }
}

@media(max-width: 680px) {
  .category-fade-band {
    padding: 64px 0;
  }

  .category-fade-text h2 {
    font-size: 2.65rem;
  }

  .category-showcase {
    min-height: 430px;
  }

  .category-image-card {
    width: min(330px, 82vw);
    height: min(330px, 82vw);
  }

  .category-orbit-line {
    width: min(348px, 88vw);
    height: min(348px, 88vw);
    transform: translate(-25px, -10px) rotate(-10deg);
  }

  .category-current-caption {
    bottom: 12px;
  }
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

@media (max-width: 760px) {
    .footer-copyright {
        align-items: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* Lighthouse accessibility: clear keyboard focus and minimum pointer targets. */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline:3px solid rgba(18,122,79,.42);
  outline-offset:3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior:auto;
  }

  .slider-slide,
  .le-shop-product-card,
  .slide-visual img {
    transition:none !important;
  }
}



/* Lighthouse/SEO: contextual text that remains available to crawlers and AT. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip paint/layout work for deep homepage sections until they approach view. */
@supports (content-visibility: auto) {
  .featured-section,
  .collection-band,
  .quality-section,
  .goals-section,
  .newsletter-section,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
  }
}

/* Homepage Story / Video modal player */
.video-modal-box {
  width:min(860px,94vw);
}
.video-player-shell {
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}
.video-player-shell iframe,
.video-player-shell video {
  display:block;
  width:100%;
  height:100%;
  border:0;
  background:#000;
}
.video-player-shell video {
  object-fit:contain;
}
.video-modal-caption {
  padding:18px 24px 20px;
  background:#fff;
}
.video-modal-caption h3 {
  margin:0;
  padding-right:48px;
  color:var(--heading);
  font-size:1.2rem;
}
@media (max-width:640px) {
  .video-modal {
    padding:14px;
  }
  .video-modal-box {
    width:100%;
    border-radius:20px;
  }
  .video-modal-caption {
    padding:15px 18px 17px;
  }
}
