
.filter-tag-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tag {
  display: flex;
  align-items: center;
  border: 1px solid  rgba(253, 79, 1, 1);
  background-color:  rgba(255, 237, 229, 1);
  border-radius: 10px;
  padding: 5px 10px;
  font-size: 0.9em;
}

.filter-tag span {
  margin-right: 8px;
}

.remove-tag {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  padding: 0;
  width: 20px;
  height: 20px;
}

.remove-tag i {
  font-size: 0.8em;
}

/* Color variations for different tag types */
/* .price {
  background-color: #e6f2ff;
  color: #0366d6;
}
 */
.diet {
  background-color: #e6f3ec;
  color: #28a745;
}

.new {
  background-color: #fff0e6;
  color: #fd7e14;
}

.sale {
  background-color: #fff3cd;
  color: #ffc107;
}

.additional-tags {
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.9em;
  color: #666;
}
.my-cart {
  position: fixed;
  top: 0;
  right: -400px;
  /* Initially hidden */
  width: 350px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  padding: 20px;
  z-index: 1000000000;
  max-height: 100vh !important;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 150px !important;
  font-family: "Gilroy" !important;
}

.my-cart h1 {
  margin: 0px;
  width: 100%;
  background-color: #FD5001;
  font-size: 24px;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.additional-meals {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: scroll;
  padding-bottom: 10px;
}

.my-cart input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.mealcartshow {
  right: 0;
  /* Show cart */
}

.mealcarthide {
  right: -400px;
  /* Hide cart */
}

.my-cart {
  width: 400px;
  margin: auto;
  font-family: "Gilroy" !important;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}



.free-delivery {
  text-align: center;
  margin-bottom: 20px;
}

.progress-bar {
  height: 6px;
  background-color: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-top: 5px;
}

.filled-bar {
  width: 100%;
  height: 100%;
  background-color: #FD5001;
}

.meal-items {
  margin-bottom: 20px;
}

.meal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid #e0e0e0;
}

.meal-description {
  display: flex;
  justify-content: flex-start;
  width: 250px;
  gap: 5px;
}

.quantity-control {
  display: flex;
  align-items: center;

  border: 1px solid #FD5001;
  border-radius: 10px;

}

.quantity-control button {
  border: none;
  background-color: #ffede5 !important;
  padding: 5px;
  cursor: pointer;
  color: #FD5001;
  padding: 5px 10px;


}

.quantity-control button:first-child {
  border: none;
  background-color: #ffede5 !important;
  padding: 5px 12px;
  cursor: pointer;
  color: #FD5001;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.quantity-control button:last-child {
  border: none;
  background-color: #ffede5 !important;
  padding: 5px 12px;
  cursor: pointer;
  color: #FD5001;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.points-section {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  font-weight: 600;
}

.additional-meal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  min-width: 100% !important;
  border-right: 1px solid #e0e0e0;
  padding-right: 5px;
}

.subtotal {
  margin-top: 20px;
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  position: fixed;
  bottom: 0px;
  z-index: 1000000000;
  background-color: white;
  width: 100%;
}

.total-to-pay {
  display: flex;
  justify-content: space-between;
}

.checkout-button {
  background-color: #FD5001;
  color: #fff;
  padding: 10px;
  border: none;
  width: 350px;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}







.meal-info {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
}

.meal-details {
  flex-grow: 1;
}

