@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&family=Sanchez&display=swap");

body {
  box-sizing: border-box;
  font-family: "Sanchez", serif;
  background-color: #fff;
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html {
  scroll-behavior: smooth;
}
.text_primary2 {
  color: var(--primary-color);
}

:root {
  --primary-color: #f8c291;
  --secondary-color: #ff1fa9;
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 17px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {   
  padding: 80px 0 80px;
}

.large_heading {
 font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  color: var(--secondary-color);
}
.large_heading2 {
 font-size: clamp(4rem, 3vw, 4rem)!important;
  font-weight: 700;
  color: var(--secondary-color);
}
.heading {
   font-size: clamp(1.6rem, 2.4vw, 3.2rem);
  font-weight: 600;
  color: var(--secondary-color);
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 500;
}

.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 500;
}
.title {
  font-size: 18px;
  /* text-transform: uppercase; */
}
.title2 {
  font-size: 16px;
}
.title3{
  font-size: 20px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}

h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading {
  font-family: "League Spartan", sans-serif;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.bgPrimary {
  background: var(--primary-color);
}
.bgSecondary {
  background: var(--secondary-color);
}
.containerFull {
  max-width: 1580px;
  margin: 0 auto;
}
p {
  font-size: 18px;
}
.text-clr {
  color: var(--secondary-color);
}
.custom-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}


.about-section-img {
  width: 320px; 
 
  object-fit: cover;
  border-radius: 8px; 
}
 .pricing-features {
    margin-left: 80px; 
  }
.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card ul {
  flex-grow: 1; 
}


.nav-link {
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "League Spartan", sans-serif;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 5px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--secondary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary-color);
}

.nav-link.active::after {
  width: 100%;
}
.header-right a {
  font-size: 24px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.header.stricky {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: transparent;
  z-index: 10;
}

.header.stricky-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff !important;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  animation: menu_sticky 0.6s ease-out;
}
.font-footer {
  font-size: 16px;
}

.logo-img {
  width: 160px;
  transition: all 0.3s ease-in-out;
}

.header.stricky-fixed .logo-img {
  width: 130px;
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}

.header-right .bi {
  vertical-align: middle;
}

.header-right .badge {
  font-size: 10px;
  padding: 4px 6px;
  font-weight: bold;
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section h1 {
  text-transform: uppercase;
}
.bg-circle {
  width: 200px;
  height: 200px;

  background-color: #735240;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.bg-section {
  position: relative;
  z-index: 1;
}

.bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg/homee.jpg");
  background-repeat: repeat;
  background-size: 80% auto; 
  opacity: 0.09;
  z-index: 0;
  animation: scrollBG 60s linear infinite;
}
/*.badge3 {*/
/*    background-color: #000;*/
/*    padding: 6px 12px;*/
    /* border-radius: 50px; */
/*    color: var(--primary-color);*/
/*    position: absolute;*/
/*    top: 27px;*/
/*    left: -42px;*/
/*    transform: rotate(-45deg);*/
/*    width: 190px;*/
/*}*/
.badge3 {
  padding: 4px 8px;   
  font-size: 12px;   
  color: #fff;
  position: absolute;
  top: 27px;
  left: -42px;
  transform: rotate(-45deg);
  width: 160px;       
  text-align: center;
  letter-spacing: 0.5px;
}

.quantity-dropdown {
    width: 72px;              
    text-align: center;       
    padding-left: 6px;        
    font-weight: 600;         
    border-radius: 8px;       
     border: 1px solid var(--secondary-color); 
    background-color: #fff;   
    cursor: pointer;
}
.quantity-dropdown:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ff69b4; 
}
.quantity-dropdown option {
    text-align: center;      
}
.shadow-img {
  filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.4));
}



