.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: -600px; /* 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: 350px;
}

.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 rgba(216, 219, 223, 1);
  padding: 10px;
  color: #fff;
}

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

.meal-description {
  font-size: 14px;
  color: #000;
  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;
  padding: 3px 5.5px;
  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: flex-start;
  gap: 20px;
  flex: 7.5;
  float: left;
  width: 70%;
}
/* SummaryBox.css */
.summary-box {
  min-width: 370px !important;
  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: rgba(255, 237, 229, 1);
    border: 1px solid rgba(253, 79, 1, 1)

  }
  
  .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;
    margin-bottom: 5px;
  }
  
   .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: #000;
  }
  
  .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;
  }


  .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: 20px;
    box-sizing: border-box;
  }
  
  .badge {
    background-color: #FD5001;
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    position: absolute;
    margin-top: 0px;
    z-index: 1;
    font-family: "Gilroy" !important;

  }
  
  .product-image {
    width: 100%;
    
    margin-bottom: 10px;
  }
  
  .protein-info {
    text-align: center;
    margin: 10px 0;
    background-color: white;
    width: 50px;
    text-wrap: wrap;  
    height: 50px;
    border-radius: 50px;
    bottom: -25px;
    padding: 5px;
    right: 40%;
  }
  
  .protein-subamount {
    font-size: 16px;
    color: #FD5001;
    font-weight: bold;
  }
  
  .protein-label {
    font-size: 10px;
    color: #888;
  }
  
  .meal-type {
    background-color: #d4f1c5;
    color: #2d6a4f;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 15px;
    font-weight: bold;
    display: inline-block;
  }
  
  .product-title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    line-height: 1.5rem;
    font-family: "Gilroy" !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;
  }
  @media (max-width: 1370px) {
    .addmealsleft{
        width: 73%;
        gap: 15px;
    }
    .summary-box{
      width: 27%;
      
      height: fit-content;
    }
    .product-card{
      width: 30%;
      min-width: 240px;
    }
    .addmealscontainer{
      display: flex;
      flex-wrap: nowrap;
     
    }
  }
  @media (max-width: 900px) {
    .summary-box{
      min-width: 290px !important;
      padding: 10px !important;
    }}
  @media (max-width: 800px) {
    .summary-box{
      display: none;
    }
    /* .subtotal{
      left: 0px !important;
    } */
    .subnewimg1{
      display: block;   
    }
    .subnewimg{
      display: none;
    }
    .subnewmain{
      flex-direction: column;
     
    }
    .frame29{
      width: 100%;  
    }
    .subnewimg1{
      width: 100%;
    }
    .addmealsleft{
      width: 100%;
      justify-content: center;
      align-items: center;
    }
  }
  @media (max-width: 530px) {
    .protein-info{
      right: 35%;
    }
    .add-button{
      padding: 7px 14px;
    }
    .calories{
      font-size: 12px;
    }
    .weight{
      font-size: 12px;
    }
    .price{
      font-size: 20px;
    }
    .product-card{
      width: 45%;
      min-width: unset;
      padding: 5px;
    }
    .product-title{

      font-size: 16px;
    }
    .my-cart{
      width: 100%;
    }
    .subtotal{
      width: calc(100% - 40px) !important;
    }
    .checkout-button{
      width: calc(100%) !important;
    }
  }


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

  }



.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: -600px;
  /* 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: 350px;
}

.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 rgba(216, 219, 223, 1);
  padding: 10px;
 
  color: #fff;
}

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

.meal-description {
  font-size: 14px;
  color: #000;
  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;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
}

.addmealscontainer {
  display: inline-block;

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

.addmealsleft {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 70%;
  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: #000 !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: 800 !important;
  text-align: left;
  justify-content: flex-start ;
  font-size: 40px;
  margin-top: 2rem !important;
  margin-bottom: 2rem !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;
}
.addmeals_heading{
  font-size: 40px;
  font-family: "Gilroy" !important;
}
/* 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: rgba(255, 237, 229, 1);
  border: 1px solid rgba(253, 79, 1, 1)
}

.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;
  cursor: pointer;
}

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

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

.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: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.option-details span{
 white-space: nowrap;
}
.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;
  width: 50%;
}

.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: 70%;
      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;
  }
  .addmeals_heading{
    font-size: 30px;
    font-family: "Gilroy" !important;
    margin-bottom: 1rem;
  }
  .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: 12px;
      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;
}

.frame29{
  width: 100% !important;
  max-width: 700px;
  margin: 0px !important;
  margin-left: auto !important;
  margin-bottom: auto !important;
 
}
.subnewimg{
  width: 100% !important;
  height: 100% !important;
  object-fit: fill;
}
.plansright{
  width: 40%;
  margin-left: auto;
}
.newsubcon{
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 800px) {
  .newsubcon{
    flex-direction: column !important;
  }
  .subnewmain{
    width: 100% ;
  }
  .frame29{
    margin: auto !important;
  }
  .no-sub-points{
    font-size: 30px;
    margin: 0px !important;
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }
  .frame29{
    padding: 30px 10px !important;
  }
}

.datepicker_delivery_date{
  width: 100% !important;
  border: 1px solid #ccc !important;
  padding: 10px !important;
  border-radius: 3px;
}

.bold_orange{
  color:rgba(253, 79, 1, 1);
  font-weight: 600;
}
.subplistimg{
  height: 16px !important;
  width: 16px !important;
  margin-right: 4px;
}

/* Category search styles */
.categorySearch {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  gap: 15px;

}

.categorySearch .ftb_filter_search {
  
  min-width: 200px;
}

.ftb_filter_form.new-cat-input {
  display: flex;
  border: 1px solid #ced4da;
  border-radius: 5px;
  overflow: hidden;
}

.ftb_filter_form.new-cat-input input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.ftb_filter_form.new-cat-input button {
  background: white;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  top: 10px !important;
}

/* Filter tags container */
.filter-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 15px;
}

.filter-tag {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 30px;
  padding: 5px 12px;
  font-size: 13px;
}

.filter-tag button {
  background: none;
  border: none;
  margin-left: 8px;
  cursor: pointer;
  font-size: 14px;
}

.additional-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FD5001;
  color: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 12px;
}

/* Filter dropdown styles */
.filterContainer {
  position: relative;
}

.filterButton {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

.filterButton i {
  margin-right: 5px;
}

.filterBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #FD5001;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  margin-left: 5px;
}

.filterOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
}

.fullScreen {
  left: 0;
  width: 100%;
  
}

.sidePanel {
  width: 400px;
}

.filterContent {
  padding: 20px;
}

.filterHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
}

.filterHeader h2 {
  margin: 0;
  font-size: 18px;
}

.filterSection {
  margin-bottom: 20px;
}

.filterSection p {
  font-weight: 600;
  margin-bottom: 10px;
}

.filterGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.filterGrid button {
  padding: 8px 12px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.filterGrid button.active {
  background-color: #FD5001;
  color: white;
  border-color: #FD5001;
}

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

.actionButtons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.resetButton, .applyButton {
  flex: 1;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

.resetButton {
  background-color: white;
  border: 1px solid #dee2e6;
}

.applyButton {
  background-color: #FD5001;
  color: white;
  border: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .categorySearch {
    flex-direction: column;
    align-items: stretch;
  }
  
  .categorySearch > div {
    width: 100%;
  }
}
.cookdframe29 .subplan-active{
  border: 2px solid rgb(42, 203, 77) !important;
}