body {
  margin: 0;
  font-family: 'Poppins', sans-serif !important;
  background-color: #f8f9fa;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px; /* Set placeholder font size to 14px */
    color: #888;; /* Optional: Change the color of the placeholder text */
}

/* Top Navbar */
a.nav-link {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase !important;
  padding: 10px;

}

a.dropdown-item {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase !important;
  padding: 10px;
}

.top-navbar {
  background-color: white;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 50px;
}

.search-bar {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 20px;
}

.search-bar input {
  width: 300px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.search-bar button {
  padding: 8px 12px;
  background-color: rgb(230, 90, 120);
  color: white;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

.top-links a {
  margin-left: 15px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.top-links a i {
  margin-right: 5px;
}

.top-navbar .top-links {
  display: flex;
  gap: 15px;
}

.top-navbar .top-links a {
  text-decoration: none;
  color: #333;
}

/* Main Navbar */
.main-navbar {
  background-color: rgb(230, 90, 120);
}

.main-navbar .container {
  display: flex;
  justify-content: center;
  /* Center horizontally */
}

.main-navbar .menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.main-navbar .menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .top-navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-navbar .search-box {
    width: 100%;
    margin: 10px 0;
  }

  .top-navbar .user-links {
    flex-wrap: wrap;
  }

  .main-navbar .menu {
    flex-direction: column;
    align-items: center;
  }
}

.carousel-item img {
  max-height: 500px !important;
  object-fit: cover !important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px !important;
  height: 24px !important;
  background-size: 100% 100%;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

.column-left {
  border-right: 1px solid #eee;
}

.filter-card {
  border-color: #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-card {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: auto;
  object-fit: contain;
  border-bottom: 1px solid #eee;
}

.product-grid .card-title {
  font-size: 13px;
  font-weight: 600;
}

input[type="range"] {
  width: 100%;
}

#minPriceValue,
#maxPriceValue {
  font-weight: bold;
  color: #d9534f;
}

.product-grid .card {
  border: 1px solid #ddd;
  transition: transform 0.2s;
}

.product-grid .card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-footer .btn {
  font-size: 14px;
  padding: 6px 12px;
}

/* Style for all browsers (with fallbacks) */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #ddd;
  border-radius: 3px;
  outline: none;
}

/* Track for WebKit browsers (Chrome, Safari, Edge) */
input[type=range]::-webkit-slider-runnable-track {
  height: 6px;
  background: #ddd;
  border-radius: 3px;
}

/* Thumb for WebKit */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background: rgba(230, 90, 120, 1);
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
  /* Aligns the thumb vertically */
  border: none;
}

/* Track for Firefox */
input[type=range]::-moz-range-track {
  height: 10px;
  background: #ddd;
  border-radius: 3px;
}

/* Thumb for Firefox */
input[type=range]::-moz-range-thumb {
  height: 18px;
  width: 18px;
  background: rgba(230, 90, 120, 1);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Track for IE */
input[type=range]::-ms-track {
  height: 10px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #ddd;
  border-radius: 3px;
}

input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 3px;
}