.badge-red { background-color: #c0392b; }   
.badge-blue { background-color: #2980b9; }  
.badge-green { background-color: #27ae60; } 
.badge-yellow { background-color: #d4ac0d; }
.badge-pink { background-color: #ad1457; }  


.custom-dropdown {
  border: 2px solid var(--secondary-color);
  border-radius: 25px;
  padding: 5px 15px;
  font-weight: 500;
  background-color: #fff;
  cursor: pointer;
}
.subscription-pricing .card {
  display: flex;
  flex-direction: column;
}

.subscription-pricing .card a.btn {
  margin-top: auto;
}

/*.badge4 {*/
/*  position: absolute;*/
/*  top: 15px;*/
/*  right: -15px;*/
/*  background: black;*/
/*  color: #fff;*/
/*  padding: 5px 10px;*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  transform: rotate(45deg);*/
/*  box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
/*}*/
.filter-bar {
  display: flex;
  justify-content: space-between; 
  align-items: 
  gap: 30px; 
  max-width: 1000px; 
  margin: 0 auto; 
  margin-bottom:100px;
}



.custom-dropdown:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
  border-color: #e91e63;
}

svg text {
  font-size: 14px;
  fill: var(--secondary-color);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.rotating-text {
  width: 300px;
  height: 300px;
  position: relative;
  z-index: 2;

  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-text p {

  font-size: 1.2rem;
}

 .btn-cookie {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
}
.btn-cookie2 {
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 20px;

  font-weight: bold;
}
.btn-cookie2:hover {
  background-color: var(--primary-color);
  color: white;
}

.hero-buttons .btn-cookie:hover {
  background-color: var(--primary-color);
  color: white;
}



/* .cookie-mascot {
  max-width: 420px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.5s ease;
}

.cookie-mascot.animate {
  opacity: 1;
  transform: translateX(0);
} */
/* @keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.cookie-mascot {
  animation: float 1.5s ease-in-out infinite; 
  max-width: 420px;
} */
@keyframes slideFromTop {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}

.cookie-mascot {
  max-width: 420px;
  opacity: 1;
  animation: slideFromTop 1.2s ease-out forwards, float 3s ease-in-out infinite;
  display: inline-block; /* required for transform animations */
}

/* Floating / bobbing animation */
@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-15px) rotate(-2deg); }
  50%  { transform: translateY(0) rotate(0deg); }
  75%  { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Optional hover effect */
.cookie-mascot:hover {
  transform: scale(1.1) rotate(5deg);
  transition: transform 0.3s ease;
}

.cookie-bg-doodles {
  z-index: 0;
  pointer-events: none;
}

.hero-text,
.hero-buttons {
  position: relative;
  z-index: 10;
}
.bgGrey{
    background-color:#f8f8f8;
}

.cookie-bg-doodles {
  background-image: url("../images/bg/homee.jpg");
  background-repeat: repeat;
  opacity: 0.09;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  animation: scrollBG 60s linear infinite;
  background-size: 80% auto; 
}

@keyframes scrollBG {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 1000px;
  }
}
.hero-image {
  display: inline-block;
  position: relative;
}
.ribbon-img {
     position: absolute;
    top: 0;
    left:0;
   
    width: 90px;
    z-index: 10;
}


.try-badge {
  position: absolute;
  top: 10px;
  left: -40px;
  background-color: #fff;
  color: #000;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  /*animation: float 1.5s ease-in-out infinite;*/

  border: 1px solid #e3aa75;
}

.try-badge::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 245px;
  border-width: 15px;
  border-style: solid;
  border-color: #e3aa75 transparent transparent transparent;
  filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}
.text-clr2 {
  color: var(--primary-color);
}

.special-offer-section {
  position: relative;
}
.ribbon {
  width: 150px;
  height: 30px;
  background: #ff4081;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-weight: 600;
  position: absolute;
  top: 15px;
  right: -35px;
  transform: rotate(45deg);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  font-size: 14px;
}


.pill-background {
  background: url("../images/bg/pill-bg.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 300px;
  padding: 55px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden; 
}

.pill-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(115, 82, 64, 0.6); 
  border-radius: inherit; 
  z-index: -1;
}

.product-item {
  align-items: center;
}

.product-item .ms-3 {
  flex: 1;
}

.special-text {
  font-family: "Cursive", sans-serif;
  color: var(--secondary-color);
  font-size: 20px;
  margin-bottom: 10px;
  
}

/*.basket-img {*/
/*  max-width: 90%;*/
/*  height: auto;*/
/*  margin-top: -40px;*/
/*  position: relative;*/
/*  z-index: 1;*/
/*}*/
.basket-img {
  max-width: 100%;
  height: auto;
 
  position: relative;
  z-index: 1;
}

.price {
  color: var(--secondary-color);
  font-weight: bold;
}

.product-img-wrapper {
  width: 100px;
  height: 100px;
  background-color: #735240;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.animation-drop-2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #735240;
  color: white;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphDrop 2s ease-in-out infinite;

  transition: transform 0.3s ease;
}

@keyframes morphDrop {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 50% 60% 50% 60% / 50% 60% 50% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
.elementor-animation-grow:hover {
  transform: scale(1.1);
}

.product-img2 {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.floating-cookie-img {
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
}

.floating-cookie-img img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
.floating-cookie-img2 {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 2;
}

.floating-cookie-img2 img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
.testimonial-section {
  text-align: center;
  position: relative;
}

.mySwiper2 {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.testimonial-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
  padding: 40px;
}

.image-glow-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.image-glow-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffcba4;
  border-radius: 50%;
  z-index: 0;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.image-glow-wrapper img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.right-content {
  text-align: left;
  /* max-width: 900px; */
}

.right-content .quote {
  font-size: 20px;
  line-height: 1.6;
  color: #16324f;
  position: relative;
}

.author {
  margin-top: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.quote-icon {
  font-size: 90px;
  font-weight: bold;
  color: var(--primary-color);
  position: absolute;
  top: 0;
  right: 0;
}
.arrow-controls {
  position: absolute;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 32px !important;
  height: 32px !important;
  background-color: var(--secondary-color) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px !important;
  color: white !important;
}

.cookie-card {
    border: 1px solid #735240;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
     isolation: isolate; 
     display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.cookie-card:hover {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-icon img {
  width: 150px;
  height: auto;
   mix-blend-mode: multiply; 
  transition: transform 1s ease-in-out; 
  object-fit: cover; 
  
}

.cookie-icon img:hover {
  transform: rotate(360deg) scale(1.1);
}
.footer-logo5 {
  width: 160px;   
  height: auto;
  
}



.cookie-card h5 {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 600;
  color: #333;
}

.cookie-card p {
  font-size: 15px;
  font-weight: 400;
}
.our-menu-section {
  position: relative;
  background: url("../images/bg/menu-back.jpg") no-repeat center center;
  background-size: cover;
  padding: 30px 0 30px;
  z-index: 1;
}

.our-menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.65); 
  z-index: 0;
}
.final-cta{
  background-color: #735240;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;
}
.cta-box {
  max-width: 1000px;  
  width: 100%;      
  border: 2px solid #ccc;
  padding: 40px;
  box-sizing: border-box; 
  flex-shrink: 0;    
}


/* .btn-pink {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 4px;
  padding: 8px 16px;
  border: none;
} */

.btn-pink {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 4px;
    padding: 8px 14px;
    border: none;
    display: inline-flex;       
    align-items: center;
    justify-content: center;
    white-space: nowrap;        
    min-width: max-content;
    font-size: 15px;      
}


.btn-pink:hover {
  background-color: var(--primary-color);
}

.btn-outline-pink {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 10px 25px;
  border-radius: 4px;
}

.btn-outline-pink:hover {
  background-color: var(--secondary-color);
  color: white;
}
.price-amount {
  font-family: "Sanchez", serif;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}
.price-extra{
    font-family: "Sanchez", serif;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  margin-right:50px;
  background: var(--secondary-color); 
  padding: 3px 10px;
  border-radius: 20px;  
    
}
.price-extra2{
    font-family: "Sanchez", serif;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
 
  background: var(--secondary-color); 
  padding: 3px 10px;
  border-radius: 20px; 
  margin-bottom:30px;
    
}
.price-amount small {
  font-size: 1rem;

  margin-right: 1px;
}

.family-card {
  width: 420px;
  height: 320px;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
   transition: all 0.3s ease;
    /*background-color 0.3s ease;*/
}

/*.highlighted-card .family-card {*/
/*  background-color: #735240;*/
/*  border: 1px solid #735240;*/
/*  color: #fff;*/
/*}*/

.highlighted-card:hover {
  
  background-color: #735240; 
}

.highlighted-card:hover h5,
.highlighted-card:hover p,
.highlighted-card:hover i {
  color: #fff !important;
}


.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
  margin-bottom: 40px;
}

.family-card h5 {
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  font-weight: 600;
  color: #000;
}

.family-card .img-fluid {
  width: 50px;
  height: 50px;
}

/*.family-card:hover {*/
/*  background-color: #fff;*/
/*  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);*/
/*  transform: translateY(-5px);*/
/*}*/
.footer-section {
  position: relative;
  background-image: url('../images/bg/new-footer.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 0 60px;
  z-index: 1;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7); 
  z-index: -1;
}




.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: #000;
}
.rotate-img {
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -50px;
  right: 15px;
  color: #fff;
  background-color: var(--secondary-color);
  z-index: 999;
  width: 45px;
  text-align: center;
  height: 45px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 18px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}
/*.cookie-plate-wrapper {*/
/*  width: 140px;*/
/*  height: 140px;*/
/*  background: url("../images/icons/plates.png") no-repeat center center;*/
/*  background-size: cover;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  position: relative;*/
/*  margin-top: -25px;*/
/*  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.6));*/
/*}*/

.cookie-inside {
  width: 140px;
  height: 140px;
  object-fit: contain;
  z-index: 2;
  margin-top: -35px;
  transition: transform 1s ease-in-out;
   mix-blend-mode: multiply; 
    cursor: pointer; 
}

.cookie-inside:hover {
  transform: rotate(360deg) scale(1.05);
}


.under-construction {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.small-img {
  width: 260px;
}

.wave {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.wave svg {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}

.wave-back {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.wave-front {
  position: relative;
  z-index: 1;
}

.btn-cookie2 {
  background: var(--secondary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.btn-cookie2:hover {
  background: var(--primary-color);
}
.text-content {
  position: relative;
  z-index: 2;
}

.highlight-box2 {
  background-color: #735240;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
}

.highlight-box2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.highlight-box2 i {
  font-size: 2.2rem;
  color: white;
  margin-top: -10px;
}
.custom-font {
  font-size: 18px;
}
.custom-badge {
  margin-top: 10px;   
  background-color: var(--secondary-color) !important; 
}


.highlight-box2 .btn {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
}

.highlight-box .btn:hover {
  background-color: #ffe2f0;
}
.freshness-box {
  border: 1px solid #333;
}
.form-switch .form-check-input {
  width: 3.5em;
  height: 1.5em;
  margin-left: -3.5em;
  border-radius: 2em;
  background-size: 1.5em 1.5em;
  background-position: left center;
  transition: background-position 0.15s ease-in-out;
  border: 1px solid #999;
}

.form-switch .form-check-input:checked {
  background-position: right center;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.option {
  border: 2px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.option i {
  font-size: 20px;
  color: var(--secondary-color);
}
.option.active {
  border: 2px solid var(--secondary-color);
  background-color: #e3aa75;
}

.option-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.option-content strong {
  font-size: 18px;
}
.option p {
  font-size: 16px;
}
.amount-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.amount-option {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
}
.amount-option:hover{
   background-color: var(--secondary-color);
  color: #fff;  
   border: 1px solid var(--secondary-color);
}

.amount-option.active {
  background-color: var(--secondary-color);
  color: #fff;
 
}

.link {
  margin-bottom: 30px;
  display: inline-block;
  cursor: pointer;
}

.delivery-details h3 {
  margin-bottom: 10px;
}

.toggle-switch {
  position: relative;
  width: 45px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #4caf50;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.form-control:focus {
  box-shadow: none !important;
  border-color: #333 !important;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #666;

  border-radius: 5px;
  font-size: 16px;
}
.main-image {
  width: 400px;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}

.thumbnails {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: 2px solid transparent;
}

.thumbnails img:hover,
.thumbnails img.active {
  border: 2px solid #ff8fa3;
  transform: scale(1.05);
}
.review-icon img {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
}
.review-badge{
  color: #000;
  font-weight: 700;
  
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 9999;
  transition: right 0.3s ease;
}


.mobile-sidebar.active {
  right: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-form {
  background: #ffff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  width: 450px;
  max-width: 90%;
  min-height: 500px;
  height: auto;
  box-sizing: border-box;
}
.forgot-password {
  font-size: 0.875rem;
}
.registration-form {
    background: #ffff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  width: 550px;
  max-width: 90%;
  min-height: 500px;
  height: auto;
  box-sizing: border-box;
}
.form-check-input:focus {
    outline: none;
    box-shadow: none;
}
.order-card{
    background: #ffff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);

  width: 1300px;
  max-width: 90%;
  min-height: 400px;
  height: auto;
  box-sizing: border-box;


}
.title4{
  font-size: 15px;
} 
.accordion-button{
    font-size:1.3rem;
    font-weight:500;
}

.accordion-button:focus{
    outline:none;
    box-shadow:none;
}

.accordion-button:not(.collapsed){
    color:#000;
   background-color: var(--primary-color);
    box-shadow:none;
}
.bgGrey{
  background-color: #f1f1f1;
}
.custom-dot-list {
  list-style: none; 
  padding-left: 0; 
}

.custom-dot-list li {
  display: flex;
  align-items: center; 
  gap: 10px; 
  font-size: 18px;
  margin-bottom: 10px; 
}

.custom-dot-list li::before {
  content: "•"; 
  color: var(--primary-color); 
  font-size: 3rem; 
  line-height: 1; 
}
.custom-ol {
  counter-reset: li; 
  list-style: none;
  padding-left: 0;
}

.custom-ol li {
  counter-increment: li;
  position: relative;
  margin-bottom: 2.2rem;
  padding-left: 3rem;
  font-size: 17px;
  display: flex;
  align-items: center;
}

.custom-ol li::before {
  content: counter(li); 
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%; 
  background-color: var(--primary-color); 
  color: #fff; 
  font-weight: bold;
  position: absolute;
  left: 0;
}

.mand {
  color: #f00;
}

.input-group-text {
  border-radius: 0;
  border-color: #000;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.product-thumb {
  width: 120px;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #ddd;
 
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shadow-custom{
 
  border: 1px solid #ddd;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08),
              0 2px 4px rgba(0, 0, 0, 0.05);

}

.hover {
  transition: background-color 0.3s; 
}

.hover:hover {
  background-color: var(--primary-color);
  cursor: pointer; 
}
.product-icon img {
  width: 60px;      
  height: 60px;    
  object-fit: contain; 
  display: block;
}
.pop-up-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 0, 123, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 24px;
}


.product-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}
.custom-border{
  border-bottom: 1px solid #ccc;
  padding-top: 20px;
  padding-bottom: 20px;
}
.form-control {
 
    padding: 0.5rem 0.75rem;     
    border: 1px solid #ccc;
}

.option-card {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px 15px 12px 45px;
  cursor: pointer;
  display: block;
  position: relative;
  transition: all 0.25s ease;
  background-color: #fff;
}

.option-card:hover {
  border-color: var(--secondary-color);
 
}

.option-card input[type="radio"] {
  position: absolute;
  top: 28px;
  left: 15px;
  transform: scale(1.2);
  accent-color: var(--secondary-color);
}

.option-card:has(input[type="radio"]:checked) {
  border-color: var(--secondary-color);
Delivery
}

.option-top i {
  transition: color 0.25s ease;
}

 