/** Shopify CDN: Minification failed

Line 662:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.glide__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.bs_savings-section {
  background-color: #005a4c;
  padding: 60px 20px;
  color: white;
  text-align: center;
  max-width: 1360px;
  margin: auto;
  border-radius: 20px;
}

.bs-header {
  padding: 50px 0;
}
.bs-h2 {
  font-size: 3.5rem;
}
.bs-p {
  font-size: 2rem;
  margin-top: 10px;
}

/* Slider wrapper on mobile */
.bs_slider-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 30px;
  padding: 0 20px 20px;
  margin: 0 -20px;
}
.bs_slider-wrapper::-webkit-scrollbar {
  display: none;
}
.bs_slider-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Individual pricing card */
.bs_pricing-card {
  background: white;
  color: black;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  flex: 0 0 85%;
  scroll-snap-align: center;
  min-width: 300px;
  max-width: 450px;
}
.bs_pricing-card:hover {
  box-shadow: 0px 0px 5px 5px #e84218;
}
.bs_pricing-card:hover .bs_product-list li span {
  background-color: red;
}

/* Pricing card content */
.bs_card-header-main {
  background-color: #e84218;
  padding: 20px;
  position: relative;
  color: white;
}
.bs_card-subheader {
  font-size: 0.75rem;
  margin-top: -8px;
  margin-bottom: 20px;
}
.bs_card-body {
  padding: 24px 16px;
  flex-grow: 1;
}
.bs_price {
  font-weight: bold;
  font-size: 3.8rem;
  color: #222;
  margin-bottom: 12px;
}
.bs_price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
}
.bs_savings-badge {
  background-color: #057c5c;
  color: white;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 10px auto;
  display: inline-block;
}
.bs_product-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  text-align: left;
}
.bs_product-list li {
  padding: 8px 0;
  display: flex;
  font-size: 18px;
  border-bottom: 1px solid #e0e0e0;
}
.bs_product-list li:last-child {
  border-bottom: none;
}
.bs_product-list li span {
  width: 16px;
  height: 16px;
  background-color: gray;
  border-radius: 50%;
  border: 1px solid white;
  margin-right: 8px;
}

/* Footer & button */
.bs_footer-note {
  background: white;
  color: black;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 9999px;
  font-size: 1.9rem;
  font-weight: bold;
  margin: 15px 0;
}
.bs_bundle-button {
  background: #e84218;
  color: white;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}
.bs_bundle-button:hover {
  background: #d1350f;
}

/* Desktop grid layout */
@media screen and (min-width: 769px) {
  .bs_slider-wrapper {
    flex-wrap: wrap;
    overflow-x: unset;
    justify-content: center;
    scroll-snap-type: none;
  }
  .bs_pricing-card {
    flex: 0 0 450px;
    scroll-snap-align: unset;
  }
  .bs_card-subheader {
    font-size: 2rem;
    margin-top: 0px;
    margin-bottom: 20px;
}
}
.bundle-section {
  background-color: #f5f0e9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Gooper regular' !important;
}
.bundle-section h2 {
  font-size: 32px;
  font-weight: bold;
}
.bundle-section p.subtitle {
  font-size: 16px;
  margin-bottom: 40px;
}
.bundle-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.bundle-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  max-width: 450px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left !important;
}
  .bundle-card:hover{
    max-height: 100%;
    background-color: #086958;
    color: white;
    box-shadow: 0 4px 15px #086958;
  }

  .bundle-card:hover .bundle-save{
    background-color: white;
    color: black;
  }
  .bundle-card:hover .price-label svg path{
    stroke: black;
  }
