/*========================================
PRODUCT HERO SECTION
========================================*/

.product-hero{
  width:100%;
  padding:110px 20px;
  position:relative;
  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fff7 40%,
    #edf7ef 70%,
    #ffffff 100%
  );
}

/*========================================
BUBBLES
========================================*/

.hero-bubble{
  position:absolute;
  border-radius:50%;
  filter:blur(90px);
  z-index:1;
}

.bubble-1{
  width:320px;
  height:320px;
  background:#9DBA43;
  top:-120px;
  left:-120px;
  opacity:.18;
}

.bubble-2{
  width:260px;
  height:260px;
  background:#FDB606;
  bottom:-100px;
  right:-100px;
  opacity:.18;
}

.bubble-3{
  width:180px;
  height:180px;
  background:#1C472C;
  top:40%;
  left:45%;
  opacity:.08;
}

/*========================================
CONTAINER
========================================*/

.product-hero-container{
  max-width:1250px;
  margin:auto;
  position:relative;
  z-index:5;
}

/*========================================
GRID
========================================*/

.product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/*========================================
LEFT CONTENT
========================================*/

.product-content{
  position:relative;
}

.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 22px;

  border-radius:100px;

  background:rgba(255,255,255,.65);

  border:1px solid rgba(255,255,255,.6);

  backdrop-filter:blur(12px);

  color:#1C472C;

  font-size:13px;
  font-weight:800;
  letter-spacing:1px;

  margin-bottom:28px;
}

.hero-tag i{
  color:#9DBA43;
}

.product-content h1{
  font-size:62px;
  line-height:1.05;
  color:#14361f;
  font-weight:900;
  margin-bottom:22px;
}

.product-content h3{
  font-size:26px;
  color:#F7892B;
  font-weight:700;
  margin-bottom:22px;
}

.product-content p{
  font-size:17px;
  line-height:1.9;
  color:#5a6d62;
  max-width:620px;
}

/*========================================
BUTTONS
========================================*/

.hero-btns{
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:38px;
}

.buy-btn,
.cart-btn{
  padding:18px 34px;
  border-radius:18px;
  font-size:15px;
  font-weight:800;
  transition:.35s ease;
}

.buy-btn{
  background:
  linear-gradient(
    180deg,
    #1C472C,
    #2A6227
  );

  color:#fff;

  box-shadow:
  0 18px 40px rgba(28,71,44,.18);
}

.buy-btn:hover{
  transform:translateY(-5px);

  background:
  linear-gradient(
    180deg,
    #FDB606,
    #F7892B
  );
}

.cart-btn{
  background:rgba(255,255,255,.72);

  border:1px solid rgba(28,71,44,.08);

  color:#1C472C;

  backdrop-filter:blur(12px);
}

.cart-btn:hover{
  transform:translateY(-5px);

  background:#1C472C;
  color:#fff;
}

/*========================================
RIGHT IMAGE
========================================*/

.product-image-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-glow{
  position:absolute;

  width:460px;
  height:460px;

  border-radius:50%;

  background:#9DBA43;

  filter:blur(100px);

  opacity:.18;
}

.product-image-wrap img{
  width:100%;
  max-width:500px;

  position:relative;
  z-index:2;

  filter:drop-shadow(
    0 35px 60px rgba(0,0,0,.18)
  );

  transition:.4s ease;
}

.product-image-wrap:hover img{
  transform:translateY(-10px);
}

/*========================================
FLOATING CARDS
========================================*/

.floating-card{
  position:absolute;

  display:flex;
  align-items:center;
  gap:12px;

  padding:14px 18px;

  background:rgba(255,255,255,.75);

  border:1px solid rgba(255,255,255,.7);

  backdrop-filter:blur(14px);

  border-radius:18px;

  box-shadow:
  0 12px 40px rgba(0,0,0,.08);

  z-index:5;

  animation:float 4s ease-in-out infinite;
}

.floating-card i{
  color:#F7892B;
  font-size:18px;
}

.floating-card span{
  font-size:14px;
  font-weight:700;
  color:#14361f;
}

