/* General Styles */
body {
   font-family: 'Montserrat', sans-serif;
   color: #333;
   overflow-x: hidden;
   font-family: "Hind Siliguri", sans-serif;
}



.mas-primary {
   background-color: var(--main-color);
   font-family: "Hind Siliguri", Sans-serif;
   font-size: 20px;
   font-weight: 600;
   border-style: double;
   border-width: 7px;
   border-radius: 0px;
   color: #fff;
   border-color: #fff;
   padding: 20px 40px;
   cursor: pointer;
   transition: all 0.3s ease-in-out;
   transform: scale(1);
   /* Initial scale */
   display: inline-block;
   /* Needed for transform to work properly */
}

.mas-primary:hover {
   background-color: #c00368;
   /* Darker shade of pink */
   transform: scale(1.05);
   /* Slight zoom effect */
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
   /* Optional subtle shadow */
}

/* For a pulse/zoom-out effect instead */
.mas-primary.alternate-hover:hover {
   animation: pulse 1.5s infinite;
}

@keyframes pulse {
   0% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }

   100% {
      transform: scale(1);
   }
}

.mas-secondary {
   background-color: var(--main-color);
   font-family: "Hind Siliguri", Sans-serif;
   font-size: 20px;
   font-weight: 600;
   border-style: double;
   border-width: 7px;
   border-radius: 0px;
   color: #fff;
   border-color: #fff;
   padding: 20px 40px;
   cursor: pointer;
   display: inline-block;
   transform-origin: center;
   /* Ensures zoom centers properly */
}

.call_section {
   text-align: center;
   padding: 100px 0;
}

.call_section h2 {
   margin: 0 250px;
   padding-bottom: 10px;
   color: var(--main-color);
   font-weight: 600;
}

.mas-primary.whatsapp {
   background: #4169e1;
}

.mas-secondary.messenger {
   background: #059a70;
}

/* Optional: Add these for extra smoothness */
.mas-secondary:hover {
   animation-play-state: paused;
   /* Pauses on hover if desired */
   transform: scale(1.05);
   /* Maintains slight zoom when paused */
}

/* Header Styles */
.header-section {
   background-color: #fdeaf1;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   min-height: 0px;
   /* Adjust as needed */
   /* padding-bottom: 10px; */
   top: -46px;
}

/* Wave background at bottom */
.header-section::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   height: 50px;
   /* Height of the wave */
   background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23e4047c"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23e4047c"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23e4047c"></path></svg>');
   background-size: cover;
   background-repeat: no-repeat;
   z-index: 1;
}

@keyframes wave {
   0% {
      background-position-x: 0;
   }

   100% {
      background-position-x: 1200px;
   }
}

.logo-title-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin-bottom: 15px;
}

.logo-img {
   height: 80px;
   margin-bottom: 20px;
}

.logo-text {
   font-weight: 700;
   letter-spacing: 3px;
   text-transform: uppercase;
   margin: 0;
   font-size: 2.5rem;
   /* Adjust as needed */
}

.tagline {
   font-weight: 300;
   letter-spacing: 1px;
   color: #666;
   font-size: 1.2rem;
   max-width: 600px;
   margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
   .logo-img {
      height: 60px;
      margin-bottom: 15px;
   }

   .logo-text {
      font-size: 1.8rem;
   }

   .tagline {
      font-size: 1rem;
      padding: 0 20px;
   }

}


.video-container {
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-content {
   max-width: 800px;
   margin: 0 auto;
}

/* Slider Section */
.slider-section {
   background-color: #fff;
}

.carousel-item img {
   border-radius: 8px;
}

/* Product Details */
.product-details {
   background-color: #fdeaf1;
}

/* Product List */
.product-list {
   background-color: #fff;
}

.product-table {
   background-color: #fff;
   border-radius: 8px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-table th {
   background-color: #f8f9fa;
   font-weight: 600;
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 1px;
}

.product-thumbnail {
   width: 80px;
   height: 80px;
   object-fit: cover;
   border-radius: 4px;
}

/* Reviews Section */
.reviews-section {
   background-color: #f8f9fa;
}

.review-card {
   background-color: #fff;
   border-radius: 8px;
   max-width: 600px;
   margin: 0 auto;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stars {
   color: #ffc107;
   font-size: 1.5rem;
}

.review-text {
   font-style: italic;
   font-size: 1.1rem;
}

/* Cart Section */
.cart-section {
   background-color: #fff;
}

/* .delivery-details,
.cart-summary {
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   height: 100%;
} */

.cart-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 0;
   border-bottom: 1px solid #eee;
}

.cart-item img {
   width: 60px;
   height: 60px;
   object-fit: cover;
   border-radius: 4px;
   margin-right: 15px;
}

.cart-item-details {
   flex-grow: 1;
}

.cart-item-title {
   font-weight: 600;
   margin-bottom: 5px;
}

.cart-item-variant {
   font-size: 0.8rem;
   color: #666;
}

.cart-item-price {
   font-weight: 600;
   min-width: 80px;
   text-align: right;
}

/* Footer */
.footer-section {
   background-color: #212529;
}

/* Floating Contact Button */
.floating-contact {
   position: fixed;
   bottom: 30px;
   right: 30px;
   z-index: 1000;
}

.contact-btn {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background-color: #212529;
   color: white;
   border: none;
   font-size: 1.5rem;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   align-items: center;
   justify-content: center;
}

.contact-btn:hover {
   background-color: #495057;
   transform: scale(1.1);
}

.contact-options {
   position: absolute;
   bottom: 70px;
   right: 0;
   display: flex;
   flex-direction: column;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
}

.floating-contact:hover .contact-options {
   opacity: 1;
   visibility: visible;
   bottom: 80px;
}

.whatsapp-btn,
.call-btn {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 10px;
   color: white;
   font-size: 1.3rem;
   text-decoration: none;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
   transition: all 0.3s ease;
}

.whatsapp-btn {
   background-color: #25D366;
}

.call-btn {
   background-color: #007bff;
}

.whatsapp-btn:hover,
.call-btn:hover {
   transform: scale(1.1);
   color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
   .logo-container {
      flex-direction: column;
   }

   .logo-img {
      margin-right: 0;
      margin-bottom: 15px;
   }

   .product-table th:nth-child(2),
   .product-table td:nth-child(2) {
      display: none;
   }

   .floating-contact {
      bottom: 20px;
      right: 20px;
   }
}

/* Cart Item Quantity Controls */
.cart-item-quantity {
   display: flex;
   align-items: center;
   min-width: 120px;
}

.quantity-btn {
   width: 30px;
   height: 30px;
   border: 1px solid #ddd;
   background-color: #f8f9fa;
   font-size: 1rem;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.2s;
}

.quantity-btn:hover {
   background-color: #e9ecef;
}

.quantity {
   margin: 0 10px;
   min-width: 20px;
   text-align: center;
}

.remove-item {
   margin-left: 15px;
   opacity: 0.7;
   transition: all 0.2s;
}

.remove-item:hover {
   opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
   .cart-item {
      flex-wrap: wrap;
   }

   .cart-item-quantity {
      order: 3;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
   }

   .cart-item-price {
      order: 2;
      text-align: left !important;
      margin-left: auto;
   }

   .remove-item {
      order: 4;
      margin: 10px auto 0;
   }
}