*,
::after,
::before {
  box-sizing: border-box;
}

/*html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  }*/

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
    url("../fonts/bootstrap-icons.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: #fff;
  background-color: var(--theme-green-color);
}
::-moz-selection {
  color: #fff;
  background-color: var(--theme-green-color);
}

body {
  font-family: var(--theme-primary-font-family);
  font-weight: 400;
  color: #111214;
  background-color: #ffffff;
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

:root {
  --theme-yellow-color: #ffcc2e;
  --theme-green-color: #007e40;
  --theme-dark-green-color: #0d311f;
  --theme-light-green-color: #dfefe7;
  --theme-white-color: #ffffff;
  --theme-black-color: #002613;
  --theme-orange-color: #fe9a2a;
  --theme-gray-color: #222222;
  --theme-gray-light-color: #f5f5f5;
  --theme-gray-light-2-color: #999999;
  --theme-primary-font-family: "DM Sans";
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}
a,
a:focus {
  text-decoration: none;
}
a:focus {
  color: initial;
}
.cmn-img img {
  width: 100%;
}
.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}


/*common css====================================*/
.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.noscroll {
  overflow: hidden;
  height: 100vh;
}

.layout_padding {
  padding: 80px 0;
}

.btn-area{
  min-height: inherit;
}

a.cmn_btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--theme-green-color);
  color: var(--theme-white-color);
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--theme-black-color);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 1px 4px var(--theme-dark-green-color);
}
a.cmn_btn:hover {
  background: #01582d;
  box-shadow: 1px 1px var(--theme-black-color);
  margin: 4px 0 0 4px; 
}
a.cmn_btn .fa-arrow-right{
  font-size: 20px;
}

a.cmn_btn2 {
  display: inline-block;
  padding: 10px 25px;
  background: var(--theme-orange-color);
  color: var(--theme-black-color);
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--theme-black-color);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 1px 4px var(--theme-dark-green-color);
}
a.cmn_btn2:hover {
  background: #febb70ff;
  box-shadow: 1px 1px var(--theme-black-color);
  margin: 4px 0 0 4px; 
}

a.cmn_btn3 {
  display: inline-block;
  padding: 10px 25px;
  background: var(--theme-yellow-color);
  color: var(--theme-black-color);
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--theme-black-color);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 1px 4px var(--theme-dark-green-color);
}
a.cmn_btn3:hover {
  background: #FFCC2EFF;
  box-shadow: 1px 1px var(--theme-black-color);
  margin: 4px 0 0 4px; 
}

a.cmn_btn4 {
  display: inline-block;
  padding: 5px 12px;
  background: var(--theme-green-color);
  color: var(--theme-white-color);
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--theme-black-color);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 1px 4px var(--theme-dark-green-color);
}

a.cmn_btn5 {
  display: inline-block;
  padding: 10px 25px;
  background: var(--theme-white-color);
  color: var(--theme-black-color);
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid var(--theme-black-color);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 1px 4px var(--theme-dark-green-color);
}


img.cmn-img{
  width: 100%;
  border-radius: 20px;
}

.notes small{
  font-size: 10px;
}

.heading_container h1 {
    color: var(--theme-green-color);
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
}

.heading_container h1 span {
    color: var(--theme-black-color);
}

.heading_container h3{
    font-size: 22px !important;
    font-weight: 600;
    color: var(--theme-black-color) !important;
}

.heading_container h4{
    font-size: 18px !important;
    line-height: 30px;
    font-weight: 500;
    color: var(--theme-black-color) !important;
}

.heading_container p {
    font-size: 16px !important;
    color: var(--theme-black-color) !important;
}

/*.heading_container a {
  color: var(--theme-orange-color);
  font-weight: 600;
}*/

.heading_container_2 h1 {
  font-weight: 600;
  font-size: 70px;
  font-family: var(--theme-header-font-family);
  color: var(--theme-pink-color);
  margin-bottom: 0;
  position: relative;
}