/* POSITIONS */

.card-1{
  top:10%;
  right:-20px;
}

.card-2{
  left:-40px;
  top:50%;
}

.card-3{
  bottom:12%;
  right:0;
}

/* FLOAT */

@keyframes float{

  0%{
    transform:translateY(0);
  }

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

  100%{
    transform:translateY(0);
  }

}

/*========================================
RESPONSIVE
========================================*/

@media(max-width:991px){

  .product-hero-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .product-content{
    text-align:center;
  }

  .product-content p{
    margin:auto;
  }

  .hero-btns{
    justify-content:center;
  }

  .product-content h1{
    font-size:46px;
  }

}

@media(max-width:768px){

  .product-hero{
    padding:80px 16px;
  }

  .product-content h1{
    font-size:34px;
  }

  .product-content h3{
    font-size:20px;
  }

  .product-content p{
    font-size:15px;
  }

  .hero-btns{
    flex-direction:column;
  }

  .buy-btn,
  .cart-btn{
    width:100%;
    text-align:center;
  }

  .floating-card{
    transform:scale(.85);
  }

  .card-1{
    top:0;
    right:0;
  }

  .card-2{
    left:0;
    top:50%;
  }

  .card-3{
    right:10px;
    bottom:0;
  }

}






/* =========================================
   VITALITY SECTION
========================================= */

.vitality-section{
  position: relative;
  padding: 110px 20px;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f8fff8 0%,
      #eef9f1 45%,
      #ffffff 100%
    );
}

/* BLUR BUBBLES */

.vitality-section::before{
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  background: rgba(247,137,43,0.12);

  border-radius: 50%;

  top: -120px;
  left: -120px;

  filter: blur(90px);
}

.vitality-section::after{
  content: "";
  position: absolute;

  width: 380px;
  height: 380px;

  background: rgba(42,98,39,0.10);

  border-radius: 50%;

  bottom: -100px;
  right: -100px;

  filter: blur(90px);
}

/* =========================================
   HEADING
========================================= */

.vitality-heading{
  max-width: 760px;
  margin: auto;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.vitality-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;

  border-radius: 100px;

  background: rgba(255,255,255,0.65);

  border: 1px solid rgba(255,255,255,0.8);

  backdrop-filter: blur(14px);

  color: #1C472C;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 22px;
}

.vitality-heading h2{
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;

  color: #1C472C;

  margin-bottom: 22px;
}

.vitality-heading p{
  font-size: 18px;
  line-height: 1.8;

  color: #5e6d66;
}

/* =========================================
   GRID
========================================= */

.vitality-grid{
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 28px;

  position: relative;
  z-index: 2;
}

/* =========================================
   CARD
========================================= */

.vitality-card{
  position: relative;

  padding: 42px 34px;

  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.78) 0%,
      rgba(255,255,255,0.55) 100%
    );

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.8);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.06);

  transition: .45s ease;

  overflow: hidden;
}

/* TOP SHINE */

.vitality-card::before{
  content: "";

  position: absolute;

  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  background: rgba(255,255,255,0.45);

  border-radius: 50%;

  transition: .45s;
}

/* HOVER */

.vitality-card:hover{
  transform: translateY(-14px);

  box-shadow:
    0 25px 60px rgba(28,71,44,0.14);
}

.vitality-card:hover::before{
  transform: scale(1.2);
}

/* ICON */

