/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
/* 
MAIN COLOR : #095d44 ;
TINTS:;
GREY COLOR:#212529;#333;#555;

BORDER RADIUS: 8rem;
FONT WEIGHT:
Default: 400;
Medium: 500;
Semi-Bold: 600;
Bold: 700;

LETTER-SPASING:0.75px ;
Box-shadow: box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
LINE-HEIGHT:
Default: 1;
headings: 1.05;
Paragraph default: 1.6;
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  /* font-size: 10px;
    10px / 16px = 0.625 * 100 = 62.5 
    1rem = 10px*/
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #212529;
  position: relative;
}
/* GENERAL CLASSES */
.back-to-top {
  cursor: pointer;
}
.center-text {
  text-align: center !important;
}
.main-page {
  max-width: 155rem;
  margin: 0 auto;
}
.section {
  max-width: 155rem;
  margin: 0 auto;
  padding: 8rem 0;
}
.container {
  max-width: 135rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.grid {
  display: grid;
}
.grid-gap {
  display: grid;
  column-gap: 6.4rem;
}
.grid-2-cols {
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* ✅ makes all grid cells equal height */
  justify-content: center;
}
.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: stretch; /* ✅ makes all grid cells equal height */
}
.grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  align-items: stretch; /* ✅ makes all grid cells equal height */
}
.mb-medium {
  margin-bottom: 6.4rem !important;
}
.mb-small {
  margin-bottom: 1.8rem !important;
}
/* HEADER NAVIGATION */
.header {
  padding: 3.2rem;
  /* FLEX */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute; /* sits on top of hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.logo {
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 3rem;
  color: #fff !important;
  cursor: pointer;
}
/* NAVIGATION */
.main-nav-list {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
  transition: all 0.4s;
}
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid #095d44;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-left: 8px;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #cedfda;
  border-bottom: 1px solid #cedfda;
}
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 0.8rem 1.6rem;
  border-radius: 8rem;
  background-color: #fff;
  color: #095d44 !important;
  font-weight: 600;
  font-size: 2rem;
  transition: all 0.4s;
  text-decoration: none;
  border-bottom: none;
}
.main-nav-link.nav-cta:hover,
.nav-cta:link:active {
  background-color: #095d44;
  color: #fff !important;
  text-decoration: none;
  border-bottom: none;
}
.main-nav-link.nav-cta:hover .arrow-circle {
  border: 2px solid #fff;
}
/* MENU BTN */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  /*  */
  display: none;
}
.icon-mobile-nav {
  height: 6.4rem;
  width: 6.4rem;
  color: #fff !important;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
/* SECTION HERO */
.section-hero {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("../images/ashwagandha-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* ✅ Fix stacking */
  position: relative;
  z-index: 0;
}
.hero {
  padding-top: 2.4rem;
  height: 80vh;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  column-gap: 6.4rem;
  align-items: stretch;
}
/* first grid item */
.hero-reviews-box {
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* spread content top ↔ bottom */
  height: 100%; /* make sure it fills the hero column */
}
.reviews {
  display: flex;
  justify-self: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.customer-box {
  display: flex;
}
.reviews-box {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.reviews-stars {
  display: flex;
}
.reviews-text {
  color: #fff;
  line-height: 1.7;
  font-size: 1.4rem;
  font-weight: 300;
  hyphens: auto;
}
.customer-img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d87409;
  margin-left: -1.2rem;
}
.customer-img:first-child {
  margin-left: 0;
}
.icon-star {
  color: #d87409;
  font-size: 2rem;
}
.hero-reviews-text {
  color: #fff;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 500;
  hyphens: auto;
}
.tree-img-box {
  position: relative;
  min-height: 180px; /* space for the trees */
  display: block;
}
/* 2) One place to control the horizontal spread */
.tree-img-box {
  --spread: clamp(40px, 12vw, 140px); /* how far each tree moves from center */
  --tree-w: clamp(200px, 30vw, 200px); /* responsive width */
  --tree-h: clamp(70px, 12vw, 150px); /* responsive height */
}

/* 3) Trees are anchored to bottom center and offset with transform */
.tree-img {
  position: absolute;
  bottom: 0; /* stick to the bottom of the box */
  left: 50%; /* anchor from the center */
  width: var(--tree-w);
  height: var(--tree-h);
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none; /* optional: avoid capturing clicks */
}

/* 4) Left / right tree offsets (no magic px per breakpoint!) */
.tree-img:first-child {
  transform: translateX(calc(-50% - var(--spread)));
}
.tree-img:last-child {
  transform: translateX(calc(-50% + var(--spread)));
}

/* 5) Optional: fine-tune on very small phones */
@media (max-width: 480px) {
  .tree-img-box {
    --spread: clamp(24px, 10vw, 80px);
  }
}
.hero-btn {
  text-align: center;
  margin-bottom: -3.2rem;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.8rem 3.6rem;
  border-radius: 8rem;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
}
.btn:hover {
  background-color: #095d44;
  transform: translateY(-2px);
  color: #fff;
}
.btn-link {
  display: inline-block;
  text-decoration: none;
  color: #095d44;
  font-weight: 700;
  font-size: 2.2rem;
  transition: all 0.3s;
}
.btn:hover .btn-link {
  color: #fff;
}
.arrow-circle-hero {
  background-color: #095d44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  margin-left: 8px;
  color: #fff;
  transform: rotate(-35deg);
}
.btn:hover .arrow-circle-hero {
  background-color: #fff;
  border: 2px solid #fff;
  color: #095d44;
}
/*  */
.hero-image-box {
  position: relative;
  justify-self: flex-end;
  flex: 1;
}
.heading-primary {
  justify-self: center;
  text-align: center;
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 9);
}
.hero-image {
  align-self: start;
  position: absolute;
  top: 120px;
  transition: all 0.4s;
}
.hero-image-front:first-child {
  width: 230px;
  height: 420px;
}
.hero-image-back:last-child {
  width: 220px;
  height: 420px;
}
.hero-image-front {
  left: 0;
  transform: translate(-5%, 5%);
}
.hero-image-back {
  right: 0;
  transform: translate(10%, 10%);
}
.hero-image-front:hover {
  transform: translate(-5%, -2%);
}
.hero-image-back:hover {
  transform: translate(10%, 2%);
}
.hero-fda-note {
  margin-top: 4rem;
  font-size: 1.2rem;
  color: #fff;
  font-style: italic;
  opacity: 0.9;
  padding: 0 2.4rem;
}
/* SECTION ABOUT */
.section-about {
  position: relative;
}
.container-about {
  max-width: 135rem;
  margin: 0 auto;
  padding: 6.4rem 3.2rem;
}
.about-heading-box {
  align-self: flex-end;
  justify-self: flex-start;
}
.about-paragraph-box {
  align-self: flex-end;
  justify-self: flex-end;
}
.btn-aboutUs {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  border: 2px solid #095d44;
  border-radius: 8rem;
  background-color: #095d44;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  justify-self: start;
  font-size: 2rem;
  font-weight: 600;
  margin: 1.8rem 0;
}
.btn-aboutUs .subtitle {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.btn-aboutUs:hover,
.btn-toggle:hover {
  border: 2px solid #095d44;
  background-color: #fff;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.btn-aboutUs:hover .subtitle,
.btn-toggle:hover .subtitle {
  color: #095d44 !important;
}
.subtitle {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.4s;
}
.btn-toggle {
  margin-top: 3.2rem;
  justify-self: end;
}

.heading-secondary {
  justify-self: start;
  text-align: start;
  font-size: 4.4rem;
  color: #095d44;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.2px;
  margin-bottom: 3.2rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.text-about {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  cursor: #212529;
  margin: 1.2rem 0 0.2rem 0;
  hyphens: auto;
}
.extra-text {
  color: #212529;
  opacity: 0;
  transform: translateY(10px); /* small slide */
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  hyphens: auto;
}

.extra-text.show {
  color: #212529;
  opacity: 1;
  transform: translateY(0);
  max-height: 700px; /* enough to fit text */
  hyphens: auto;
}
.about-img-box {
  position: relative;
  overflow: hidden; /* keeps the image inside */
  background: #fff;
}
.about-img-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;

  /* FADE EDGES — both syntaxes for compatibility */
  --edge: 12%; /* thickness of fade at top/bottom */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 var(--edge),
    #000 calc(100% - var(--edge)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 var(--edge),
    #000 calc(100% - var(--edge)),
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: -999;
}
.about-img.breathe {
  animation: edge-breathe 4s ease-in-out infinite;
  will-change: mask-image;
}

@keyframes edge-breathe {
  0%,
  100% {
    --edge: 20%;
  }
  50% {
    --edge: 15%;
  }
}
.about-img-product {
  position: absolute;
  top: 50%;
  left: 25%; /* move it a bit to the right; tweak as you like */
  width: 22%; /* ensure predictable size */
  transform: translate(-50%, -50%) rotate(18deg); /* center then rotate */
  z-index: 2; /* above the background */
  pointer-events: none; /* optional (clicks pass through) */
}
.about-img-product:first-child {
  position: absolute;
  top: 30%;
  left: 50%; /* move it a bit to the right; tweak as you like */
  width: 25%;
  height: 35%; /* ensure predictable size */
  transform: translate(-50%, -50%) rotate(18deg); /* center then rotate */
  z-index: 2; /* above the background */
  pointer-events: none; /* optional (clicks pass through) */
}
.about-img-product:last-child {
  position: absolute;
  top: 45%;
  left: 50%; /* move it a bit to the right; tweak as you like */
  width: 20%;
  height: 75%; /* ensure predictable size */
  transform: translate(-50%, -50%) rotate(18deg); /* center then rotate */
  z-index: 2; /* above the background */
  pointer-events: none; /* optional (clicks pass through) */
}
.about-list {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  gap: 1.2rem;
  list-style: none;
}
.about-list-item {
  color: #212529;
  font-weight: 500;
  font-size: 1.6rem;
}
.about-footnote {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  color: #333;
  font-style: italic;
  opacity: 0.9;
  padding: 0 2.4rem;
}
/* SECTION HOW IT WORKS */
.section-how-it-works {
  position: relative;
  min-height: 100vh; /* full screen */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Smooth white at top → your color below */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    /* pure white at top */ #f0e0c7 10%,
    /* light beige fades in */ #f0e0c7 100% /* your warm color */
  );
}
/* Grid for service cards */

.section-how-it-works .heading-secondary {
  color: #212529;
  margin-bottom: 8rem;
}
.how-it-works-item {
  flex: 1;
  background: #fbf6ef;
  border-radius: 3rem;
  padding: 3.2rem 0.8rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.8rem;
  cursor: pointer;
}
.how-it-works-item:hover {
  background: #ebd7b7;
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.8);
}
.icon-box-how-it-works {
  width: 6.4rem;
  height: 6.4rem;
  background-color: none;
  border: 1px solid #095d44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fa-solid {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #095d44;
}
.heading-tertiary {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #212529;
  font-weight: 600;
}
.text-how-it-works {
  font-size: 2rem;
  font-weight: 500;
  color: #212529;
  line-height: 1.2;
  hyphens: auto;
}
.how-note {
  margin-top: 6.4rem;
  font-size: 1.2rem;
  color: #333;
  font-style: italic;
  opacity: 0.9;
  padding: 0 2.4rem;
}
/* SECTION INGREDIENTS */
section.section-ingredients {
  background-color: #095d44;
  padding: 4rem 0;
}
/* Grid for service cards */
.container-ingredients {
  max-width: 135rem;
  margin: 0 auto;
  padding: 4.8rem;
  border-radius: 3rem;
}
.ingredients-text-box {
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
  padding: 3.2rem 4.8rem 3.2rem 4.8rem;
  flex: 1;
  background-color: #095d44;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
}
.btn-ingredients {
  margin-bottom: 1.8rem;
  padding: 1.6rem 3.2rem;
  border: 2px solid #fff;
  border-radius: 8rem;
  background-color: inherit;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  justify-self: start;
  font-weight: 700;
  font-size: 2rem;
  font-weight: 600;
}
.section-ingredients .heading-secondary {
  font-size: 3.8rem;
  color: #fff;
  margin-bottom: 8rem;
  line-height: 1.3;
}
.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2.4rem;
  margin-bottom: 3.2rem;
}
.ingredients-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  hyphens: auto;
}
.ingredients-list-item .fa-solid {
  color: #fff;
}
hr {
  border: 1px solid #fff;
  width: 90%;
  margin: 0 auto;
}
.ingredients-image-box {
  flex: 1;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
.ingredients-img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 3rem;
  aspect-ratio: 3 / 4;
}
.ingredients-note {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  color: #fff;
  font-style: italic;
  opacity: 0.9;
  padding: 0 2.4rem;
}
/* SECTION TESTIMONIALS (KEEP) */
.section-testimonials {
  background: #f0e0c7;
  padding: 8rem 0;
}
.section-testimonials .heading-secondary {
  color: #212529;
  margin-bottom: 8rem;
}
.span {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
/* Card – KEEP */
.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: #fbf6ef;
  padding: 2.8rem;
  border-radius: 3rem;
  transition: transform 0.4s ease;
}