.heading_container_2 h4 {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-orange-color);
  font-family: var(--theme-header-font-family);
}

.heading_container_2 p {
  font-family: var(--theme-primary-font-family);
  font-size: 24px;
  color: var(--theme-orange-color);
  margin-top: 30px;
  position: relative;
}


.heading_container_3 h1 {
  font-weight: 600;
  font-size: 70px;
  font-family: var(--theme-header-font-family);
  color: var(--theme-pink-color);
  margin-bottom: 0;
  position: relative;
}
.heading_container_3 h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 98px;
  height: 4px;
  background-color: var(--theme-pink-color);
}
.heading_container_3 h1 span {
  color: var(--theme-orange-color);
}
.heading_container_3 p {
  font-family: var(--theme-primary-font-family);
  font-size: 24px;
  color: var(--theme-orange-color);
  margin-top: 30px;
}

#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  box-shadow: 0px 2px 5px rgb(51 51 51 / 58%);
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: var(--theme-green-color);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
}
#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: var(--theme-white-color);
}
#scroll:hover {
  background: var(--theme-dark-green-color);
  opacity: 0.8;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

p.reviews {
  color: var(--theme-black-light-color);
  font-size: 18px;
}
p.reviews span {
  color: var(--theme-pink-color);
}

/*Owl Nav Button====================================*/
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next {
  font-family: "bootstrap-icons";
  right: 0px;
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  font-family: "bootstrap-icons";
  left: 0px;
}

.cmn-nav-htn .owl-carousel .owl-nav button.owl-next,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev {
  text-align: center;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 15px;
  border: 2px solid var(--theme-black-color);
  box-shadow: 3px 2px var(--theme-black-color);
  font-size: 33px;
  color: var(--theme-black-color);
}
.cmn-nav-htn .owl-carousel .owl-nav button.owl-next img,
.cmn-nav-htn .owl-carousel .owl-nav button.owl-prev img {
  width: 78%;
}
.cmn-nav-htn .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.cmn-nav-htn .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: var(--theme-gray-light-2-color);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.4s ease;
  border-radius: 30px;
}
.cmn-nav-htn .owl-dots .owl-dot.active span, 
.cmn-nav-htn .owl-dots .owl-dot:hover span{
  background: var(--theme-black-color);
}

/*Header section =================================*/
.header_section .hdr-main{
  background: var(--theme-green-color);
  padding: 8px 0;
}
.header_section .hdr-main a.hdr-logo{
  width: 93px;
  display: block;
  margin: auto;
}
.header_section .hdr-main .hdr-logo svg{
  width: 100%;
}

/*Top Header Section ============================*/
.navbar-sticky.navbar-stuck {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    -webkit-animation: navbar-show .25s;
    animation: navbar-show .25s;
    background-color: var(--theme-green-color);
    box-shadow: 0 .125rem .625rem -0.1875rem rgba(0, 0, 0, .1)
}