.bundle-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bundle-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bundle-title {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 5px;
}
.bundle-desc {
  font-size: 16px;
  margin-bottom: 12px;
}
.bundle-list {
  font-size: 14px;
  margin-bottom: 20px;
  padding-left: 0px;
  list-style: none;
}
.bundle-list li {
  margin-bottom: 6px;
  font-size:18px;
}
.bundle-price {
  margin-bottom: 10px;
}
.bundle-save {
  background-color: black;
  color: white;
  padding: 10px;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  border: 1px solid #F24500;
}
.bundle-btn {
  background-color: #f05323;
  color: white;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  display: block;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 10px;
  font-size:20px;
  justify-content: center;
    display: flex;
}
  .bundle-save .price-label{
    display: flex;
    justify-content: center;
    gap: 5px;
  }
  .price-lable{
   font-size:18px; 
  }
  .price-div{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 15px 0px;
  }
  
  @media (min-width :1400px){
    .bundle-card {
  max-width: 400px;
}
    .bundle-title {
    font-size: 28px;
}
          .bundle-card:hover{
    max-width: 420px !important;
        margin-top: -20px;
      }
  }
  @media (min-width :1600px){
    .bundle-card {
  max-height: 1010px;
      max-width: 450px;
}
          .bundle-card:hover {
        max-width: 550px !important;
        margin-top: -40px;
        margin-bottom: -40px;
    }
    .bundle-title{
    font-size: 23px;
      letter-spacing: 1px;
}
  }
  .save-baget{
   position: absolute;
    top: 4%;
    right: 3%;
    font-size: 16px;
    color: white;
    background-color: #F24218;
    padding: 5px 13px;
    border-radius: 16px;
    border: 1px solid white;
  }
  .bundle-img{
    position: relative;
  }
  .bundle-card .bundle-title,.bundle-card .bundle-desc,
  .bundle-card .bundle-list,.bundle-card .price-div{
    color:#003333;
  }
  .bundle-card:hover .bundle-title,.bundle-card:hover .bundle-desc,
  .bundle-card:hover .bundle-list,.bundle-card:hover .price-div{
    color: #fff;
  }
.meati-grid {
  display: grid;
  gap: 24px;
  margin-top: 2rem;
  max-width:1360px;
  margin:auto;
  background: white;
  position: relative;
}
.meati-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: relative;
}
.meati-img-wrapper {
  position: relative;
}
.meati-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  color: red;
  font-weight: bold;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}