.icon-box{
  width: 74px;
  height: 74px;

  border-radius: 22px;

  background:
    linear-gradient(
      180deg,
      #FDB606 0%,
      #F7892B 100%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  box-shadow:
    0 14px 35px rgba(247,137,43,0.30);

  transition: .4s;
}

.icon-box span{
  font-size: 34px;
  color: #fff;
}

.vitality-card:hover .icon-box{
  transform: rotate(-8deg) scale(1.08);
}

/* TITLE */

.vitality-card h3{
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;

  color: #1C472C;

  margin-bottom: 22px;
}

/* LIST */

.vitality-card ul{
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vitality-card ul li{
  font-size: 16px;
  line-height: 1.7;

  color: #56655f;
}

/* =========================================
   TABLET
========================================= */

@media (max-width:1024px){

  .vitality-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .vitality-heading h2{
    font-size: 44px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){

  .vitality-section{
    padding: 80px 16px;
  }

  .vitality-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vitality-heading{
    margin-bottom: 45px;
  }

  .vitality-heading h2{
    font-size: 34px;
  }

  .vitality-heading p{
    font-size: 15px;
    line-height: 1.7;
  }

  .vitality-card{
    padding: 32px 24px;
    border-radius: 24px;
  }

  .icon-box{
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .icon-box span{
    font-size: 28px;
  }

  .vitality-card h3{
    font-size: 24px;
  }

  .vitality-card ul li{
    font-size: 14px;
  }

}










/* =========================================
PURITY SECTION
========================================= */

.purity-section{
  position: relative;
  padding: 110px 20px;
  overflow: hidden;

  background:
  linear-gradient(
    135deg,
    #1C472C 0%,
    #2A6227 100%
  );

  color: #fff;
}

.purity-overlay{
  position: absolute;
  inset: 0;

  background:
  radial-gradient(
    circle at top right,
    rgba(253,182,6,.20),
    transparent 40%
  );

  pointer-events: none;
}

.purity-container{
  max-width: 1250px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.purity-heading{
  text-align: center;
  max-width: 760px;
  margin: auto auto 80px;
}

.purity-tag{
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.12);

  border: 1px solid rgba(255,255,255,.15);

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 24px;

  backdrop-filter: blur(10px);
}

.purity-heading h2{
  font-size: clamp(38px,5vw,68px);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.purity-heading p{
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
}

/* CENTER */

.purity-center{
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 500px;
}

.purity-image-wrap{
  width: 420px;
  height: 420px;

  border-radius: 50%;

  padding: 18px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,.18),
    rgba(255,255,255,.04)
  );

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,.15);

  animation: float 5s ease-in-out infinite;
}

.purity-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 50%;
}

/* BADGES */

.purity-badge{
  position: absolute;

  padding: 24px;

  min-width: 170px;

  border-radius: 30px;

  text-align: center;

  background: rgba(255,255,255,.12);

  border: 1px solid rgba(255,255,255,.18);

  backdrop-filter: blur(12px);

  transition: .4s;
}

.purity-badge:hover{
  transform: translateY(-10px) scale(1.05);
}

.purity-badge h4{
  font-size: 26px;
  margin-bottom: 8px;
  color: #FDB606;
}

.purity-badge span{
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.badge-1{
  top: 0;
  left: 8%;
}

.badge-2{
  bottom: 20px;
  right: 10%;
}

.badge-3{
  top: 45%;
  right: 0;
}

/* =========================================
SCIENCE SECTION
========================================= */

.science-section{
  padding: 110px 20px;
  background: #f7fbf8;
}

.science-top{
  max-width: 760px;
  margin: auto auto 70px;
  text-align: center;
}

.science-mini{
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(247,137,43,.12);

  color: #F7892B;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 22px;
}

.science-top h2{
  font-size: clamp(34px,5vw,62px);
  line-height: 1.1;
  color: #1C472C;
  margin-bottom: 22px;
}

.science-top p{
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

/* GRID */

.science-grid{
  max-width: 1300px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}

/* CARD */

.science-card{
  background: #fff;

  border-radius: 30px;

  overflow: hidden;

  box-shadow:
  0 10px 35px rgba(0,0,0,.06);

  transition: .45s;
}

.science-card:hover{
  transform: translateY(-14px);

  box-shadow:
  0 20px 50px rgba(0,0,0,.12);
}

.science-img{
  height: 250px;
  overflow: hidden;
}

.science-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: .6s;
}

.science-card:hover .science-img img{
  transform: scale(1.08);
}

.science-content{
  padding: 30px;
}

.science-icon{
  width: 60px;
  height: 60px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
  linear-gradient(
    180deg,
    #FDB606 0%,
    #F7892B 100%
  );

  color: #fff;
  font-size: 22px;

  margin-bottom: 22px;

  transition: .4s;
}

.science-card:hover .science-icon{
  transform: rotate(8deg) scale(1.08);
}

.science-content h3{
  font-size: 24px;
  color: #1C472C;
  margin-bottom: 16px;
}

.science-content p{
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* =========================================
ANIMATION
========================================= */

@keyframes float{
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-18px);
  }
  100%{
    transform: translateY(0px);
  }
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

  .science-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .badge-1{
    left: 0;
  }

  .badge-2{
    right: 0;
  }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

  .purity-section,
  .science-section{
    padding: 80px 16px;
  }

  .purity-heading{
    margin-bottom: 60px;
  }

  .purity-heading p,
  .science-top p{
    font-size: 15px;
  }

  .purity-center{
    min-height: auto;
    padding-bottom: 220px;
  }

  .purity-image-wrap{
    width: 290px;
    height: 290px;
  }

  .purity-badge{
    min-width: 140px;
    padding: 18px;
  }

  .purity-badge h4{
    font-size: 20px;
  }

  .badge-1{
    top: auto;
    bottom: 110px;
    left: 0;
  }

  .badge-2{
    bottom: 0;
    right: 0;
  }

  .badge-3{
    top: auto;
    bottom: 220px;
    right: 10px;
  }

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

  .science-img{
    height: 220px;
  }

  .science-content{
    padding: 24px;
  }

  .science-content h3{
    font-size: 22px;
  }

}







/* =========================================
WELLNESS JOURNEY
========================================= */

.journey-section{
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
  linear-gradient(
    135deg,
    #1C472C 0%,
    #2A6227 100%
  );
}

.journey-overlay{
  position: absolute;
  inset: 0;

  background:
  radial-gradient(
    circle at top center,
    rgba(253,182,6,.16),
    transparent 40%
  );
}

.journey-container{
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.journey-heading{
  text-align: center;
  max-width: 760px;
  margin: auto auto 80px;
}

.journey-tag{
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.10);

  border: 1px solid rgba(255,255,255,.12);

  color: #fff;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 24px;

  backdrop-filter: blur(10px);
}

.journey-heading h2{
  font-size: clamp(36px,5vw,68px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

.journey-heading p{
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.8;
}

/* GRID */

.journey-grid{
  position: relative;

  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}

.journey-grid::before{
  content: '';

  position: absolute;

  top: 48px;
  left: 8%;
  right: 8%;

  height: 2px;

  background:
  linear-gradient(
    90deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.4),
    rgba(255,255,255,.10)
  );
}

/* CARD */

.journey-card{
  position: relative;
  z-index: 2;

  text-align: center;

  padding: 20px;

  transition: .4s;
}

.journey-card:hover{
  transform: translateY(-10px);
}

.journey-number{
  width: 95px;
  height: 95px;

  margin: auto auto 28px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  font-weight: 800;

  color: #1C472C;

  background: #fff;

  border: 5px solid rgba(255,255,255,.12);

  box-shadow:
  0 10px 35px rgba(0,0,0,.18);

  transition: .4s;
}

.journey-card:hover .journey-number{
  transform: scale(1.08);
  background: #FDB606;
  color: #fff;
}

.journey-card h3{
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.journey-card p{
  color: rgba(255,255,255,.74);
  line-height: 1.8;
  font-size: 15px;
}

/* =========================================
GALLERY SECTION
========================================= */

.gallery-section{
  padding: 110px 20px;
  background: #f8fbf8;
}

.gallery-heading{
  max-width: 760px;
  margin: auto auto 70px;
  text-align: center;
}

.gallery-tag{
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(247,137,43,.12);

  color: #F7892B;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 24px;
}

.gallery-heading h2{
  font-size: clamp(36px,5vw,62px);
  line-height: 1.1;
  color: #1C472C;
  margin-bottom: 24px;
}

.gallery-heading p{
  color: #666;
  line-height: 1.8;
  font-size: 18px;
}

/* GRID */

.gallery-grid{
  max-width: 1280px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 260px;
  gap: 22px;
}

.gallery-item{
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  box-shadow:
  0 10px 35px rgba(0,0,0,.08);
}

.gallery-item.large{
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide{
  grid-column: span 2;
}

/* IMAGE */

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: .7s;
}

.gallery-item:hover img{
  transform: scale(1.1);
}

/* OVERLAY */

.gallery-item::before{
  content: '';

  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.65),
    transparent 50%
  );

  z-index: 1;
}

/* CONTENT */

.gallery-content{
  position: absolute;

  left: 24px;
  bottom: 24px;

  z-index: 2;

  transform: translateY(20px);
  opacity: 0;

  transition: .45s;
}

.gallery-item:hover .gallery-content{
  transform: translateY(0);
  opacity: 1;
}

.gallery-content h3{
  color: #fff;
  font-size: 24px;
  line-height: 1.3;
}

/* =========================================
TABLET
========================================= */

@media(max-width:1100px){

  .journey-grid{
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
  }

  .journey-grid::before{
    display: none;
  }

  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

  .journey-section,
  .gallery-section{
    padding: 80px 16px;
  }

  .journey-heading,
  .gallery-heading{
    margin-bottom: 55px;
  }

  .journey-heading p,
  .gallery-heading p{
    font-size: 15px;
  }

  .journey-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .journey-card{
    padding: 0;
  }

  .journey-number{
    width: 82px;
    height: 82px;
    font-size: 28px;
  }

  .journey-card h3{
    font-size: 22px;
  }


  .gallery-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    gap: 18px;
  }

  .gallery-item.large,
  .gallery-item.wide{
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-content{
    opacity: 1;
    transform: translateY(0);
  }

  .gallery-content h3{
    font-size: 20px;
  }

}












/* =========================================
 WELLNESS FAQ SECTION
========================================= */

.wellness-faq-section{
  width:100%;
  padding:110px 20px;
  background:#f8fbf7;
}

.wellness-faq-heading{
  max-width:760px;
  margin:auto;
  text-align:center;
  margin-bottom:60px;
}

.wellness-faq-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border-radius:999px;
  background:#eef7ef;
  color:#1C472C;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:24px;
}