/* FIX selector (was .testimonial:hover) */
.testimonial-item:hover {
  background: #f6eddf;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
  width: 10rem;
  height: 10rem;
  border: 2px solid #d87409;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}
.testimonial-text {
  color: #212529;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  hyphens: auto;
}
.testimonial-name {
  font-weight: 600;
  color: #555;
  font-size: 1.8rem;
}
/* === SLIDER WRAPPER (ADD) === */
.testimonial-slider {
  position: relative;
  margin-top: 2rem;
}

/* The “window” that hides overflow */
.testimonial-slider .viewport {
  overflow: hidden;
}

/* The moving strip of cards */
.testimonial-slider .track {
  display: flex;
  gap: 2.4rem; /* matches your old grid gap */
  will-change: transform;
  transition: transform 0.4s ease;
  padding: 0.25rem; /* avoids focus clipping on edges */
}

/* How many cards per view: 1/2/3 (ADD) */
.testimonial-slider .testimonial-item {
  flex: 0 0 100%;
} /* mobile: 1 per view */
@media (min-width: 700px) {
  .testimonial-slider .testimonial-item {
    flex: 0 0 calc(50% - 1.2rem);
  } /* tablet: 2 */
}
@media (min-width: 1024px) {
  .testimonial-slider .testimonial-item {
    flex: 0 0 calc(33.333% - 1.6rem);
  } /* desktop: 3 */
}

/* Arrows (ADD) – uses your green palette */
.testimonial-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: #2f6f3a;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  z-index: 2;
}
.testimonial-slider .nav:hover {
  filter: brightness(0.95);
  transform: translateY(-50%) scale(1.05);
}
.testimonial-slider .nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.testimonial-slider .prev {
  left: -6px;
}
.testimonial-slider .next {
  right: -6px;
}
.testimonial-slider .nav:focus-visible {
  outline: 2px solid #a5d6a7;
  outline-offset: 2px;
}
.testimonial-note {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
  opacity: 0.9;
  padding: 0 2.4rem;
}
/* FAQ */
.section-faq {
  background-color: #095d44;
  padding: 8rem 1.5rem;
  font-family: "Montserrat", sans-serif;
  color: #f0e0c7;
}