.meati-title {
    text-align: center;
    font-family: Gooper;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
  margin-top: 15px;
}
.meati-price {
  font-weight: bold;
  margin: 0.5rem 0;
  color: var(--Secondary-DeepGreen, #033);
text-align: center;
font-family: Gooper;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.meati-desc {
  padding: 0 1rem 2rem;
text-align: center;
font-family: "Founders Grotesk";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.meati-cta {
    padding: .75rem;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    width: 95%;
  color: #000;
font-family: Gooper;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
  .meati-card-even {
  background-color: #FFAB00; /* Light peach */
}

.meati-card-odd {
  background-color: #F24500; /* Alice blue */
}
  .meati-card-odd .meati-price,.meati-card-odd .meati-title,.meati-card-odd .meati-desc,.meati-card-odd .meati-quantity label{
    color: white;
  }

.meati-quantity label{
  font-size: 12px;
    font-weight: 600;
}

  
    .meati-card-even .meati-price,.meati-card-even .meati-title,.meati-card-even .meati-desc,.meati-card-even .meati-quantity label{
    color: black;
  }

  .meati-card-even .meati-cta, .meati-card-even .meati-quantity select{
    background-color: #F24500;
  }
  .meati-card-odd .meati-cta, .meati-card-odd .meati-quantity select{
    background-color: #FFAB00;
  }

  .meati-card:hover .form-div{
    display:block;
    
  }
  .form-div{
    padding:10px;
  }
  .meati-quantity{
    margin: 0.5rem;
    text-align: start;
}
  .meati-card .meati-quantity select{
    border: none;
    border-radius: 4px;
    padding: 0px 10px;
  }
@media (max-width: 768px){
.meati-grid{
      grid-template-columns: repeat(2, 1fr) !important;
}
    .meati-card-even {
  background-color: #003333; /* Light peach */
}

.meati-card-odd {
  background-color: #6B210F; /* Alice blue */
}
    .meati-card-even .meati-cta, .meati-card-even .meati-quantity select{
    background-color: #FFAB00;
  }
  .meati-card-odd .meati-cta, .meati-card-odd .meati-quantity select{
    background-color: #FFAB00;
  }
  .meati-quantity label,.meati-weight{
    color:#FFAB00 !important;
  }
  .meati-desc{
    display: none;
  }
  .meati-price,.meati-title{
    color:white !important;
  }
  .meati-title {
    margin-bottom: 0px !important;
}
  .form-div {
    padding-bottom: 20px !important;
}
  #shopify-section-template--19498327441652__feature_product_addtocart_3JcAdP > section > div > div > a > div.meati-title{
    margin-bottom:10px !important;
  }
  }
  @media (max-width: 600px) {
    .meati-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        padding: 13%;
    }
}
  @media (max-width: 500px){
.meati-grid{
      grid-template-columns: repeat(1, 1fr) !important;
  padding: 5%;
}
  }
  @media (min-width: 990px){
    .meati-card{
      max-width:100%;
    }
  }

  .meati-card:hover {
        box-shadow: 1px 1px 7px black;
    }
  .meati-weight {
    text-align: left;
    padding-left: 5px;
    padding-bottom: 5px;
}
.meati-card-even .meati-weight{
  color:black;
}
  .meati-card-odd .meati-weight{
 color:white;
  }
 @media (min-width: 1320px){
    .meati-card .form-div{
    display: none;
  }
     .meati-card-odd .form-div{
    position: absolute;
    top: 310px;
    background: linear-gradient(0deg,rgba(240, 67, 22, 1) 0%, rgba(240, 67, 22, 1) 37%, rgba(255, 255, 255, 0) 100%);
    width: 100%;
    background: linear-gradient(181deg, rgba(255, 255, 255, 0.06) 9.98%, #F24500 104.61%);
backdrop-filter: blur(13px);
}
  .meati-card-even .form-div{
    position: absolute;
    top:310px;
    background: linear-gradient(0deg,rgba(254, 169, 43, 1) 0%, rgba(254, 195, 107, 1) 37%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(13px);
    width: 100%;
}
 
 }
.recipe-slider-main{
      background-color: #003b36;
  }
.recipe-slider {
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 0;

  overflow: hidden;
}
.recipe-slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0 1rem;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.recipe-slider__track::-webkit-scrollbar {
  display: none;
}
.recipe-slider__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  text-align: center;
}
.recipe-slider__card.orange { background-color: #ffa500; }
.recipe-slider__card.red { background-color: #ff4c00; }
.recipe-slider__card.brown { background-color: #61210f; }
.recipe-slider__card.green { background-color: #00795e; }

.recipe-slider__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  max-height: 331px;
}
.recipe-slider__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.recipe-slider__meta {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.recipe-slider__link {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  margin-top: 0.5rem;
}
.recipe-slider__arrow {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  padding: 0 1rem;
}
    @media (min-width:990px){
        .recipe-slider__card{
    flex: 0 0 450px;}
      .recipe-slider_feature__track{
        padding-top:2rem !important;
        padding-bottom:2rem !important;
      }
      .recipe-slider__title{
        font-size:3rem;
      }
      .recipe-slider-main h2{
        justify-content: center;
    display: flex;
    padding-top: 48px;
    color: white;
    font-size: 41px;
      }
  }
  @media (max-width:320px){
    .recipe-slider__card{
    flex: 0 0 298px;}
    .recipe-slider_feature__track{
      margin-left: -25px;
    margin-right: -25px;
    }
  }


  /* .recipe-slider {
  display: flex;
  flex-wrap: wrap; /* if there are multiple rows */
} */

.recipe-slider__title {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch; /* makes children the same height */
}

.recipe-slider__title > * {
  flex: 1;
}
.kitchen-section .prep-steps.d-none {
  display: none;
}
.recipe-slider {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.recipe-slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0 1rem;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.recipe-slider__track::-webkit-scrollbar {
  display: none;
}
.recipe-slider__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  text-align: center;
}
.recipe-slider__card.orange { background-color: #ffa500; }
.recipe-slider__card.red { background-color: #ff4c00; }
.recipe-slider__card.brown { background-color: #61210f; }
.recipe-slider__card.green { background-color: #00795e; }

.recipe-slider__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  max-height: 331px;
}
.recipe-slider__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.recipe-slider__meta {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.recipe-slider__arrow {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  padding: 0 1rem;
}
.recipe-slider__meta span{
    font-family: 'Gooper regular' !important;
    font-weight: none !important;
    display: flex;
    text-align: center;
    justify-content: center;
}
.recipe-slider__meta span svg {
    width: 15px;
    height: 15px;
    margin: auto;
    margin-right: 5px;
}
@media (min-width:990px){
  .recipe-slider__card {
    flex: 0 0 450px;
  }
  .recipe-slider__track {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .recipe-slider__title {
    font-size: 3rem;
  }
}
  @media (max-width:768px){
    div.recipe-slider > button.recipe-slider__arrow.prev, div.recipe-slider > button.recipe-slider__arrow.next, .recipe-slider__arrow .prev{
    display:none !important;
  }}
@media (max-width:320px){
  .recipe-slider__card {
    flex: 0 0 298px;
  }
  .recipe-slider__track {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.logo-bar {
  background-color: #F2E9DD;
  padding: 2rem 1rem;
}

.logo-bar__row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-top: 25px;
}
  .logo-bar__item{
     display: flex;
  justify-content: center; 
  }

.first_row img {
    max-height: 117px;
    width: auto;
    object-fit: contain;
    width: 245px;

}
.second_row img {
    max-height: auto;
    width: auto;
    object-fit: contain;
    max-width: 203px;
}

@media screen and (max-width: 1024px) {
  .logo-bar__row {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .logo-bar__item {
    flex: 1 1 40%;
    max-width: 45%;
    justify-content: center;
  }
}

@media screen and (max-width: 600px) {
  .logo-bar__item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.rachael-grid-wrapper {
  padding: 4rem 2rem;
}
.rachael-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}
.rachael-grid-heading {
  font-size: 2.5rem;
  color: white;
  font-family: 'Gooper Regular', serif;
  margin-bottom: 2rem;
  text-align: left;
    font-weight: 800;
}
.rachael-grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.rachael-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.rachael-card:hover {
  transform: translateY(-6px);
}
.rachael-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.rachael-card-content {
  padding: 1.5rem;
}
.rachael-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: 'Gooper Regular', serif;
}
.rachael-card-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
}
.rachael-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rachael-no-recipes {
  text-align: center;
  color: white;
  margin-top: 2rem;
}

/* Responsive */
@media screen and (max-width: 991px) {
  .rachael-grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .rachael-grid-cards {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 991px) {
  .rachael-grid-heading {
  font-size: 2.5rem;
  color: white;
  font-family: 'Gooper Regular', serif;
  margin-bottom: 2rem;
  text-align: left;
  font-size: 50px;
  font-weight: 800;
}
}
.recipe-slider {
  display: flex;
  align-items: center;
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}
.recipe-slider__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
  padding: 0 1rem;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.recipe-slider__track::-webkit-scrollbar {
  display: none;
}
.recipe-slider__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  text-align: center;
}
.recipe-slider__card.orange { background-color: #ffa500; }
.recipe-slider__card.red { background-color: #ff4c00; }
.recipe-slider__card.brown { background-color: #61210f; }
.recipe-slider__card.green { background-color: #00795e; }

.recipe-slider__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  max-height: 331px;
}
.recipe-slider__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.recipe-slider__meta {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.recipe-slider__arrow {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  padding: 0 1rem;
}
.recipe-slider__meta span{
    font-family: 'Gooper regular' !important;
    font-weight: none !important;
    display: flex;
    text-align: center;
    justify-content: center;
}
.recipe-slider__meta span svg {
    width: 15px;
    height: 15px;
    margin: auto;
    margin-right: 5px;
}
@media (min-width:990px){
  .recipe-slider__card {
    flex: 0 0 450px;
  }
  .recipe-slider__track {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .recipe-slider__title {
    font-size: 3rem;
  }
}
@media (max-width:320px){
  .recipe-slider__card {
    flex: 0 0 298px;
  }
  .recipe-slider__track {
    margin-left: -25px;
    margin-right: -25px;
  }
}