.meal-description {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.meal-price {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #f60;
}

.price {
  margin-right: 5px;
}

.currency {
  font-size: 16px;
}

.meal-image-container {
  position: relative;
}

.meal-image {
  width: 60px;
  height: 60px;
  border-radius: 5px;
}

.close-button {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #f60;
  border: none;
  border-radius: 50%;
  color: #fff;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 12px;
}

.addmealscontainer {
  display: inline-block;

  width: 100%;
  margin-bottom: 20px;
}

.addmealsleft {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  align-items: stretch;
  /* Ensures all items match the tallest height */

}

.product-card {
  width: 300px;
  border-radius: 15px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  font-family: "Gilroy" !important;
  background-color: white;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid  rgba(182, 186, 195, 1)
}

.premium-card {
  border: 2px solid #BBA271;

  /* border-image-source: linear-gradient(0deg, var(#BBA271, #B6BAC3), var(#846C49, #B6BAC3)), */
  /* linear-gradient(90deg, #BBA271 0%, #846C49 100%); */
  
}
.premium-badge1{
  background: linear-gradient(90deg, #BBA271 0%, #846C49 100%) !important; /* Apply gradient here */

}
.seller-badge1{
  background-color:  rgba(1, 181, 40, 1) !important;

}
.sale-badge1{
  background-color:  rgba(232, 2, 2, 1) !important

}
.new-badge1{
  background-color:  rgba(253, 79, 1, 1) !important;

}
.comfort-badge1{
  background-color: rgb(0, 83, 128) !important;
}
.favoriet-badge1{
  background-color: #555 !important;
}
/* SummaryBox.css */
.summary-box {
  min-width: 300px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  font-family: "Gilroy" !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 2.5;
  float: right;

}

.title {
  color: #006400;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.availability {
  font-size: 14px;
  margin-bottom: 20px;
}

.highlight {
  color: #ff4500;
  font-weight: bold;
}

.items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.item {
  border: 1px dashed #ddd;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  color: #ff4500;
}

.subtotal2,
.to-pay {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-bottom: 10px;
}

.subamount {
  color: #ff4500;
  font-weight: bold;
}

.frame-container {
  display: flex;
  gap: 10px;
}

/* Base styling for each tag */
.tag {
  padding: 10px 20px;
  border-radius: 20px;
  border: 2px solid #FF6A00;
  background-color: white;
  color: black;
  font-weight: bold;
  text-align: center;
}

/* Styling for the active tag */
.tag.active {
  background-color: #FF6A00;
  color: white;
}

.frame29 {
  width: 50%;
  padding: 20px 30px;
}

.frame29 {
  margin: 0 auto;
  font-family: "Gilroy" !important;
}

.no-sub-points {
  font-family: "Gilroy" !important;
  font-weight: 700 !important;
}

.subpointimg {
  width: 25px !important;
  height: 25px !important;
}

.custom-checkbox-circle input[type="checkbox"] {
  display: none;
}

/* Create custom circular checkbox */
.custom-checkbox-circle span {
  width: 24px;
  height: 24px;
  border: 2px solid #333;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

/* Checkmark */
.custom-checkbox-circle span::after {
  content: "✔";
  font-size: 18px;
  color: white;
  display: none;
}

/* When checkbox is checked */
.custom-checkbox-circle input[type="checkbox"]:checked+span {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.custom-checkbox-circle input[type="checkbox"]:checked+span::after {
  display: block;

}

h2 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.subplan {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}

.weekly-subplan {
  background-color: #fff7f0;
  border: 1px solid #ddd;

}

.subplan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.save-tag {
  background-color: #28a745;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.subplan-option {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #fff !important;
}

.subplan-active {
  border: 2px solid #FD5001;
}

.option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.best-seller-tag {
  background-color: #FD5001;
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.current-tag {
  background-color: #FFDADF;
  color: red;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

.price {
  font-weight: bold;
}

.option-details {
  font-size: 14px;
  color: #555;
}

.subplan-notes {
  list-style: none;
  padding: 0;
  font-size: 12px;
  color: #777;
}

.subplan-notes li {
  margin-bottom: 5px;
}

.terms {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.terms a {
  color: #ff6f61;
  text-decoration: none;
}

.subscribe-button {
  width: 100%;
  background-color: #FD5001;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.subnewmain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.subnewimg {
  width: 50%;
}

.subnewimg1 {
  display: none;
}

.subproductimagegroup {
  background-color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 280px;
  border-radius: 3px;
}
.badges-con{
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  gap: 5px;
  
}
.badge1 {
  background-color: #FD5001;
  color: white;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 12px;
 font-weight: 500;
  margin-top: 0px;
  font-family: "Gilroy" !important;

}

.new-cat-input{
  max-width: 436px !important;
  border-bottom: none !important;
  border: 1px solid  #ccc !important;
  /* height: 48px; */
  border-radius: 5px;
  padding: 7px;
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
  font-family: "Gilroy" !important

}

.ftb_filter_form input {
  font-size: 16px !important;
}
.ftb_filter_form button{
  bottom: 8px !important;
  right: 10px !important;
  color: gray !important;
}
.wcq-quantity-button{
  background-color: #FD5001 !important;
}
.product-image {
  width: 70%;

}

.protein-info {
  text-align: center;
  margin: 10px 0;
  background-color: white;
  width: 50px;
  text-wrap: wrap;
  border-top: 1px solid #FD5001;
  height: 50px;
  border-radius: 50px;
  bottom: -25px;
  padding: 5px;
  right: 40%;

}

.protein-subamount {
  font-size: 16px;
  font-family: Oswald;
  color: #FD5001;
  font-weight: bold;
}

.protein-label {
  font-size: 10px;
  color: #888;
}

.meal-type {
  background-color: #d4f1c5;
  color: rgba(0, 154, 33, 1);
  padding: 5px 10px;
  border-radius: 14px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 15px;
  font-weight: 700;
  display: inline-block;
  max-width: fit-content;
}

.product-title {
  font-size: 20px;
  font-weight: 700;
  margin: 10px 0;
  line-height: 130%;
  font-family: "Gilroy" !important;
  margin-top: 1rem !important;
}

.product-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
}

.price {
  color: #FD5001;
  font-size: 24px;
}

.currency {
  font-size: 18px;
}

.add-button {
  background-color: #FD5001;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;

}

.calories {
  font-size: 14px;
}

.weight {
  font-size: 14px;
}
.love_wishlist{

  position: absolute;
  top: 5px;
  right: 10px;
  z-index: 1;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1370px) {
  .addmealsleft {
      width: 100%;
      gap: 15px;
  }

  .summary-box {
      width: 27%;
      min-width: 280px;
      height: fit-content;
  }

  .product-card {
      width: 30%;
      min-width: 240px;
  }

  .addmealscontainer {
      display: flex;
      flex-wrap: nowrap;

  }
}

@media (max-width: 800px) {
  .summary-box {
      display: none;
  }

  .subnewimg1 {
      display: block;
  }

  .subnewimg {
      display: none;
  }

  .subnewmain {
      flex-direction: column;

  }

  .frame29 {
      width: 100%;
  }

  .subnewimg1 {
      width: 100%;
  }

  .addmealsleft {
      width: 100%;
      justify-content: center;
      align-items: stretch;
  }
  .love_wishlist{
      height: 20px;
      width: 20px;
      position: absolute;
      top: 8px;
      right: 5px;
      z-index: 1;
  }
}

@media (max-width: 530px) {
  .meal-type{
      font-size: 10px;
      padding: 3px 7px;
  }
  .filter-tag-container{
      display: none !important;
  }
  .protein-info {
      right: 35%;
  }
  .protein-subamount{
      font-size: 12px;
  }
  .addmealsleft{
      gap: 8px;
  }
  .add-button {
      padding: 7px 14px;
  }

  .calories {
      font-size: 12px;
  }

  .weight {
      font-size: 12px;
  }

  .price {
      font-size: 14px;
  }

  .product-card {
      width: 48%;
      min-width: unset;
      padding: 5px;

  }
  .subproductimagegroup{
      height: 220px;
  }
  .badge1{
      font-size: 8px !important;
      padding: 4px 8px !important;
  }
  .badges-con {
      position: absolute;
      z-index: 1;
      top: 10px;
      left: 5px;
      gap: 3px;
  }
  .product-title {

      font-size: 13px;
      line-height: 120%;
  }

  .my-cart {
      width: 100%;
  }
}
@media (max-width: 450px) {
  .subproductimagegroup{
      height: 200px;
  }
}

.closecart {
  position: absolute;
  top: 30px;
  right: 50px;
  cursor: pointer;
  background-color: white;
  color: #FD5001;

}
.yith-wcpb-product-bundled-items{
  background-color: #fff !important;
  margin: 10px 15px !important;
  width: auto !important;
  height: auto !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 5px !important;
  }
  .yith-wcpb-product-bundled-items .yith-wcpb-product-bundled-item{
      padding: 15px !important;
  }