.faq-main-tittle {
  text-align: center;
  margin-bottom: 1.6rem;
}

.heading-quaternary.center-text {
  color: #fff;
  margin: 0;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
}

/* Each FAQ item */
.faq__item {
  max-width: 90rem;
  margin: 0.8rem auto;
  border-radius: 3rem;
  background: #f8f2e7;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 2px solid rgba(9, 93, 68, 0.12);
}

/* Question button */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: space-between;
  padding: 1.2rem 1.2rem;
  background: #ffffff;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.faq__question:hover {
  background: #f6eddf;
}

.faq__question:focus-visible {
  outline: 3px solid rgba(9, 93, 68, 0.35);
  outline-offset: 2px;
  border-radius: 12px;
}

/* Title text */
.faq-title {
  margin: 0;
  font-weight: 600;
  font-size: 1.4rem;
  color: #095d44;
}

/* Chevron icon */
.faq__icon {
  flex: 0 0 auto;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.9;
  color: #095d44;
}

/* Rotate icon when open */
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  opacity: 1;
}

/* Answer wrapper (animated) */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 1.2rem;
  transition:
    max-height 0.4s ease,
    opacity 0.25s ease,
    padding 0.25s ease;
  will-change: max-height, opacity;
  background: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

/* Open state (adjacent to the expanded button) */
.faq__question[aria-expanded="true"] + .faq__answer {
  max-height: 400px; /* increase if your content is longer */
  opacity: 1;
  padding: 0 1.1rem 1rem;
}