@-webkit-keyframes navbar-show {
    from {
        transform: translateY(-0.75rem);
        opacity: 0;
    }

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

@keyframes navbar-show {
    from {
        transform: translateY(-0.75rem);
        opacity: 0
    }

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


/*Hero section ====================================*/
.hero-setion {
  background: var(--theme-light-green-color);
  padding: 60px 0 60px 0;
}
.hero-prod{
  position: relative;
}
.hero-prod img.main-prod{
  width: 100%;
}
.hero-prod img.limited{
  position: absolute;
  left: 75px;
  top: 30px;
  z-index: 2;
  width: 200px;
}
.hero-review p{
  font-size: 16px!important;
  color: var(--theme-black-color)!important;
}
.hero-review p span{
  color: var(--theme-green-color);
  font-weight: 700;
}
.hero-review p span .bi{
  font-size: 14px;
  letter-spacing: -3px;
}

.hero-cnt h1 {
  color: var(--theme-green-color);
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
}
.hero-cnt h1 span{
  color: var(--theme-black-color);
}
.hero-cnt ul{
  margin-top: 20px;
}
.hero-cnt ul li p{
  color: var(--theme-black-color)!important;
  font-size: 14px!important;
  margin-bottom: 0!important;
}
.hero-cnt ul li{
  margin-top: 5px!important;
}
.hero-cnt ul li p span{
  font-size: 16px!important;
  color: var(--theme-green-color)!important;
  margin-right: 5px;
  display: inline-block;
}

/*Client Section ====================================*/
.client-slider p{
  font-size: 16px;
  color: var(--theme-black-color);
}
.client-slider .client-item img{
   width: 150px!important;
   margin: auto;
}
.client-slider .client-item{
  opacity: 0.4;
  transition: .4s ease all;
}
.client-slider .active .client-item{
  opacity: 1;
  transform: scale(1);
}

.health-box img{
  width: 48px;
  height: 48px;
  margin: auto;
}
.health-box h2{
  color: var(--theme-green-color);
  font-size: 24px;
  font-weight: 800;
  margin-top: 10px;
}
.health-box p{
   color: var(--theme-black-color);
   font-size: 16px;
}

/*Modern Living Section =========================*/
.modern-living-sec{
  background: var(--theme-light-green-color);
}
.percentage-box h1{
  color: var(--theme-green-color);
  font-size: 100px;
  font-weight: 300;
}
.percentage-box p{
   color: var(--theme-black-color);
   font-size: 16px;
}
img.trust{
  width: 234px;
}
ul.trust-list li{
  color: var(--theme-black-color);
  font-size: 16px;
  margin-top: 5px;
  position: relative;
  padding-left: 26px;
}
ul.trust-list li:after{
  content: '\F627';
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 16px;
  font-weight: 600;
  color: #e56514;
}

/*Our Product Section ======================*/
.prod-review p{
  font-size: 16px!important;
  color: var(--theme-black-color)!important;
}
.prod-review p span{
  color: var(--theme-green-color);
  font-weight: 700;
}
.prod-review p span .bi{
  font-size: 16px;
  letter-spacing: -3px;
}

.procuct-tab .nav-tabs{
  background: var(--theme-light-green-color);
  border-radius: 30px;
  padding: 5px;
}
.procuct-tab .nav-item{
  width: 50%;
}
.procuct-tab .nav-tabs .nav-link {
    color: var(--theme-black-color);
    padding: 10px 15px;
    font-weight: 600;
    width: 100%;
}
.procuct-tab .nav-tabs .nav-link.active {
    color: var(--theme-white-color);
    background-color: var(--theme-green-color);
    border: none;
    border-radius: 30px;
    padding: 10px 15px;
}
.procuct-tab .nav-tabs .nav-link:focus{
  border-radius: 30px;
}


.prod-dtls-box .nav-tabs{
    background: none!important;
    border-radius: 0!important;
    padding: 0px!important;
    display: flex;
    justify-content: space-between;
    border-bottom: 0;
}
.prod-dtls-box .nav-item{
  width: 48%;
}
.prod-dtls-box .prod-card{
  border-radius: 20px;
  /*border: 1px solid var(--theme-black-color);*/
  color: inherit;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border-color:1px solid var(--theme-black-color);
  width: 50%;
  margin: 0 auto;
} 
.prod-dtls-box .nav-tabs .nav-item.show .nav-link, .prod-dtls-box .nav-tabs .nav-link.active{
  border: 1px solid var(--theme-black-color);
}
.prod-dtls-box .nav-tabs .nav-link:focus, .prod-dtls-box .nav-tabs .nav-link:hover{
  border-color: inherit;
}
.prod-dtls-box .nav-tabs .nav-link.active .low-sugar1-prod-dtls{
  background: var(--theme-green-color);
}
.prod-dtls-box .nav-tabs .nav-link.active .low-sugar2-prod-dtls{
  background: #12562f;
}
.prod-dtls-box .nav-tabs .nav-link.active .low-sugar1-prod-dtls h4,
.prod-dtls-box .nav-tabs .nav-link.active .low-sugar2-prod-dtls h4{
  color: var(--theme-white-color);
} 
.prod-dtls-box .prod-card .low-sugar1{
  padding: 0px 25px 0 25px;
  background: var(--theme-light-green-color);
}
.prod-dtls-box .prod-card .low-sugar1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-dtls-box .prod-card .low-sugar1-prod-dtls{
  padding: 15px 0;
  background: var(--theme-green-color);
}
.prod-dtls-box .prod-card .low-sugar1-prod-dtls h4{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--theme-white-color);
}
.prod-dtls-box .prod-card .low-sugar2{
  padding: 0px 25px 0 25px;
  background: #dceac1;
}
.prod-dtls-box .prod-card .low-sugar2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-dtls-box .prod-card .low-sugar2-prod-dtls{
  padding: 15px 0;
}
.prod-dtls-box .prod-card .low-sugar2-prod-dtls h4{
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--theme-black-color);
}