input[type=range]::-ms-thumb {
  height: 18px;
  width: 18px;
  background: rgba(230, 90, 120, 1);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.range-slider1 {
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.range-slider1:hover {
  opacity: 1;
}

a.btn.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn-cart {
  background: rgba(230, 90, 120, 1) !important;
  border-width: 2px !important;
  padding: 13px !important;
  padding-right: 18px !important;
  padding-left: 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 1) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

.btn-order-now {
  background: rgba(80, 173, 85, 1) !important;
  border-width: 2px !important;
  padding: 13px !important;
  padding-right: 18px !important;
  padding-left: 18px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 1) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

select#weightSelector {
  border-color: rgba(230, 90, 120, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 60px !important;
}

select#flavorSelector {
  border-color: rgba(230, 90, 120, 1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 60px !important;
}

.form-select:focus {
  border-color: rgba(230, 90, 120, 1);
  outline: none;
  box-shadow: 0 4px 12px rgba(230, 90, 120, 1) !important;
  transform: scale(1.02);
}

.form-select:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  padding-right: 2.5rem;
  /* Space for the icon */
}

.input-with-icon i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

i.bi.bi-geo-alt-fill {
  color: #F65F73;
}

.pincodeview {
  border-color: rgba(230, 90, 120, 1) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 60px !important;
}

.pincodeview:focus {
  border-color: rgba(230, 90, 120, 1);
  outline: none;
  box-shadow: 0 4px 12px rgb(230 90 120 / 28%) !important;
  transform: scale(1.02);
}

.pincodeview:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.radio-card {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-bottom: 10px;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card.selected {
  border-color: #198754;
  background-color: #e9fbe9;
}

.slideover {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  /* background: #fff; */
  border-radius: 12px;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); */
  width: 90%;
  max-width: 500px;
  padding: 1.5rem;
  z-index: 1050;
  display: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slideover.active {
  display: block;
  transform: translate(-50%, -50%) scale(1);
}

.slideover-content {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
  }

  to {
    transform: scale(1);
  }
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-box {
  display: block;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}

.radio-box input[type="radio"] {
  margin-right: 8px;
  margin-top: 8px;
}

.radio-box input[type="radio"]:checked+span {
  font-weight: bold;
  color: #fff;
}

.btn-link {
  color: #000;
  font-weight: 500;
}

.btn-link:hover {
  text-decoration: none;
}

.shipping-select {
  float: right;
  margin: 0 5px 0 0;
  border-radius: 0 3px 3px 0;
  width: 20%;
  color: #fff;
  background-color: #F65F73;
  display: inline-block;
  text-align: center;
  padding: 4px;
}


.delivery-summary-wrapper {
  position: relative;
  border: 1px solid #F65F73;
  border-radius: 0.375rem;
  padding: 5px 40px 5px 14px;
  background-color: #fff;
  cursor: pointer;
  min-height: 60px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#deliverySummaryDisplay {
  font-size: 14px;
  width: 100%;
  color: #888;
}

/* .delivery-summary-placeholder {
  
} */

.delivery-date-text {
  font-weight: 600;
  font-size: 16px;
  color: #222;
}

.delivery-detail-text {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 2px;
}

.clear-btn {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  display: none;
  /* shown only when summary is active */
}

.delivery-summary-wrapper.summary-filled .clear-btn {
  display: block;
}

.hidden-flatpickr-input {
  position: absolute;
  left: -9999px;
}

.flatpickr-input[readonly] {
  border: white;
}

.flatpickr-input[readonly].active {
  border: white;
}

#clearDeliverySummary {
  display: none;
  /* Hidden by default */
  background: transparent;
  border: none;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  margin-left: 10px;
}

.hidden-flatpickr-input {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  height: 0;
  width: 0;
}

#clearDeliverySummary {
  display: none;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  margin-left: 8px;
  color: #888;
}

.disabled-summary {
  pointer-events: none;
  opacity: 0.9;
}

.page-title-band {
  padding: 12px 15px;
  background: #FEEFF1;
  border-top: 1px solid #FCCDD4;
  border-bottom: 1px solid #FCCDD4;
  margin-bottom: 25px;
}

a {

  text-decoration: none !important;
}

.contact-info {
  background: rgba(44, 54, 64, 1);
  color: white;
  padding: 20px;
}


.map-container {
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 30px;
}


.contact-form {
  background-color: white;
  border-radius: 5px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.store-info {
  margin-top: 20px;
  align-items: stretch;
}

.submit-btn {
  background-color: #e83e8c;
  color: white;
}

@media (max-width: 768px) {
  .map-container {
    height: 240px;
  }

  .store-info img {
    height: 200px;
  }
}

#container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Banner */
#banner_hero {
  position: relative;
  text-align: center;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
  margin-top: 4px;

}

#banner_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

#banner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 8px #000;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 15px;
  max-width: 90%;
}

#banner_title {
  font-size: 3.5rem;
  margin: 0;
}

#banner_subtitle {
  font-size: 1.7rem;
  margin: 5px 0 0 0;
}

/* Reusable Section */
.section_box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
  height: 400px;
  align-items: center;
}

.section_box.reverse {
  flex-direction: row-reverse;
}

.section_text {
  flex: 1 1 400px;
}

.section_text h3 {
  font-size: 2rem;
  color: #d35400;
  margin-bottom: 15px;
}