/* Answer text */
.faq-item {
  margin: 1.2rem 0 0;
  line-height: 1.7;
  color: #095d44;
  opacity: 0.95;
}

/* Support links inside answers */
.faq__answer a,
.support-link {
  color: #095d44;
  text-decoration: underline;
  font-weight: 600;
}

.faq__answer a:hover {
  opacity: 0.85;
}

/* Small screens */
@media (max-width: 640px) {
  .heading-quaternary.center-text {
    font-size: 1.35rem;
  }
  .faq-title {
    font-size: 1rem;
  }
  .faq__question {
    padding: 0.9rem 0.95rem;
  }
  .faq__answer {
    padding: 0 0.95rem;
  }
}

/* SECTION ORDER*/
.section-order {
  background: #f0e0c7;
  padding: 9.6rem 0;
  overflow: visible;
}
.section-order .text-about {
  color: #095d44;
  font-weight: 600;
}
.product {
  background-color: #fbf6ef;
  color: #095d44;
  border: 2px solid #d2be9e;
  box-shadow: 0 20px 30px 0 rgb(210, 190, 158);
  border-radius: 3rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
}
.product-one,
.product-three {
  width: 90%;
}
.product-three {
  justify-self: flex-end;
}
.product:hover {
  transform: translateY(-5px);
  background-color: #f6eddf;
}
.product-best-value {
  background-color: #f6eddf;
  width: 100%;
}
.product-best-value:hover {
  background-color: #f2e5cf;
}
.product-content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-items: stretch;
  align-items: stretch;
}
.best-value {
  background: #095d44;
  color: #fff;
  width: 240px;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  position: absolute;
  top: 55px;
  right: -50px;
  transform: rotate(45deg);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
}
.best-value span {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
}
.tag {
  display: block;
  color: #3a7d69;
  padding: 1.8rem 0 0 0;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  max-width: 100% !important;
  padding: 0.8rem;
}
.product-title {
  padding: 0.8rem 0;
  text-align: center;
  font-size: 4rem;
  color: #095d44;
  font-weight: 600;
}
.product-subtitle {
  padding: 0.4rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #095d44;
  font-weight: 700;
}
.product-img-card {
  text-align: center;
  height: 300px;
}
.product-img-one {
  width: 30%;
  height: 80%;
}
.product-img-three {
  width: 60%;
  height: 80%;
}
.product-img {
  margin: 2.4rem 0;
  display: inline-block;
  object-fit: contain;
  aspect-ratio: 3 / 4; /* or whatever looks best */
}
.product-img-six {
  width: 100%;
  height: 90%;
}
/*  */