.prod-dtls-box .price-details{
  border: 1px solid var(--theme-black-color);
  padding: 15px;
  border-radius: 25px;
  box-shadow: 4px 5px var(--theme-dark-green-color);
}
.prod-dtls-box .price-details h4{
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-black-color);
}
.prod-dtls-box .price-details .price-box.active{
  background: var(--theme-light-green-color);
}
.prod-dtls-box .price-details .price-box h4{
  font-size: 17px;
  font-weight: 800;
  color: var(--theme-black-color);
  margin-bottom: 0px;
}
.prod-dtls-box .price-details .price-box{
  border: 1px solid var(--theme-black-color);
  padding: 15px;
  border-radius: 25px;
  margin-bottom: 10px;
}
.prod-dtls-box .price-details .price-box img{
  width: 100px;
}
.prod-dtls-box .price-details .price-box p.prd-price{
  font-size: 20px;
  font-weight: 800;
  color: var(--theme-black-color);
  margin-bottom: 0px;
}
.prod-dtls-box .price-details .price-box p.prd-price span{
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}
.prod-dtls-box .price-details .price-box p.preday{
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-green-color);
  margin-bottom: 0;
}
ul.prod-desk {
  margin-top: 10px;
}
ul.prod-desk li {
  margin-top: 5px !important;
}
ul.prod-desk li p {
  color: var(--theme-black-color) !important;
  font-size: 14px !important;
  margin-bottom: 0 !important;
  position: relative;
  padding-left: 22px;
}
ul.prod-desk li p:after{
  content: '\F633';
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: -3px;
  color: var(--theme-green-color);
  font-size: 18px;
  font-weight: 800;
}