.section_text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.section_image {
  flex: 1 1 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_image img {
  width: 90%;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  height: 100%;
  object-fit: cover;
}

/* Who We Are Grid */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  gap: 10px;
}

.grid-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  position: relative;
}

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

.top-left {
  grid-area: 1 / 1 / 2 / 2;
}

.bottom-right {
  grid-area: 2 / 2 / 3 / 3;
}

#view_news_btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #c0392b;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

#view_news_btn:hover {
  background-color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
  #banner_title {
    font-size: 2.5rem;
  }

  #banner_subtitle {
    font-size: 1.2rem;
  }

  .section_box {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .image-grid {
    max-width: 100%;
  }
}

/* code for the slider  */
h2.section-title {
  text-align: center;
  margin: 40px 0 10px;
  font-size: 32px;
  font-weight: bold;
  color: #1d1d1f;
}

.section-underline {
  width: 60px;
  height: 3px;
  background-color: #f8cdd1;
  margin: 10px auto 30px;
  border-radius: 2px;
}

.swiper-slide {
  background: transparent;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 220px;
  position: relative;
  text-align: center;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.swiper {
  width: 90%;
  height: 100%;
  color: #fff;
  margin-right: 20px;
  margin-left: 20px;
  justify-content: center;
  margin: auto;
  margin-top: 10px;
  padding-bottom: 50px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 30px;
}
.slide-caption {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 0px;
  margin-top: 8px;
  text-align: center;
}

.bold_color {
  border: none;
  /* Remove default border */
  height: 5px;
  /* Set thickness */
  background-color: black;
  /* Set color to black */
  margin: 20px 0;
  /* Optional: Add some margin for spacing */
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

.swiper-button-next,
.swiper-button-prev {
  background-color: #1a1a1a;
  color: white;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 45%;
  z-index: 10;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Optional hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #000;
}

/* Make the arrows thinner and simpler */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: bold;
  color: white;
}

/* Optional: Push them slightly outside */
.swiper-button-next {
  right: -20px;
}

.swiper-button-prev {
  left: -20px;
}

@media (max-width: 768px) {
  .swiper-slide img {
    height: 160px;
  }

  .slide-caption {
    font-size: 13px;
  }
}

/* code ends her  */
.grid-item {
  padding: 25px;
}

/* Default hide both for safety */
.slider-a-container,
.slider-b-container {
  display: none;
}

/* Show slider A (mobile + tablet) */
@media (max-width: 991px) {
  .slider-a-container {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 10px 0;
  }

  .slider-b-container {
    display: none !important;
  }
}

/* Show slider B (desktop grid) */
@media (min-width: 992px) {
  .slider-a-container {
    display: none !important;
  }

  .slider-b-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding: 20px 0;
  }
}

.slider-a-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-a-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-a-item {
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 0 8px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .slider-a-item {
    flex: 0 0 33.3333%;
  }
}

.slider-a-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 20px;
  padding: 8px 12px;
  z-index: 2;
  cursor: pointer;
}

.prev-btn-a {
  left: 0;
}

.next-btn-a {
  right: 0;
}

.slider-b-item {
  padding: 0 8px;
  width: 100%;
  height: 100%;
}

/* .flavour-card {
  display: block;
  width: 100%;
  transition: all 0.075s ease-out;
} */

.flavour-card .flavor-img {
  width: 100%;
  height: 0;
  padding-top: calc(280 / 240 * 100%);
  position: relative;
  overflow: hidden;
}

.flavour-card .flavor-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flavour-info {
  flex: 1 0 auto;
  /* width: 100%; */
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
  position: relative;
}

.flavour-info .name {
  display: flex;
  width: 200px;
  font-weight: 800;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -100%);
  position: absolute;
  background: rgba(240, 242, 245, 1);
  padding: 5px;
  font-family: 'Montserrat';
  font-size: 16px;
  /* padding-right: 10px;
  padding-left: 10px; */
  margin: 0px;
  margin-top: -10px;
  border-radius: 4px;
}

#search-results {
  display: none;
  position: absolute;
  top: 100%;
  /* just below the input box */
  left: 18px;
  width: 90%;
  /* exactly matches the input width */
  z-index: 1000;
  background: #fff;
  max-height: 300px;
  overflow-y: auto;
  padding: 4px 0;
}

