.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: rgba(255, 255, 255, 0.7); optional overlay */
  z-index: 9999;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  animation: spin 1s linear infinite;
}

/* Spin Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.collapsible-container {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.collapsible-container.open {
  max-height: 1000px; /* adjust as needed */
  opacity: 1;
}
.borderless-datepicker .flatpickr-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.info_text_bold {
  font-weight: bold !important;
  color: black !important;
  font-size: 1em !important;
}

/*************Addon Popup *******************/
.overlay_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  background: #fff;
  width: 80%;
  max-width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.popup-mobile {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.addon_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #ddd;
}

.addon_header h2 {
  margin: 0;
  font-size: 18px;
  color: #333;
  font-weight: bolder;
}

.addon_header button {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}



.addon_header_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-bottom: 1px solid #ddd;
  background-color: #812990;
}

.addon_header_mobile h2 {
  margin: 0;
  font-size: 18px;
  color: #FFF;
  font-weight: bolder;
}

.addon_header_mobile button {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.Addonfilters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 25px;
  border-bottom: 1px solid #eee;
}

.Addonfilters button {
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #f0f0f0;
  cursor: pointer;
  transition: 0.2s;
}

.Addonfilters button:hover,
.Addonfilters .active {
  background: #eb6164;
  color: #fff;
}

.Addongrid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); */
  grid-template-columns: repeat(6, 1fr); /* 6 boxes per row */

  gap: 20px;
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.Addoncard {
  border: 1px solid #eee;
  border-radius: 10px;
  text-align: center;
  padding: 12px;
  transition: 0.3s;
  background: #fff;
  transition: 0.3s;
}

.Addoncard:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.Addoncard img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.Addoncard h4 {
  font-size: 14px;
  color: #333;
  margin: 10px 0 6px;
}
/* 
.Addoncard button {
  background: #eb6164;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
} */

/* .Addoncard button:hover {
  background: #b1a555;
} */

.Addonfooter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 25px;
  border-top: 1px solid #eee;
  background: #fafafa;
  gap: 30px;
}

.Addoncard-price-details {
  display: flex;
  align-items: flex-end;
  color: #333;
  flex-wrap: nowrap; /* keeps all divs in one row */
  gap: 10px; /
}

.Addoncard-price-details h4 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #000;
}

.price-row {
  display: flex;
  justify-content: space-between;
  /* width: 180px; */
  margin-bottom: 4px;
  font-size: 14px;
}

.price-total {
  display: flex;
  justify-content: space-between;
  width: 180px;
  margin-top: 8px;
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 6px;
}
.Addoncard-footer-btn button {
  background: #eb6164;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.Addonfooter button:hover {
  background: #b1a555;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.addon-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.addon-card-footer p {
  color: #333;
  font-weight: bolder;
  font-size: 14px;
  margin: 0;
}

.addon-card-footer button {
  background: #eb6164;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.addon-card-footer button:hover {
  background: #b1a555;
}

/* cuponcode */


/* cuponcode */

/* .modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; z-index: 1000; } .container { background: #fff; width: 420px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); overflow: hidden; padding: 20px; font-family: 'Segoe UI', sans-serif; } */


.title {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.inputRow {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.CouponInput {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
}

.applyBtn {
	background-color: #eb6164;
	color: white;
	border: none;
	padding: 10px 18px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
}

.applyBtn:hover {
	background-color: #d40066;
}

.available h3 {
	font-size: 1rem;
	color: #555;
	margin-bottom: 10px;
}

.couponCard {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 12px;
	margin-bottom: 15px;
	/* background: #fafafa; */
}

.saveText {
	font-weight: 600;
	color: #222;
	margin: 0;
}

.desc {
	font-size: 14px;
	color: #666;
	margin: 4px 0;
}

.success {
	font-size: 13px;
	color: green;
	margin-top: 10px;
}

.codeRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 17px;
	margin-bottom: 17px;
}

.codeBox {
	border: 1px dashed #0077ff;
	padding: 6px 10px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	color: #0044cc;
	background: #f0f7ff;
}

.linkBtn {
	color: #eb6164;
	background: none;
	border: none;
	font-weight: 600;
	cursor: pointer;
}

.linkBtn:hover {
	text-decoration: underline;
}

/* Remove Coupon Code */
.removeCouponCard {
  border: 1px dashed #ccc;
  border-radius: 6px;
  padding: 8px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%
}


.button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
}

.button:hover {
  color: #d40066; /* pink text color on hover */
}


/* All Offers Box  */

.offer-card{ 
    padding: 25px 30px !important;
    text-align: center;

}

/* 30% width custom class */
.card-30 {
  width: 100%;
}

@media (min-width: 640px) { /* sm */
  .card-30 {
    width: 32% !important;
  }
}

@media (min-width: 768px) { /* md */
  .card-30 {
    width: 32% !important;
  }
}

@media (min-width: 1024px) { /* lg */
  .card-30 {
    width: 32% !important;
  }
}


.rating-card-container {
    /* Styles for the white, shadowed box */
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 50%;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    display: flex; /* Kept for internal flex structure */
    flex-direction: column;
}

/* Addon Cart */

.CartAddongrid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); */
  grid-template-columns: repeat(5, 1fr); /* 6 boxes per row */
margin-top: 20px;
  gap: 20px;
  /* padding: 20px; */
  max-height: 60vh;
  /* overflow-y: auto; */
}
.hide-scrollbar {
  overflow: auto;
  scroll-behavior: smooth; /* smooth scroll */
}

/* Hide scrollbar for Chrome, Safari, Edge */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for Firefox */
.hide-scrollbar {
  scrollbar-width: none;
}

/* Hide scrollbar for IE/Edge (legacy) */
.hide-scrollbar {
  -ms-overflow-style: none;
}













/* 1. Remove Top Gap */
.popup-mobile {
  position: fixed;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0 !important; /* Forces removal of the top gap */
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* 2. Footer Section Styling */
.addon-sticky-footer {
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 12px 16px;
  z-index: 1001;
}

.price-summary-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.breakdown-column {
  flex: 1;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  margin-bottom: 1px;
  padding-right: 15px;
}

.price-value {
  font-weight: 600;
  color: #000;
}

.discount-text {
  color: #d32f2f; /* Red for discount */
}

.footer-divider {
  width: 1px;
  height: 45px;
  background-color: #eee;
}

.total-column {
  padding-left: 15px;
  text-align: right;
  min-width: 90px;
}

.total-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.total-amount {
  font-size: 18px;
  font-weight: 800;
  color: #d32f2f;
}

/* 3. Ensure Grid scroll doesn't get hidden behind footer */
.Addongrid {
  padding-bottom: 150px !important;
  overflow-y: auto;
}