/*.prod-dtls-box .price-details2{
  border: 1px solid var(--theme-black-color);
  padding: 15px;
  border-radius: 25px;
}*/
/*.prod-dtls-box .price-details2 h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--theme-black-color);
    margin-bottom: 0px;
}*/
.prod-dtls-box .price-details2 p.prd-price{
    font-size: 20px;
    font-weight: 800;
    color: var(--theme-black-color);
    margin-bottom: 0px;
}
.prod-dtls-box .price-details2 p.prd-price span {
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
}
.prod-dtls-box .price-details2 p.preday {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-green-color);
    margin-bottom: 0;
}
.prod-dtls-box .price-details2 .more-details{
  margin-top: 15px;
  border-top: 1px solid var(--theme-black-color);
  padding: 15px 0 0 0;
}
.prod-dtls-box .price-details2 .more-details p{
  font-size: 12px;
  margin-bottom: 0;
}
.prod-dtls-box .price-details2 .more-details .bi{
  color: red;
  font-size: 28px;
  font-weight: 600;
}
.tastes-like{
  margin-top: 30px;
}
.tastes-like h3{
  font-size: 26px;
  text-align: center;
  color: var(--theme-black-color);
  font-weight: 600;
  margin-bottom: 15px;
}
.tastes-like .like-box{
  text-align: center;
}
.tastes-like .like-box p{
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 13px;
}
.tastes-like .like-box .like-icon{
  width: 75px;
  height: 75px;
  border-radius: 50px;
  border: 1px solid var(--theme-green-color);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tastes-like .like-box .like-icon svg{
  width: 48px;
  height: 48px;
}

.shipping-terms ul{
  margin-top: 15px;
}
.shipping-terms ul li{
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.shipping-terms ul li .bi{
  margin-right: 10px;
  font-size: 25px;
  color: var(--theme-green-color);
}
.shipping-terms ul li p{
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}
p.learn-more{
  margin-top: 15px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--theme-black-color);
}
p.learn-more a{
  font-weight: 600;
  color: var(--theme-black-color);
}

/*Product FAQ =====================*/
.product-faq .faq-item {
  border-bottom: 1px solid #2c4b2f;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.product-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  font-size: 16px;
  color: #1a381d;
}

.product-faq .faq-question span {
  font-size: 20px;
  font-weight: bold;
  color: #1a381d;
  transition: 0.3s ease;
  margin-left: 10px;
  border: 1px solid #333333;
  width: 30px;
  height: 30px;
  display: inline-block;
  text-align: center;
  border-radius: 30px;
  line-height: 28px;
}

.product-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
  color: #333;
  line-height: 1.5;
}

.product-faq .faq-item.active .faq-answer {

  padding: 10px 0;
}

/* Change icon when active */
.product-faq .faq-item.active .faq-question span::after {
  content: "-";
}

.product-faq .faq-question span::after {
  content: "+";
}

.prod-card2{
  border-radius: 20px;
  border: 1px solid var(--theme-black-color);
  color: inherit;
  height: 100%;
  overflow: hidden;
  border-color:1px solid var(--theme-black-color);
  padding-bottom: 20px;
} 
.prod-card2 .prod-img{
  padding: 20px;
}
.prod-card2 .prod-img img{
  width: 100%;
}
.prod-card2:hover {
    box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
    border-color: var(--theme-green-color);
}
.prod-card2 .prod-dtls h4 {
    font-size: 20px;
    min-height: 50px;
}
h5.prod-price{
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-green-color);
}
h5.prod-price span{
  font-size: 18px;
  color: var(--theme-gray-color);
  text-decoration: line-through;
}
.product-offer-area .offer-hdr h1{
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--theme-green-color);
}
.low-sugar{
  background: var(--theme-light-green-color);
}
h4.select-flavor{
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  text-align: center;
}
.ingredients-sec ul{
  margin-top: 20px;
}
.ingredients-sec ul li{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ingredients-sec ul li:last-child{
  margin-bottom: 0;
}
.ingredients-sec ul li img{
  width: 48px;
  height: 48px;
      margin-right: 10px;
}
.ingredients-sec ul li p{
  font-size: 14px;
}

/*Tooltip ================*/
.tooltip-target {
    cursor: pointer;
    position: relative;
}

  /* Tooltip Box */
.tooltip-box {
    position: absolute;
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    width: 300px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 1000;
  }

.tooltip-box.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* Arrow (pointing up to button left edge) */
.tooltip-box::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px; /* 👈 arrow aligned near button start */
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
  }

  /* Tooltip Title */
.tooltip-title {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--theme-black-color);
  }

  /* Tooltip Content */
.tooltip-content {
    font-size: 13px;
    line-height: 1.4em;
  }

/*Display Image ============================*/
  .view-prod{
    border: 1px solid var(--theme-black-color);
    border-radius: 15px;
    overflow: hidden;
  }
  .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #thumbnails{
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
  }
  .thumbnail-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
  }
  .thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* White overlay */
    border-radius: 6px;
    transition: 0.3s;
    border: 1px solid var(--theme-black-color);
  }
  .thumbnail-wrapper.active .overlay {
    background: transparent; /* Active = no overlay */
  }
  .thumbnail-wrapper.active .thumbnail {
    border: 1px solid #4CAF50;
  }