#search-results .search-result-item {
  display: flex;
  align-items: center;
  width: 20%;
  padding: 6px 10px;
  justify-content: space-between;
}


.search-result-img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-result-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* take full remaining space */
}

.search-result-name {
  font-weight: 600;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.search-result-price {
  font-size: 12px;
  color: #777;
  flex-shrink: 0;
  margin-left: auto;
}

.cart-drawer {
  width: 300px;
  height: 300px;
  max-width: 100%;
  border-left: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  top: 113px !important;
}

.cart-drawer .offcanvas-header {
  background-color: #f8f9fa;
  padding: 1rem;
}

.cart-drawer .offcanvas-body {
  padding: 1rem;
}

.cart-summary {
  font-size: 0.95rem;
}

.cart-summary i {
  font-size: 1.2rem;
}

.sorting-filter {
  padding: 6px 10px 6px 20px !important;
  border-radius: 50px !important;
  border: 1px solid #22303D !important;
  max-width: 200px !important;
  min-width: 180px !important;
  display: flex !important;
  align-items: center !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: #22303D !important;
  justify-content: space-between !important;
  position: relative !important;
  cursor: pointer;
}

.sort-by {
  border: none !important;
  font-weight: 700 !important;
  background-color: transparent !important;
}

.lc-button {
  background: rgb(230, 90, 120) !important;
  color: white !important;
  border-color: rgb(230, 90, 120) !important;
  font-weight: 600 !important;
}

#view-more {
  z-index: 10;
  position: relative;
  cursor: pointer;
  color: #015EF7 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

#view-less {
  z-index: 10;
  position: relative;
  cursor: pointer;
  color: #015EF7 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.hover-zoom-col:hover .img-zoom {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}

.home-header-ul {
  display: flex;
  margin-bottom: 0;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .home-header-ul {
    padding-left: 0;
    display: flow-root;
    margin-bottom: 0;
    justify-content: center;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: wrap;
    white-space: nowrap;
    padding-right: 15px;
  }

  .home-header-ul ul::-webkit-scrollbar {
    display: none;
  }

  .home-header-ul {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

}

.home-header-li {
  list-style: none;
  text-align: center;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .home-header-li {
    list-style: none;
    margin-right: 0;
    width: 25.25%;
    text-align: center;
    margin-left: 15px;
    display: inline-grid;
  }
}

.img-zoom {
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  -ms-transition: -ms-transform 1s;
  transition: transform 1s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  max-width: 100%;
  max-height: 100%;
}

img.img-responsive {
  margin-left: auto;
  margin-right: auto;
}

.img-responsive {
  margin-bottom: 7px;
  width: 130px;
  border-radius: 50%;
}

.home-header-p {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .home-header-p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }
}

.occasion-bg {
  background: #f5dddd;
}

.tracking-container {
  padding: 15px;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  /* Added for positioning the line */
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ccc;
  z-index: 0;
}

.step:first-child:before {
  left: 50%;
  width: 50%;
  /* Adjusted for first step */
}

.step:last-child:before {
  width: 50%;
  /* Adjusted for last step */
}

.circle {
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.completed .circle {
  background: #198754;
  /* Color for completed circle */
}

.completed:before {
  background: #198754;
  /* Color for completed line */
}

.icons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #555;
}

.icons div {
  text-align: center;
  flex: 1;
}

/* Hide swiper container on desktop */
.flavour-swiper-container {
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  /* Show swiper container on mobile */
  .flavour-swiper-container {
    display: block;
  }

  .h2,
  h2 {
    font-size: 20px !important;
  }
  #search-box {
    width: 240px !important;
  }
}
#search-box {
  width: 300px;
  height: auto;
}
.flavour-item {
  background: white;
  border: 1px solid #ddd;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}

.flavour-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.tag {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #0d0d0d;
  color: white;
  border-radius: 25px;
  font-size: 10px;
}

.product-card {
  margin-bottom: 0px;
  /* Space between product cards */
}

.add-to-cart {
  width: 100%;
  /* Full width button */
}

.card-title {
  font-weight: bold;
}

#search-results div {
  padding: 10px;
  text-align: center;
  width: 200px;
}