.pc-benefits-list {
  list-style: none;
  color: #095d44;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.pc-benefits-item {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.fa-check {
  color: #095d44;
  font-size: 1.4rem;
}
.product-order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 1.8rem;
}
.price span:first-of-type {
  font-weight: 500;
  font-size: 4.4rem;
  color: #095d44;
  align-self: flex-start;
}
.price {
  font-weight: 700;
  font-size: 6.4rem;
  border-radius: 3rem;
  padding: 1rem;
  color: #095d44;
  display: flex;
}
.pc-badges {
  font-size: 1.2rem;
  opacity: 0.85;
  padding: 0 1.8rem;
  text-align: center;
  padding: 0 0.4rem;
}

.pricing-btn {
  display: inline-block;
  padding: 1.6rem 3.2rem;
  border: 2px solid #095d44;
  border-radius: 8rem;
  background-color: #095d44;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  justify-self: start;
  font-weight: 700;
  font-size: 2rem;
  font-weight: 600;
  margin: 1.8rem 0;
}

.pricing-btn:hover {
  background-color: #226d57;
  transform: translateY(-2px);
}

.buy-btn.ready {
  opacity: 1;
  pointer-events: auto;
  filter: none;
}

.fa-cart-shopping {
  color: #fff;
  fill: #fff;
}
.card-disclaimer {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 3.2rem !important;
  line-height: 1.4;
  font-style: italic;
}
.support-link:link,
.support-link:visited {
  text-decoration: none !important;
  font-size: 1.2rem;
  color: #666 !important;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.4;
  font-style: italic;
}
/*  */
.shipping-note {
  font-size: 1.2rem;
  opacity: 0.85;
  padding: 0 1.8rem;
  text-align: center;
  padding: 0 2.4rem;
}

