/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*=============== VARIABLES CSS ===============*/

:root {
  --header-height:3.5rem;
  --primary-color:#80EF80;
  --orange-color: hsl(36, 90%, 54%);
  --green-color: hsl(166, 90%, 40%);
  --blue-color: hsl(204, 90%, 50%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(210, 8%, 8%);
  
  --body-font: "Inter", sans-serif;
  --second-font: 'Hackney';
  --biggest-font-size: 5rem;
  --big-font-size: 2rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 15rem;
    --big-font-size: 6rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}
@font-face {
  font-family: 'Hackney';
  src: url('../font/HackneyPersonalUseOnly.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,body {
  font-family: "Inter", sans-serif !important;
  font-size: var(--normal-font-size);
  /* color: var(--white-color); */
}

ul {
  list-style: none;
  padding-left: 0;
}
input:focus,
textarea:focus,
select:focus{
  box-shadow: none !important;
  outline: none !important;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
.form-label{
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.section {
  padding: 70px 0;
}

.fancy_font{
  font-family: var(--second-font);
  font-weight: 500;
  font-size:70px;
}
.section_heading{
  font-size: 40px;
  color: #000;
  font-weight: 600;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/* .container {
  max-width: 1120px;
  margin-inline: 1.5rem;
} */

.main {
  overflow: hidden;
}

.drink_watermelon {
  background: url(../img/s1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.drink_peachlemon {
  background: url(../img/s2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.drink_ginger {
  background: url(../img/s3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.drink_fruitbeer {
  background: url(../img/s4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}


/*=============== HEADER & NAV ===============*/
.navbar{
    background-color: var(--primary-color);
    
}
.navbar-light .navbar-nav .nav-link{
    color:#000;
    font-size:20px;
    font-weight:600;
    padding:0px 20px;
}





.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  z-index: var(--z-fixed);
  height:60px;
  display:flex;
  align-items:center;
}

.header .nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.nav_logo {
  max-width: 180px;
  width: 150px;
}

.nav_toggle,
.nav_close {
  font-size: 1.5rem;
  color: var(--white-color);
  cursor: pointer;
  transition: color .4s;
}

/* Navigation for mobile devices */

@media screen and (max-width:1150px) {
  .nav_menu {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: var(--black-color);
    width: 80%;
    height: 100%;
    padding: 7.5rem 3.5rem 0;
    border-left: 2px solid var(--black-border);
    transition: right .4s;
    z-index:99;
  }
}

.nav_list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  margin-bottom: 0;
}

.nav_link {
  color: #000;
  font-size: 20px;
  font-weight: var(--font-semi-bold);
  transition: color .4s;
}

.nav_link:hover {
  color: var(--first-color);
}

.nav_close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}







/* Show menu */
.show-menu {
  right: 0;
}

/* Change background header */


/* Active link */


/*=============== HOME ===============*/


/*=============== BUTTON ===============*/
.main_btn {
  display: inline-flex;
  background: var(--primary-color);
  color: #000;
  font-weight: var(--font-semi-bold);
  padding: 12px 2rem;
  border-radius: 14px;
  transition: box-shadow .4s;
  border:none;
}

.main_btn:hover {
  box-shadow: 0 8px 32px hsla(18, 95%, 55%, .3);
  color: #000;
}

@media screen and (max-width:340px) {
  .container {
    margin-inline: 1rem;

  }

}

@media screen and (min-width:768px) {
  .nav_menu {
    width: 50%;
  }
}


@media screen and (min-width:1150px) {
  .header .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav_toggle,
  .nav_close {
    display: none;
  }

  .nav_menu {
    width: initial;
  }

  .nav_list {
    flex-direction: row;
    align-items: center;
    column-gap: 4rem;
  }

  .bg-header .nav_link {
    color: var(--text-color);
  }

  .bg-header .active-link,
  .bg-header .nav_link:hover {
    color: var(--first-color);
  }

  .bg-header .main_btn,
  .bg-header .main_btn:hover {
    color: var(--white-color);
  }

}

/* Show menu */


/* Add blur header */


/*=============== HOME ===============*/
.home{
  position: relative;
}
.home_article {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 0;  
}

.home_data {
  /* position: relative; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

/* .home_titles{
  width: max-content;
  margin-inline: auto;
} */
.home_title {
  font-size: 90px;
  line-height: 80px;
  color: #fff;
  font-family: var(--second-font);
}
.home_titles p{
  max-width: 70%;
  color: #fff;
}

.home_image {
  transform: rotate(11.96deg);
  position: relative;
}
.home_image .homeleaf1{
  position: absolute;
  top: 200px;
  left: 100px;
}
.home_image .homeleaf2{
  position: absolute;
  bottom: 100px;
  left: 100px;
}
.home_image .homeleaf3{
  position: absolute;
  bottom: 400px;
  right: 0;
}

.home_img {
  max-width: initial;
  width: 300px;
  transform: translateX(10rem);
  opacity: 0;
  margin-left: 200px;
  transition: transform .8s .3s, opacity .4s .3s;
}




/* Swiper class */

.home .swiper {
  height: 100vh;

}
.home .swiper-button-prev::after,
.home .swiper-button-next::after {
    content: '';
}

/* ---- Custom Navigation Buttons ---- */
.home .swiper-controls {
  position: absolute;
  right: 200px;        /* distance from right edge */
  bottom: 10%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column !important;  /* stack vertically */
  gap: 10px;
  z-index: 20;
}
.home .swiper-controls .swiper-button-next{
  right: -120px;
}

.home .swiper-button-prev,
.home .swiper-button-next {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.home .swiper-button-prev:hover,
.home .swiper-button-next:hover {
  background: var(--primary-color);
}

.home .swiper-button-prev i,
.home .swiper-button-next i {
  font-size: 20px;
}

/* Position arrows on both sides */



/* Swiper animation */

.swiper-slide-active .home_img {
  transform: translateX(0);
  opacity: 1;
}
/*.home_titles {*/
/*  transform: translateX(-400px);  */
/*  opacity: 0;*/
/*  transition: all 1s ease;        */
/*}*/

/*.swiper-slide-active .home_titles {*/
/*  transform: translateX(0);*/
/*  opacity: 1;*/
/*}*/

.homeleaf1, .homeleaf2, .homeleaf3 {
  opacity: 0;
  transform: translateY(20px) rotate(0deg);
  transition: all 1s ease;
}

.swiper-slide-active .homeleaf1 {
  opacity: 1;
  transform: translateY(0) rotate(-10deg);
  transition-delay: 0.4s;
}

.swiper-slide-active .homeleaf2 {
  opacity: 1;
  transform: translateY(0) rotate(5deg);
  transition-delay: 0.6s;
}

.swiper-slide-active .homeleaf3 {
  opacity: 1;
  transform: translateY(0) rotate(15deg);
  transition-delay: 0.8s;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
/*@media screen and (max-width:330px) {*/
/*  .container {*/
/*    margin-inline: 1rem;*/
/*  }*/

/*  .home_title {*/
/*    font-size: 4rem;*/
/*  }*/

/*  .home_img {*/
/*    width: 350px;*/
/*  }*/
/*}*/

/*@media screen and (min-width:350px) and (max-height:680px) {*/

/*  .home_swiper,*/
/*  .home_article {*/
/*    height: 700px;*/
/*  }*/
/*}*/


/* For medium devices */


/* For large devices */
/* 
@media screen and (min-width:1150px){
  .container{
    margin-inline: auto;
  }
  .home_article{
    padding-top: 4rem;
  }
  .home_img{
    width: 800px;
    bottom: -11.5rem;
    transform: translateX(20rem);
  }
} */


/* For taller devices */


.benefits-marquee {
  width: 100%;
  overflow: hidden;
  background: #28BCA9;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 0;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-content span {
  display: inline-block;
  margin: 0 25px;
  letter-spacing: 1px;
  font-family: var(--second-font);
}
.marquee-content .text{
  font-size: 40px;
  font-weight: bold;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.benefits-marquee:hover .marquee-content {
  animation-play-state: paused;
}


.about{
    background:#f5f5f5;
}

.about .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
/*.about .fancy_font{*/
/*  font-size: 70px;*/
/*}*/



/*.about .image {*/
  /*position: relative;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
  /*width: 600px;*/
  /*height: 600px;*/
  /*background: url(../img/about/Star1.png) center/contain no-repeat;*/
/*}*/

@media screen and (max-width:600px){
  .about .image{
    width: 100%;
    height: 100%;
  }
}

/* second decorative vector image */
/*.about .image::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 60%;*/
/*  height: 60%;*/
/*  background: url(../img/about/Star2.png) center/contain no-repeat;*/
/*  transform: translate(-50%, -50%);*/
/*  z-index: 1;*/
/*  pointer-events: none;*/
/*  opacity: 0.9; */
/*}*/

/* ensure the fruit/character image stays above */
.about .image img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
}





.features{
  background: var(--primary-color);
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #9CF18B;
}
.features .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; /* adjust to blend softly with green */
  z-index: 0;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #9CF18B; /* overlay green tint */
  opacity: .2;
  z-index: 1;
}
.features .flex_row{
  max-width: 1024px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 999;
}
.features .section_heading{
  position: relative;
  z-index: 999;
}
.features .flex_row .item{
  text-align: center;
}
.features .flex_row .item .icon{
  margin-bottom: 16px;
  
}
.features .flex_row .item .icon img{
  margin: 10px auto 20px;
}
.features .flex_row .item h6{
  margin-bottom: 0;
  font-size: 18px;
}


/* join_crew */
.join_crew{
  position: relative;
  z-index: 99;
}
.join_crew .vector{
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  z-index:unset;
}

.join_crew .grid_row{
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
}

/*.join_crew .fancy_font{*/
/*  font-size: 70px;*/
/*}*/
.join_crew .subscrbe{
  margin-bottom: 24px;
}
.join_crew .subscrbe input{
  width: 100%;
  height: 50px;
  padding: 0px 16px;
  border-radius: 14px;
  border: 1px solid #000;
}
.join_crew .subscrbe input::placeholder{
  font-size: 14px;
  font-weight: 300;
}

.join_crew .image{
  width: 100%;
}
.join_crew .qr-code{
  width: 200px;
  margin-bottom: 16px;
}


/* offer */


.offer .swiper-slide img{
  width: 100%;
}
.offer {
  position: relative;
  padding-bottom: 60px; /* space for buttons at bottom */
}

.offer .mySwiper {
  position: relative;
}

.offer .swiper-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

/* Customize Swiper nav buttons */
.offer .swiper-button-next,
.offer .swiper-button-prev {
  position: static !important; /* remove default positioning */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: 0.3s;
}

.offer .swiper-button-next::after,
.offer .swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.offer .swiper-button-next:hover,
.offer .swiper-button-prev:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Hide pagination */
.offer .swiper-pagination {
  display: none !important;
}

.logo_sec{
    background:#f5f5f5;
}
.logo_sec .flex_row{
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.logo_sec .flex_row .item{
width: 180px;
}
.logo_sec .flex_row .item img{
width: 100%;
}


/*footer {*/
/*  background: var(--primary-color);*/
  
/*}*/
/*footer .top_sec{*/
/*  padding: 100px 0;*/
/*  height: 400px;*/
/*  position: relative;*/
/*}*/
/*footer .top_sec h2{*/
/*  text-align: center;*/
/*  font-family: var(--second-font);*/
/*  font-size: 100px;*/
/*}*/

/*footer .iconwatermelon{*/
/*  position: absolute;*/
/*  bottom: 20px;*/
/*  left: 350px;*/
/*}*/
/*footer .iconlemon{*/
/*  position: absolute;*/
/*  bottom: 130px;*/
/*  left: 140px;*/
/*}*/
/*footer .leaf1{*/
/*  position: absolute;*/
/*  top: 100px;*/
/*  left: 350px;*/
/*}*/

/*footer .leaf3{*/
/*  position: absolute;*/
/*  bottom: 20px;*/
/*  right: 350px;*/
/*  transform: rotate(52deg);*/
/*}*/
/*footer .leaf2{*/
/*  position: absolute;*/
/*  bottom: 130px;*/
/*  right: 140px;*/
/*  transform: rotate(132deg);*/
/*}*/
/*footer .iconlemon1{*/
/*  position: absolute;*/
/*  top: 100px;*/
/*  right: 350px;*/
/*}*/


/*footer .bottom_sec{*/
/*  background: url(../img/footer-icons/Vector.png);*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  height: auto;*/
/*  padding-bottom:70px;*/
/*  position: relative;*/
/*}*/

/*footer .bottom_sec .footer_links{*/
/*  position: relative;*/
/*  display: flex;*/
/*  gap: 16px;*/
/*  justify-content: center;*/
/*  padding-top: 80px;*/
/*  z-index: 9999;*/
/*}*/
/*footer .bottom_sec .first_row a{*/
/*    font-size:22px !important;*/
/*}*/
/*footer .bottom_sec .footer_links a{*/
/*  font-size: 16px;*/
/*  color: #000 ;*/
/*  font-weight: 500;*/
/*}*/

/*footer .social_media{*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  gap: 16px;*/

/*}*/
/*footer .social_media span{*/
/*  font-size: 16px;*/
/*}*/
/*footer .social_media a{*/
/*  font-size: 20px;*/
/*  transition: all .3s;*/
/*}*/
/*footer .social_media a i{*/
/*  color: #000;*/
/*}*/

/*footer .drink_images{*/
/*  display: flex;*/
/*  justify-content: center;*/
/*}*/
/*footer .drink_images .drink1{*/
/*  position: absolute;*/
/*  bottom: -150px;*/
/*  left: 200px;*/
/*  transform: rotate(-20deg);*/
/*}*/
/*footer .drink_images .drink2{*/
/*  position: absolute;*/
/*  bottom: -30px;*/
/*  left: 450px;*/
/*  transform: rotate(-10deg);*/
/*}*/
/*footer .drink_images .drink3{*/
/*  position: absolute;*/
/*  bottom: -150px;*/
/*  right: 450px;*/
/*  transform: rotate(20deg);*/
/*}*/
/*footer .drink_images .drink4{*/
/*  position: absolute;*/
/*  bottom: -100px;*/
/*  right: 200px;*/
/*  transform: rotate(20deg);*/
/*}*/


footer {
  background: url('../img/footer-bg.jpg') no-repeat center/cover;
  /* background: var(--primary-color); */
  padding: 110px 0 0px;
  position: relative;
  overflow: hidden;
  
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* black overlay */
  z-index: 0;
}

footer .container {
  padding-bottom: 90px;
  position: relative;
}

footer .footer_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

footer .footer_title {
    color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer .footer_links li {
  margin-bottom: 8px;
}

footer .footer_links a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

footer .contact_details {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .contact_details li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

footer .contact_details i {
  font-size: 18px;
  color: #fff;
}

footer .contact_details a {
  color: #fff;
  margin-right: 10px;
  transition: color 0.3s;
}

footer .contact_details a:hover {
  color: #fff;
}

footer .contact_details .social_media {
  margin-top: 24px;
}

footer .footer_qr {
  max-width: 100px;
  
}
footer .qr-code{
    filter: brightness(0) invert(1);
}

footer .footer_col p {
  max-width: 80%;
}

footer .footer_vector {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  z-index: 0;
}

footer .footer_3d {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}

footer .footer_copyright {
  background-color: #00A799;
  width: 100%;
  height: 40px;
}

footer .col_center {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

footer .fancy_font {
  font-size: 60px;
  color:#fff;
}

footer .col_center .main_btn {
  background-color: #fff;
  width: fit-content;
}

@media screen and (max-width:1156px) {
  footer .footer_3d {
    bottom: -46px;
    width: 520px;
  }
}

@media screen and (max-width:991px) {
  footer .footer_grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  footer .col_center{
    order: 3;
    /*padding-bottom: 100px;*/
  }

  footer .col_center {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    /* text-align: start;
    align-items: start; */
  }
  footer .container{
    padding-bottom: 90px;
  }
  footer .contact_details{
    text-align: center;
    padding-bottom: 0px;
  }
  footer .contact_details li {
    display: block;
  }
}

@media screen and (max-width:600px){
  footer .contact_details {
    padding-bottom:0px;
}
footer{
  padding: 60px 0 0;
}

footer .footer_3d {
        bottom: -28px;
    }
}

footer .qr-code{
  width: 100px;
  margin-bottom: 16px;
}



.product_banner{
  position: relative;
  background: url('../img/product-banner.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_banner h2{
  position: relative;
  color: #fff;
  z-index: 99;
  font-size: 100px;
  font-family: var(--second-font);
  line-height: 100px;
  font-weight: 800;
  margin-bottom: 0;
  padding-top: 60px;
}





.products .grid_row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: start;
}

/* Each product card */
.products .item {
  position: relative;
  width: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

/* Base circle setup (behind image) */
.products .item span {
  position: absolute;
  top: 35%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -65%) scale(0.5);
  transition: all 0.5s ease;
  z-index: 0;
}

/* Circle sizes */
.products .item .circle1 {
  width: 150px;
  height: 150px;
}
.products .item .circle2 {
  width: 200px;
  height: 200px;
}
.products .item .circle3 {
  width: 250px;
  height: 250px;
}

/* Product image */
.products .item img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  transition: transform 0.4s ease;
}

/* Hover effects */
.products .item:hover span {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.products .item:hover img {
  transform: translateY(-10px);
}

/* Product details (under image) */
.products .item .product_details {
  position: relative;
  z-index: 3;
}

.products .item .product_details h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.products .item .product_details p {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
}
/*.products .buttons{*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*}*/
.products .main_btn{
  padding: 12px 20px;
  /*font-size: 12px;*/
}
.products .cart_btn{
  padding: 12px 16px;
  background: #000;
  color: #fff;
}

/* 🍉 WATERMELON */
.watermelon .circle1 {
  background: #F97C8D;
}
.watermelon .circle2 {
  background: #F6465B;
}
.watermelon .circle3 {
  background: #D50C14;
}

/* 🍑 PEACH */
.peach .circle1 {
  background: #ff9800;
}
.peach .circle2 {
  background: #ffb74d;
}
.peach .circle3 {
  background: #ffe0b2;
}

/* 🫚 GINGER */
.ginger .circle1 {
  background: #A1FFF6;
}
.ginger .circle2 {
  background: #2FD1C3;
}
.ginger .circle3 {
  background: #00A799;
}

/* 🍺 FRUIT BEER */
.fruitbeer .circle1 {
  background: #9c27b0;
}
.fruitbeer .circle2 {
  background: #ba68c8;
}
.fruitbeer .circle3 {
  background: #e1bee7;
}


/* Hide pagination by default */
.productSwiper .swiper-pagination {
  display: none !important;
}

/* Show pagination only on tablets (768px–1024px) */
@media screen and (max-width:1156px) {
  .productSwiper .swiper-pagination {
    display: block !important;
  }

}

.productSwiper {
  padding: 0px 70px 30px;
}
.productSwiper .swiper-slide{
  display: flex;
  justify-content: center;
}


.how_to_enjoy {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 16px;
}
.how_to_enjoy .item{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: #fedeab3d;
  transition: all 0.3s ease;
}
.how_to_enjoy .item:hover {
  transform: translateY(-5px);
}
.how_to_enjoy .icon{
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  background-color: #FEDEAB;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F58C53;
  font-size: 32px;
}
.how_to_enjoy h6{
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 500;
}
.how_to_enjoy p{
  margin-bottom: 0px;
  font-size: 12px;
  font-weight: 500;
}


/* 1️⃣ With Meals */
.how_to_enjoy .item:nth-child(1) {
  background: #fff5f5;
}
.how_to_enjoy .item:nth-child(1) .icon {
  color: #e74c3c;
  background: #fdecea;
}

/* 2️⃣ Midday Refresher */
.how_to_enjoy .item:nth-child(2) {
  background: #fffbea;
}
.how_to_enjoy .item:nth-child(2) .icon {
  color: #f1c40f;
  background: #fff3cd;
}

/* 3️⃣ As a Mixer */
.how_to_enjoy .item:nth-child(3) {
  background: #e8f7ff;
}
.how_to_enjoy .item:nth-child(3) .icon {
  color: #3498db;
  background: #d6ecff;
}

/* 4️⃣ On the Go */
.how_to_enjoy .item:nth-child(4) {
  background: #eefaf3;
}
.how_to_enjoy .item:nth-child(4) .icon {
  color: #27ae60;
  background: #daf5e6;
}

/* 5️⃣ Evening Unwind */
.how_to_enjoy .item:nth-child(5) {
  background: #f4f0ff;
}
.how_to_enjoy .item:nth-child(5) .icon {
  color: #8e44ad;
  background: #ebe1ff;
}









.variety_packs .grid_row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-items: center !important;
}

.variety_packs .item {
  text-align: center;
}

.variety_packs .pack_image {
  background-color: #ededed;
  margin-bottom: 20px;
  border-radius: 14px;
}
.variety_packs .pack_details h3{
  font-size: 16px;
}

.variety_packs .pack_image img {
  margin: auto;
}


.variety_packs .pack_image {
  position: relative;
  overflow: hidden;
}

.variety_packs .pack_image img {
  width: 100%;
  transition: opacity 0.4s ease;
}

.variety_packs .pack_image img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.variety_packs .pack_image:hover{
  cursor: pointer;
}
.variety_packs .pack_image:hover img.default {
  opacity: 0;
}

.variety_packs .pack_image:hover img.hover {
  opacity: 1;
}









.product_single_banner{
  position: relative;
}
.product_single_banner::after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 100px;
  background-image: url('../img/Vector.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0px;
  left: 0;
  transform: rotate(180deg);
}
.product_detail_page .grid_row{
  display: grid;
  grid-template-columns: 50% 40%;
  gap: 50px;
  align-items: start;
}
.product_detail_page .product_details .section_heading{
    font-size:28px;
}
.product_detail_page .product_details .flex_row{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.product_detail_page .product_details .flex_row h4{
  margin-bottom: 0;
}

/* Change Swiper navigation arrows to white */
.product_detail_page .swiper-button-next,
.product_detail_page .swiper-button-prev {
  color: #fff !important;
}

/* Optional: make them more visible */
.product_detail_page .swiper-button-next::after,
.product_detail_page .swiper-button-prev::after {
  font-size: 24px;   /* adjust arrow size */
  font-weight: bold;
}


.pack-options {
  display: flex;
  gap: 10px;
}

.pack-btn {
  padding: 4px 16px;
  border: 1px solid var(--primary-color);
  background: #fff;
  color: #000;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.pack-btn:hover {
  background: #f1f5ff;
}

.pack-btn.active {
  background: var(--primary-color);
  color: #000;
}

.product_detail_page .product_details .price{
  font-weight: 800;
  margin-bottom: 0;
}

.product_details .price_counter{
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.counter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.counter-btn {
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: 0.3s;
}

.counter-btn:hover {
  background: #2e69d3;
}

#count {
  font-size: 18px;
  min-width: 25px;
  text-align: center;
  margin-bottom: 0;
}



.product_single_banner{
  position: relative;
  /*background: url(../img/product_single_banner.png) center/cover no-repeat;*/
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
}



.customer_review .average_rating{
  margin-bottom: 40px;
}
.customer_review h6{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.customer_review .star_rating{
  display: flex;
  gap: 6px;
  padding-left: 0;
}
.customer_review .star_rating i{
  color: #FFD700;
}

.customer_review .add_review_form .input_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 24px;
}
.customer_review input{
  height: 50px;
  border-radius: 0;
}
.customer_review textarea{
  border-radius: 0;
  margin-bottom: 24px;
}

.customer_review input ,
.customer_review textarea{
  border: none;
  border-bottom: 1px solid #000;
} 


.about_page{
  padding-top: 100px;
}

.about_page .content p{
  font-size: 20px;
}


/*.about_page .grid_row{*/
/*    align-items:start;*/
/*}*/

.contact_us .grid_row{
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 50px;
}

.p-180{
  padding-top: 160px;
}

/* cart page css */

.cart_page .cart_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.cart_page .cart_table_wrapper {
  overflow-x: auto;
}

.cart_page .cart_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart_page .cart_table th, .cart_table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.cart_page .product_name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart_page .product_img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 5px;
}

.cart_page input[type="number"] {
  width: 60px;
  padding: 5px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.cart_page .remove_btn {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #ff4d4f;
  cursor: pointer;
}

.cart_page .remove_btn:hover {
  color: #ff0000;
}

.cart_page .cart_total_section {
  text-align: right;
}

.cart_page .cart_total_section h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.cart_page .cart_total_section span {
  color: #000;
  font-weight: bold;
}

.cart_page .proceed_btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cart_page .proceed_btn:hover {
  background-color: #336fcc;
}



.login{
    padding-top:120px;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}
.login .login-card{
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 30px;
  border-radius: 24px;
}

.login .grid_row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
}

.login input{
  height: 50px;
}
.login .form-label{
    font-weight:300;
}
.login .login-card p{
  font-size: 14px;
}

.login input::placeholder{
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width:600px){
    .login .grid_row{
        grid-template-columns: 1fr;
        gap:0px;
    }
}

.otp-card{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 30px;
  border-radius: 24px;
}
.otp-inputs {
  display: flex;
  /* justify-content: center; */
  gap: 12px;
  margin-bottom: 25px;
}

.otp-inputs input {
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border: 1.8px solid #dee2e6;
  border-radius: 8px;
  transition: 0.3s;
}
.otp-card .main_btn{
  margin-bottom: 20px;
}

.otp-card p{
  font-size: 12px;
}



/* Pagination container */
.testimonial .swiper-pagination {
  position: relative;
  margin-top: 50px;
  text-align: center;
}

/* Default bullet style */
.testimonial .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d9d9d9; /* light gray */
  opacity: 1;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Active bullet */
.testimonial .swiper-pagination-bullet-active {
  width: 25px;
  border-radius: 6px;
  background: #00A799;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}

/* Optional hover effect */
.testimonial .swiper-pagination-bullet:hover {
  transform: scale(1.2);
}

.testimonial .review_box{
  background-color: #00A799;
  width: 100%;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
}
.testimonial .review_box .star_rating{
  margin-bottom: 24px;
}
.testimonial .review_box .star_rating i{
  font-size: 24px;
}
.testimonial .review_box .message{
  margin-bottom: 24px;
}

.testimonial .review_box .name{
  font-size: 20px;
}

/* 4 color variations repeating for slides */
.testimonial .swiper-slide:nth-child(4n+1) .review_box {
  background-color: #FFFF00; /* Teal */
}

.testimonial .swiper-slide:nth-child(4n+2) .review_box {
  background-color: #F97C8D; /* Orange */
}

.testimonial .swiper-slide:nth-child(4n+3) .review_box {
  background-color: #80EF80; /* Pinkish Red */
}

.testimonial .swiper-slide:nth-child(4n+4) .review_box {
  background-color: #28BDAA; /* Purple */
}






.blogs .blog_grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.blogs .blog_item {
  display: flex;
  gap: 20px;
}

.blogs .blog_image {
  min-width: 200px;
  min-height: 200px;
  max-width: 200px;
  max-height: 200px;
}

.blogs .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs .blog_title {
  font-size: 22px;
  font-weight: 600;
}

.blogs .read_more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-weight: 500;
}





.blog_single_page .blog_box .blog_name {
  font-size: 32px;
  margin-bottom: 24px;
}

.blog_box .blog_image {
  margin-bottom: 24px;
  width: 100%;
  height: 400px;

}

.blog_box .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog_box .blog_data h6 {
  font-size: 24px;
  font-weight: 500;
}










        .product_detail_page .stock-info {
            color: #27ae60;
            font-size: 14px;
            margin: 5px 0;
        }
        
        .product_detail_page .counter {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .product_detail_page .counter-btn {
            width: 35px;
            height: 35px;
            border: 1px solid #ddd;
            background: #f8f9fa;
            border-radius: 5px;
            cursor: pointer;
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .product_detail_page .counter-btn:hover {
            background: #27ae60;
            color: #fff;
            border-color: #27ae60;
        }
        
        .product_detail_page #count {
            font-size: 20px;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }




.about_sec_two {
  background: url(../img/About-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 150px 0 50px; */
  height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}


.about_sec_two::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* black overlay */
  z-index: 0;
}

.about_sec_two .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about_sec_two .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about_sec_two .image {
  text-align: center;
  margin: auto;
}

.about_sec_two .fancy_font {
  font-size: 80px;
  line-height:70px;

}

.about_sec_two ul li {
  background-color: var(--primary-color);
  padding: 4px 16px;
  margin-bottom: 16px;
  width: fit-content;
  border-radius: 50px;
  color: #000;
  font-size:20px;
}



.about_sec_three{
    background:#F2F2F2;
}
.about_sec_three .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about_sec_three .image {
  text-align: center;
  margin: auto;
  max-width: 500px;
}

.about_sec_three .fancy_font{
  font-size: 50px;
  margin-bottom: 24px;
}


.about_sec_four{
    background:#36CCBF;
}

.about_sec_four .grid_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about_sec_four .image {
  text-align: center;
  margin: auto;
  max-width: 500px;
}

.about_sec_four .fancy_font{
  font-size: 50px;
  margin-bottom: 24px;
}



.every_flavour_boxes .grid_row{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}


.every_flavour_boxes .box{
  background: #f6465bc6;
  padding: 16px 16px 24px;
  border-radius: 20px;
  color: #000;
  text-align: center;
}
.every_flavour_boxes .two{
  background: #ffbd22ba;
}
.every_flavour_boxes .three{
  background: #36ccc0cd;
}
.every_flavour_boxes .four{
  background: #648ad5cf;
}
.every_flavour_boxes .box .image{
  border-radius: 8px;
  overflow: hidden;
}

.every_flavour_boxes .box h6{
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
  margin-bottom: 4px;
}
.every_flavour_boxes .box  span{
  font-weight: 200;
}
.every_flavour_boxes .box p{
  margin-top: 24px;
  font-size: 14px;
  margin-bottom: 0;
}








.blog_wrapper .grid_row .single_blog{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.blog_wrapper .blog_item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}


.single_blog .blog_item{
  position: relative;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.single_blog .blog_item::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}
.single_blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single_blog .blog_details{
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.single_blog .blog_details .blog_category{
  color: #fff;
  width: fit-content;
}
.single_blog .blog_details .post_title{
  font-size: 18px !important;
  font-weight: 600;
  margin-bottom: 0;
  color: #fff;
  transition: all .3s;
}
.single_blog .blog_details .post_title:hover{
  text-decoration: underline;
}
.single_blog .blog_details .post_meta{
  color: #fff;
  display: flex;
  gap: 20px;
}
.single_blog .blog_details .post_meta span{
  font-weight: 100;
  font-size: 14px;
}

.blog_wrapper .multiple_blogs{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog_wrapper .multiple_blogs .blog{
  display: flex;
  gap: 20px;
}
.blog_wrapper .multiple_blogs .blog_img{
  max-width: 220px;
  max-height: 220px;
  min-width: 220px;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
}
.blog_wrapper .multiple_blogs .blog_category{
  color: var(--second-color);
}
.blog_wrapper .multiple_blogs .blog_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_wrapper .multiple_blogs .blog .post_title{
  font-size: 16px;
  line-height: 24px;
  transition: all .3s;
  margin-bottom: 20px;
  /* color: #fff; */
}
.blog_wrapper .multiple_blogs .blog .post_title:hover{
  text-decoration: underline;
}

.blog_wrapper .multiple_blogs .post_meta{
  display: flex;
  flex-direction: column;
  /* color: #fff; */
}
.blog_wrapper .multiple_blogs .post_meta span{
  font-weight: 200;
  font-size: 14px;
}

.blog_wrapper .multiple_blogs .blog .blog_details{
  display: flex;
  flex-direction: column;
}




.blog_wrapper .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media screen and (max-width:1156px) {
  .blog_wrapper .container {
    gap: 20px;
  }
  .blog_wrapper .grid_row{
    grid-template-columns: 1fr;
  }
  .blog_wrapper .multiple_blogs{
    display: none;
  }
}

@media screen and (max-width:991px) {
  .blog_wrapper .grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog_wrapper .container a {
  color: #000;
}

.blog_wrapper .blox_box {
  /* border: 1px solid #000; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  overflow: hidden;
}

.blog_wrapper .blox_box .blog_image {
  height: 250px;
  width: 100%;
  position: relative;
}

.blog_wrapper .blog_image .date_box {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: var(--orange-color);
  height: 70px;
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog_wrapper .blog_image .date_box h6 {
  margin-bottom: 0;
}

.blog_wrapper .blox_box .blog_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.blog_wrapper .blox_box .blog_details {
  padding: 20px;
  background-color: #fff;
}

.blog_wrapper .blox_box .blog_details .blog-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* white-space: nowrap; */
  display: none;
}

.blog_wrapper .blox_box .blog_details .blog_category {
  background-color: #EECAC9;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.blog_wrapper .blox_box .blog_details .blog_title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog_wrapper .blox_box .blog_details .blog_auther {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog_wrapper .blox_box .blog_details .blog_auther .profile-img {
  width: 60px;
  height: 60px;
}

.blog_wrapper .blox_box .blog_details .blog_auther .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.blog_wrapper .blox_box .blog_details .blog_auther .auther_details h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.blog_wrapper .blox_box .blog_details .blog_auther .auther_details span {
  font-size: 12px;
}







.founder_message {
  /*background: #80EF80;*/
  /*position: relative;*/
  overflow: hidden; /* ensures the pseudo-element doesn’t spill outside */
}

/*.founder_message::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: url('../img/message-bg.png') no-repeat center center;*/
/*  background-size: cover;*/
/*  opacity: 0.1; */
/*  z-index: 1;*/
/*}*/

/* If your section has inner content */
.founder_message > * {
  position: relative;
  z-index: 2;
}

.message_box {
  background: #fff;
  /*max-width: 700px;*/
  padding: 50px 60px;
  border-radius: 40px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  /*transform: rotate(-2deg);*/
  position: relative;
  margin: auto;
}

/* Punch holes on left side */
/*.message_box::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 40px;*/
/*  left: -20px;*/
/*  width: 10px;*/
/*  height: calc(100% - 80px);*/
/*  background: radial-gradient(circle at center, #80ef80 50%, transparent 52%) repeat-y;*/
/*  background-size: 20px 50px;*/
/*}*/

/* Text styles */
.message_box h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color:#000;
}

.message_box p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

@media screen and (max-width:600px){
  .message_box{
    padding: 30px 20px;
    transform: rotate(0deg);
    text-align: center;
  }
}








.daily_invitaion{
  position: relative;
}

.daily_invitaion .vector{
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  z-index:unset;
}

.daily_invitaion .content{
  position: relative;
  z-index: 99;
}

.daily_invitaion .section_heading{
  text-align: center;
  margin-bottom: 40px;
}

.daily_invitaion .flex_box{
  display: flex;
  margin-left: 80px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.daily_invitaion .flex_box .item{
  width: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.daily_invitaion .flex_box .icon{
  width: 24px;
}

.daily_invitaion .flex_box h6{
  margin-bottom: 0;
}

.daily_invitaion .text-center span{
  font-weight: 300;
}

@media screen and (max-width:600px){
  .daily_invitaion .flex_box{
    margin-left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .daily_invitaion .flex_box .item{
    width: 100%;
  }
  .daily_invitaion .section_heading{
    text-align: start;
    margin-bottom: 20px;
  }
  .daily_invitaion .text-center{
    text-align: start !important;
    margin-top: 30px !important;
  }
 
}





#onloadModal{
     z-index:99999;
}
.flavour-popup {
  background: radial-gradient(circle at top right, #ff4da6, #ff884d);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: popIn 0.6s ease;
  overflow: hidden;
 
}

@keyframes popIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.flavour-title {
  font-size: 80px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--second-font);
}
@media screen and (max-width:600px){
  .flavour-title{
    font-size: 40px;
    line-height: 40px;
  }
}

.flavour-text {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 25px;
}

.notify-btn {
  background: #fff;
  color: #ff4da6;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.notify-btn:hover {
  background: #ffe3f1;
  transform: scale(1.05);
}

.btn-close-white {
  filter: invert(1);
}




.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.delivery-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.delivery-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ecc71; /* Green color */
  font-size: 20px;
  line-height: 1.4;
}






.profile h6{
  font-size: 22px;
  margin-bottom: 16px;
}

.profile .box{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 32px;
}
.profile .box p{
  margin-bottom: 0;
}
.profile .box .text-muted{
  font-size: 14px;
  margin-bottom:4px;
}


.profile .flex_row{
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}

.profile .added_address{
  margin-bottom: 16px;
}

.profile .address_addbtn{
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 500;
}
.profile .flex_row .text-muted{
  margin-bottom: 0 !important;
}

.profile .added_address{
  max-width: 400px;
}


.profile_modal .input_row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.profile_modal input{
  height: 50px;
  border-radius: 8px;
}
.profile_modal input::placeholder{
  font-size: 12px;
}

.profile_modal .input_row_three{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  gap: 8px;
}

.profile_modal .modal-content{
  border: none;
  border-radius: 16px;
}

@media screen and (max-width:600px){
  .profile_modal .input_row,
  .profile_modal .input_row_three{
    grid-template-columns: 1fr;
  }
}
.profile_modal .form-check-input{
  height: 16px;
}

.mobile_nav{
    display:none;
}
.navbar-nav .dropdown-menu{
    position:absolute;
}


@media screen and (max-width:991px){
    .navbar{
        padding:1rem;
    }
    .navbar-collapse{
        padding:30px 0;
    }
    .navbar-light .navbar-nav .nav-link{
        padding:10px 20px;
    }
    .navbar-light .navbar-toggler{
        border:none;
    }
    .mobile_nav{
        display:block;
    }
    .flex_mobile_nav{
        display:flex;
    }
    .flex_mobile_nav .mobile_nav .navbar-nav{
        display:flex;
        flex-direction:row;
    }
}