#search-results img {
  width: 100%;
  height: auto;
}

#cross {
  font-size: 24px;
  /* Adjust the size */
  color: black;
  /* Change the color of the cross */
  cursor: pointer;
  /* Change cursor to pointer on hover */
  display: inline-block;
  /* Ensure it behaves well in layout */
  padding: 10px;
  /* Add some padding around the icon */
  transition: color 0.3s ease;
  /* Smooth transition for color change */
}

#cross:hover {
  color: red;
  /* Change color on hover */
}

.slim-carousel {
  position: relative;
  max-width: 1300px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  color: white;
}

.slide-content h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
}

.btn-slide {
  background-color: #ff4081;
  padding: 7px 16px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.btn-slide:hover {
  background-color: #e03673;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(175, 168, 168, 0.4);
  border: none;
  color: white;
  font-size: 0.5rem;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}
.bg-dark {
  background-color: #343a408a !important;
}
.footer-bg{
  background: #0B1015 !important;
}
.footer-text{
  color: #f8f9fa !important;
}
#mainImage {
    transition: opacity 0.3s ease-in-out;
  }
  #mainImage.fade {
    opacity: 0.3;
  }
  #mainImage {
    transition: transform 0.3s ease-in-out;
    cursor: zoom-in;
  }

  #mainImage:hover {
    transform: scale(1.2);
  }

  .main-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
  }
  .date-input-container {
    position: relative;
    display: inline-block; /* or block, depending on your layout */
}
.hidden-flatpickr-input {
    padding-right: 30px; /* Adjust padding to make space for the icon */
}
.date-icon {
    position: absolute;
    right: 10px; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevent clicking on the icon */
}
.slider-bg {
  background-color: #343a407a;
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.flavour-grid-kids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .flavour-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .flavour-grid-kids {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Hide only on mobile */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
  .flavour-card {
    margin-bottom: 0px !important;
  }
  .flavour-grid {
    gap: 0rem !important;
  }
}

.flavour-card {
  margin-bottom: 30px;
}

.home-secondary-btn {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid #F65F73;
  color: #F65F73;
  display: inline-block;
}
.home-secondary-btn:hover{
  background: #F65F73;
  color: #ffffff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .best-seller-pd-col {
    border-radius: 16px;
    padding: 8px 8px 10px 8px !important;
  }
.gift-batches{
  padding: 0.25rem !important;
}
  .home-secondary-btn {
    padding: 6px 12px !important;
    font-size: 12px;
    font-weight: 400;
  }

  .img-responsive-relationship {
    width: 100px !important;
    height: 100px !important;
  }

  .card-footer .btn {
    font-size: 12px;
    padding: 4px 8px;
  }
  .product-price{
  font-size: 0.65rem !important;
}
.product-discount-price{
  font-size: 0.65rem !important;
}
.product-card h5 {
  font-size: 12px !important;
 height: 25px;
  font-weight: 500 !important;
}
}
.img-responsive-relationship {
  margin-bottom: 7px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.best-seller-pd-col:hover .home-secondary-btn {
  background: #F65F73;
  color: #ffffff;
  transition: 0.3s;
}
.best-seller-pd-col {
  border-radius: 16px;
  padding: 10px 10px 20px 10px;
}
.card-title {
  margin-top: .75rem !important;
}
.owl-carousel .item {
  width: 100%;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  margin: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.owl-carousel .product-card img {
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.price {
  margin-bottom: 10px;
  font-size: 1rem;
}

.product-card button {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.owl-carousel {
    display: block !important;
}
/* Position arrows outside the carousel */
.owl-carousel .owl-nav {
  position: absolute;
  top: 31%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Prevent blocking inner items */
  z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    pointer-events: all;
    background: black !important;
    border: 1px solid #ccc !important;
    padding: 5px 12px !important;
    border-radius: 50%;
    font-size: 1.2rem !important;
    color: white !important;
    transition: background 0.3s;
    width: 30px;
    height: 30px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: #0000;
}
/* Style dropdown to appear as mega-menu */
.mega-menu {
    left: 0;
    right: 0;
    top: 100%;
    border-top: 2px solid #f1f1f1;
}

.mega-menu .dropdown-header {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
}

.mega-menu .dropdown-item {
    padding: 5px 0px;
    font-size: 14px;
    font-weight: normal;
    text-transform: capitalize !important;
    text-align: center;
}

.navbar-nav > .dropdown:hover > .mega-menu {
    display: block;
}

.dropdown-item:active{
  color:rgb(230, 90, 120) !important;
  background-color: none !important;
}
.dropdown-item:hover{
  color:rgb(230, 90, 120) !important;
}

@media (max-width: 768px) {
  .mega-menu {
    position: static !important;
    width: 100% !important;
  }
}
.professional-text {
  text-transform: capitalize;
  color: rgb(230, 90, 120) !important;
}
.category-details-product{
  padding: 0.65rem !important;
}
.item.product-card:hover {
  box-shadow: 0px 15px 30px 0px rgba(34, 48, 61, 0.10);
  border-radius: 10px;
  background: #FFF;
}
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 0px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
    transition: transform 0.3s ease;
}

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

.product-card:hover img {
    transform: scale(1.05);
}
.eggless-icon {
  display: flex;
  align-items: center;
  font-size: 14px;
}

@media (max-width: 576px) {
  .eggless-icon span {
    font-size: 12px;
  }
  .eggless-icon svg {
    width: 22px;
    height: 22px;
  }
}
/* Sticky Menu */
.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1050; /* Ensure it stays above other elements */
    width: 100%;
}
/* Sticky header only on large screens (≥992px) */
@media (min-width: 992px) {
  .sticky-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  /* Add space below header to avoid content hiding */
  main {
    padding-top: 120px;
    /* Adjust based on combined header height */
  }
  .slideover {
  top: 60% !important;
}
}

.discount-badge {
  display: inline-block;
  padding: 3px 3px;
  font-weight: bold;
  color: #008a00;
  background-image: linear-gradient(to right, rgba(0, 138, 0, 0), rgba(0, 138, 0, 0.28));
  clip-path: polygon(0 100%, 90% 100%, 100% 0, 0% 0);
  font-size: 0.5rem;
}
.product-price{
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .category-details-product {
    padding: 10px !important;
  }

  .product-card {
    margin-bottom: -10px !important;
  }

  .col-6 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .product-grid .card-title {
    font-size: 11px !important;
    font-weight: 500 !important;
  }
  .price-line {
    gap: 0px !important;
}
.shipping-select{
  font-size: 10px !important;
}
.radio-box{
  font-size: 12px !important;
}
}
.price-line {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 0;
    white-space: nowrap; /* 🔑 Prevent line break */
}
@media (max-width: 380px) {
  .card img {
    max-height: 140px !important;
  }
  .home-secondary-btn {
    font-size: 12px;
    padding: 4px 8px;
  }
  .card-title {
    font-size: 0.7rem !important;
    font-weight: 500 !important;
  }
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 10px 0;
    justify-content: flex-end;
}

.page-item {
    margin: 0 2px;
}

.page-link {
    display: block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    color: #007bff;
    text-decoration: none;
    border-radius: 6px;
}

.page-item.active .page-link {
    background-color: rgb(230, 90, 120) !important;
    color: #fff !important;
    border-color: rgb(230, 90, 120) !important;
}

.page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}
#timeSlotsForm {
    max-height: 300px; /* Adjust as per your design */
    overflow-y: auto;
    padding-right: 5px; /* Avoid scrollbar overlaying text */
}
.slideover-content {
    max-height: 80vh; /* Use viewport height to adapt on smaller screens */
    overflow-y: auto;
}
#timeSlotsForm {
    -webkit-overflow-scrolling: touch;
}
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    background: #4caf50;
    color: white;
    border-radius: 5px;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.notification.hide {
    opacity: 0;
    transform: translateY(-20px);
    display: none;
}
.photo-upload-section {
    margin: 20px 0;
}

.photo-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.photo-upload-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(230, 90, 120, 1);
    border-radius: 8px;
    height: 55px;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
}

.photo-upload-box:hover {
    border-color: rgba(230, 90, 120, 1);
}

.photo-upload-box .upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #9e9e9e;
    font-size: 14px;
}

.photo-upload-box .upload-placeholder i {
    font-size: 20px;
    margin-bottom: 5px;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}