/*  */

/* FOOTER */
.footer {
  background: #095d44;
  color: #fdfbf7;
  padding: 1.4rem;
  font-size: 1.4rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.footer a {
  color: #fdfbf7;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.footer-support {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
}
.footer a:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.footer-support p,
.footer-disclaimer p {
  margin: 0.6rem 0;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 2rem auto;
  font-size: 1.2rem;
  opacity: 0.9;
}

.footer-copyright {
  text-align: center;
  font-size: 1.2rem;
  padding: 1.2rem 0 0;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
}
.legal-tabs {
  background: #095d44;
  color: #fdfbf7;
  border-radius: 16px;
  max-width: 900px;
  margin: 0.8rem auto;
  font-family: "Poppins", system-ui;
}

/* Tabs row */
.tabs {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  border-bottom: 2px solid rgba(9, 93, 68, 0.2);
  flex-wrap: wrap;
}

/* Each tab button */
.tab {
  background: none;
  border: none;
  font:
    700 1rem "Poppins",
    system-ui;
  color: #fdfbf7;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
  opacity: 0.8;
}

.tab:hover {
  opacity: 1;
  background: rgba(9, 93, 68, 0.1);
}

/* Active tab */
.tab.active {
  background: #095d44;
  color: #fff;
  opacity: 1;
}

/* Content area */
.tab-content {
  display: none;
  padding: 1.5rem 1rem;
  color: #fdfbf7;
  border-radius: 0 0 12px 12px;
  margin-top: 0;
  line-height: 1.7;
}

/* Show active content */
.tab-content.active {
  display: block;
}

/* Links inside content */
.tab-content a {
  color: #095d44;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tabs {
    flex-direction: column;
    align-items: stretch;
  }
  .tab {
    text-align: center;
    border-radius: 8px;
  }
}

/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