/*Join Section ======================*/
.testimonial-sec{
  background: var(--theme-light-green-color);
}
.testimonial-tab .nav-tabs{
  justify-content: space-between;
  flex-wrap: nowrap;
}
.testimonial-tab .nav-tabs .nav-item.show .nav-link, 
.testimonial-tab .nav-tabs .nav-link.active {
    color: var(--theme-white-color);
    background-color: var(--theme-green-color);
    border: 2px solid var(--theme-black-color);
} 
.testimonial-tab .nav-tabs .nav-link:hover{
  background: #80be9f;
}
.testimonial-tab .nav-item{
  width: 100%;
  margin: 5px;
}
.testimonial-tab .nav-item:last-child{
  margin-right: 0;
}
.testimonial-tab .nav-item:first-child{
  margin-left: 0;
}
.testimonial-tab .nav-tabs .nav-link{
  width: 100%;
  color: var(--theme-black-color);
  border: 2px solid var(--theme-black-color);
  border-radius: 30px;
  padding: 10px 10px;
  font-size: 20px;
  font-weight: 700;
}
.test-review p span {
  font-size: 18px;
  color: var(--theme-green-color);
  font-weight: 700;
  letter-spacing: -1px;
}
.testimonial-tab .tab-content h3 {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--theme-black-color) !important;
}
.testimonial-tab .tab-content h3.test-name {
    font-size: 18px !important;
    font-weight: 600;
    color: var(--theme-black-color) !important;
}
.testimonial-tab .tab-content p {
    color: var(--theme-black-color);
    font-size: 16px;
}

/*Testimonial Video Section =========================*/
.testimonial-video{
  border-radius: 15px;
  overflow: hidden;
  padding: 177.78% 0 0 0;
  position: relative;
  flex-grow: 1;
  align-self: stretch;
  flex-basis: auto;
  flex-shrink: 1;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.testimonial-video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Stock Up Now Section =======================*/
.stock-up-now-sec{
  background: linear-gradient(90deg, #EEEA74FF 0%, #8DBA38FF 0%, #C0D142FF 100.00%);
  padding: 20px 0 0 0;
}
/*Want To Join Section =======================*/
.want-to-join-sec{
  padding: 35px 0;
  background: var(--theme-dark-green-color);
}
.want-to-join-sec h1{
  color: var(--theme-white-color);
  font-size: 46px;
  font-weight: 600;
}
/*FAQ Section =======================*/
.faq-sec{
  background: var(--theme-light-green-color);
}
.faq-cnt .accordion-button{
  font-size: 20px;
  color: var(--theme-black-color);
  padding: 10px 0;
  font-weight: 500;
  background: var(--theme-light-green-color);
  border-bottom: 1px solid var(--theme-light-green-color);
}
.faq-cnt .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed{
  border-bottom: 1px solid var(--theme-black-color);
}
.faq-cnt .accordion-button:focus{
  box-shadow: none;
}
.faq-cnt .accordion-body{
  background: var(--theme-light-green-color);
  border-bottom: 1px solid var(--theme-black-color);
}

/*Footer Section =============================*/
.footer-main{
  background: var(--theme-green-color);
  padding: 10px;
}
.footer-main .copyright p{
  color: var(--theme-white-color);
  font-size: 14px;
  margin-bottom: 0;
}
.footer-main .copyright p a{
  color: var(--theme-white-color);
}
.footer-main .copyright p a:hover{
  color: var(--theme-yellow-color);
}

.price-details .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}


.price-details .accordion-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.price-details .accordion-arrow.open {
  transform: rotate(180deg);
}

.price-details .accordion-content {
  display: none;
/*  padding: 10px 15px;
  border: 1px solid #ddd;*/
  border-top: none;
}
.price-details .accordion-content.active {
  display: block;
}