.wellness-faq-heading h2{
  font-size:58px;
  line-height:1.1;
  color:#164c2b;
  margin-bottom:22px;
  font-family:Georgia, serif;
}

.wellness-faq-heading p{
  font-size:18px;
  line-height:1.8;
  color:#5f6f66;
}

.wellness-faq-wrapper{
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.wellness-faq-item{
  background:#fff;
  border:1px solid rgba(22,76,43,.08);
  border-radius:26px;
  overflow:hidden;
  transition:.4s ease;
  box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.wellness-faq-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.wellness-faq-question{
  width:100%;
  background:none;
  border:none;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
  text-align:left;
}

.wellness-faq-question span{
  font-size:21px;
  font-weight:700;
  color:#164c2b;
  line-height:1.5;
}

.wellness-faq-question i{
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(180deg,#FDB606 0%,#F7892B 100%);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  flex-shrink:0;
}

.wellness-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.wellness-faq-answer p{
  padding:0 30px 30px;
  color:#617166;
  font-size:16px;
  line-height:1.9;
}

.wellness-faq-item.active{
  border-color:#F7892B;
}

.wellness-faq-item.active .wellness-faq-answer{
  max-height:300px;
}

/* =========================================
 MOBILE
========================================= */

@media (max-width:600px){

  .wellness-faq-section{
    padding:80px 16px;
  }

  .wellness-faq-heading{
    margin-bottom:40px;
  }

  .wellness-faq-heading h2{
    font-size:34px;
  }

  .wellness-faq-heading p{
    font-size:15px;
    line-height:1.7;
  }

  .wellness-faq-question{
    padding:22px 18px;
  }

  .wellness-faq-question span{
    font-size:16px;
  }

  .wellness-faq-question i{
    width:36px;
    height:36px;
    font-size:13px;
  }

  .wellness-faq-answer p{
    padding:0 18px 22px;
    font-size:14px;
  }

}