/** Shopify CDN: Minification failed

Line 497:18 Expected identifier but found whitespace
Line 497:20 Unexpected "{"
Line 497:30 Expected ":"

**/



  
  /* Product container CSS */
  .product-container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem !important;

}

.product-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;

}

    /* Product item CSS */
    .product-item {
  display: flex;
  align-items: center;
  padding: 1.2rem 0.8rem 0.8rem 0.8rem;
  border: 1px solid #e5e7eb;
  transition: background-color 0.2s;
  position: relative;
  background-color: white;
  border-radius: 0.5rem;
  max-width: 100%;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}


.product-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item:hover {
  background-color: #fff;
  border: 1px solid #264E3B;
  transition: all 0.2s;
}

.product-image {
  width: 4.5rem;
  height: 4.5rem;
  margin-right: 0.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.product-info {
  display: flex;
  flex-direction: column;
  
}
.product-info p{
    margin: 0;
  
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  font-family: 'Inter', sans-serif !important;
  line-height: 1rem;
  margin-bottom: 0.2rem;
}

.price-per-meal {
  font-size: 0.8rem;
  color: #6b7280;
}

.product-price {
  font-size: 0.9rem;
  color: #6b7280;
}

.quantity-selector {
 /* margin-left: auto;*/
  display: flex;
  align-items: center;
  /*gap: 0.5rem;*/
}

.quantity-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background-color: #231F1F;
  border: 2px solid #231F1F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.quantity-btn:hover {
  background-color: #444040;
}


.quantity-input {
width: 2.5rem;
height: 2.5rem;
border-radius:10px;
background-color: #fff;
overflow: visible;
padding: 0rem;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
border: none;
}

.quantity-input.hidden,
.quantity-btn.decrease.hidden {
    display: none;
}

.product-item:nth-child(8) {
    margin-bottom: 0;
  }


    /* Subscription container CSS */

    .subscription-header-text {
        font-size: 1.2rem;
        color: #387A62;
        font-weight: 600;
        margin-bottom: 0;
        font-family: 'Inter', sans-serif !important;
    }

  .subscription-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  
}

.subscription-option {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgb(75, 75, 75);
    background-color: white;
    position: relative;
    cursor: pointer;
    margin-bottom: 0rem;
    transition: all 0.3s;

}

.subscription-option.subscription-box {
    z-index: 3;
  }

.subscription-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.subscription-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.subscription-price {
    color: #387A62;
    margin: 0;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
}



/*.subscription-price-per {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0;
    margin-bottom: 0;
}*/
.compare-price {
    font-size: 0.875rem !important;
    color: #6B7280 !important;
    margin-top: 0 !important; 
    margin-bottom: 0 !important;
    font-family: 'Inter', sans-serif !important;
    text-decoration: line-through;
}

.subscription-header-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
}
.subscription-header-text-container span{
    font-size: 0.875rem !important;
    color: #6B7280 !important;
    margin-top: 0 !important; 
    margin-bottom: 0 !important;
    font-family: 'Inter', sans-serif !important;
  
}


.subscription-benefits-header {
    margin-bottom: 1.5rem;
}

.subscription-benefits-header p {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px;
    /*margin-bottom: 1.5rem;*/
}

.subscription-frequency-container-wrapper {
    margin-top: 0rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.subscription-frequency-container {
    display: flex;
    flex-direction: column;
    width: 100%;

}

.subscription-frequency-container p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
  
}

#frequency {
    background-color: #F1EAE1;
    border: 1px solid #231F1F;
    border-radius: 0.375rem ;
    font-size: 1rem ;
    padding: 0.5rem ;
    margin-bottom: 0rem ;
    appearance: none ;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23231F1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #387A62;
    border-radius: 0.375rem;
    font-size: 1rem;
    background-color: #F1EAE1;
}

.subscription-option:hover {
    border-color: #264E3B;
}





.subscription-option {
    padding: 1rem 1rem 1rem 1rem;
    border-radius: 0.5rem;
    border: 3px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.subscription-option:hover {
    border-color: #d1d5db;
}

.subscription-option.selected {
    border-color: #387A62;
    background-color: rgba(#387A62, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.subscription-option.subscription-box {
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #4b5563;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.check {
    color: #387A62;
    margin-right: 0.5rem;
    margin-bottom: 0;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.frequency-selector {
    margin-bottom: 1rem;
}

.frequency-selector label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
   

}

.frequency-selector select {
    width:100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;

    padding: 0.75rem;
border-width: 1px; 
font-size: 1.1rem;
}



   /* Onteime container CSS */
.onetime-price {
    color: #000000;
    margin: 0;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;

}

.subscription-header h3 {
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
}

.onetime-price-per {
    color: #6B7280;
    margin: 0;
    font-size: 0.875rem;
}

.onetime-box {
    padding: 1rem;
}

.onetime-box-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.onetime-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.onetime-header h3 {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    margin-bottom: 0;
}

.onetime-header .total-meals {
    font-size: 0.875rem !important;
    color: #6B7280 !important;
    margin-top: 0 !important; 
    margin-bottom: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

    

    /*  Summary box CSS */

.summary-box {
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
   
}

.total-price {
    font-size: 1.3rem;
    font-weight: 600;
    margin-right: 0.5rem;
    color: #387A62;
}



.comare-price {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: line-through;
    color: #6b7280;

}

.summary-text {
    font-size: 1.3rem;
    font-weight: 600;


}

.summary-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.summary-row:last-child {
    margin-bottom: 0;
}

:root {
    --primary-color: #387A62;
    --primary-rgb: {{ settings.accent_color | color_to_rgb | split: ',' | join: ', ' }};
}
    
    /* Cart container CSS */ 

    .button-container {
    margin-top: 0rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
  }
  
  
  .cart-button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.15rem;
    background-color: #387A62;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
  }

  .desktop-cart-container .cart-button {

    padding: 1.5rem;

  }


  .cart-button:hover {
    background-color: #264E3B;
    transition: background-color 0.3s ease-in;
  }
  
  .cart-button:disabled {
    opacity: 1;
    cursor: not-allowed;
    background-color: gray;
  }
  
  .cart-button:hover:not(:disabled) {
    opacity: 0.9;
  }
  
  .cart-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    
  }  

  

    /* best value badge CSS */
    .best-value-bar {
        width: 100%;
        background-color: #387A62;
        color: white;
        padding: 0.5rem 0rem 1.2rem 0;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: -2rem; /* visually connect to box */
        box-shadow: 0 2px 4px rgba(0,0,0,0.03);
        z-index: 2;
        position: relative;
    }

    /* Hide old badge style (optional, for clarity) */
    .best-value-badge {
        display: none !important;
    }

    .savings-amount{
        margin-left: 0.2rem;
    }

/* EXTRA CSS */

.hidden {
    display: none;
}

.mobile {
    display: none;
  }

  .mobile-container {
    display: none;
  }

  

/* Mobile CSS 
@media screen and (max-width: 3000px) {

}

  
/* Hide cart-container on mobile */

.radio-container {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.radio-button {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #387A62;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.radio-inner {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #387A62;
    display: none;
}

.subscription-option.selected .radio-inner {
    display: block;
}

.subscription-header-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
}

.onetime-box-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.onetime-header-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
}

.onetime-header-text {
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600;
    color: #231F1F;
    margin: 0;
}

.onetime-header-text-container .total-meals {
    font-size: 0.875rem !important;
    color: #6B7280 !important;
    margin-top: 0 !important; 
    margin-bottom: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

.cart-total-meals {
    font-size: 1.15rem !important;
    color: #6B7280 !important;
    font-family: 'Inter', sans-serif !important;
    white-space: nowrap;
    min-width: fit-content;
    font-weight: 500;
    gap: 0.5rem !important;
}

.wrapper {
    padding: 10px;
}

/* Desktop cart container */
.desktop-cart-container {
   
}

.desktop-cart-container .cart-total-quantity-row {
    padding: 0px !important;
}

@media screen and (min-width: 768px) {
    .desktop-cart-container {
        display: block;
    }
    
    .desktop-cart-container .button-container {
        margin-top: 0;
        padding: 0;
    }
    
    .desktop-cart-container .cart-total-quantity-row {
        padding: 0 !important;
    }

    .add-to-cart-rendered {
        
    }
}

.product__block.aos-animate {
    padding-bottom: 0px !important;
}

@media screen and (max-width: 320px) {
    .product-name {
        font-size: 1rem;
    }

    .quantity-selector button {
        height: 2rem;
        width: 2rem;
    }


.cart-total-quantity-row {
    display: flex;
    flex-direction: column-reverse;
    padding: 0.5rem !important;
    gap: 0.5rem !important;
}

.cart-total-meals {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    height: 1rem !important;
}

.subscription-header h3 {
    font-size: 1rem !important;
}

.subscription-price {
    font-size: 1rem !important;
}

.onetime-price {
    font-size: 1rem !important;
}

.onetime-header-text {
    font-size: 1rem !important;
}



}

@media screen and (max-width: 768px) {
  .desktop-cart-container .cart-container .cart-total-quantity-row .cart-total-meals {
    display: none !important;
  }

  .quantity-input {
    width: 1.5rem;
  }

}

.add-to-cart-rendered {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}

.add-to-cart-rendered.hidden {
    opacity: 0;
    pointer-events: none;
}

.desktop-cart-container .cart-container .cart-total-quantity-row .cart-total-meals {
    display: none !important;
  }

  .per-meal-static {
    margin: 0px;
    font-size: 0.875rem !important;
    color: #6B7280 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-family: 'Inter', sans-serif !important;

  }

/* Volume Discount Progress Bar CSS */
.volume-discount-progress-container {
  padding: 1rem 0;
}

.progress-container {
  position: relative;
  width: 100%;
  height: 75px;
  margin: 0 auto;
}

.progress-bar {
  position: absolute;
  top: 50%;
  left: 1%;
  width: 100%;
  height: 12px;
  background: white;
  border-radius: 8px;
  transform: translateY(-50%);
  z-index: 1;
}


/* Laptop 1024px - reduce progress bar width to 85% and center it */
@media screen and (min-width: 1024px) {
  .progress-bar {
    width: 84%;
    left: 7.5%;
  }
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #387A62;
  border-radius: 8px;
  transition: width 0.3s ease;
  z-index: 2;
}

.step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.step-circle-outer {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle-inner {
  width: 36px;
  height: 36px;
  background: #B6B6B6;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.step-circle-inner.active {
  background: #387A62;
}

.step-number {
  color: white;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.step-pill {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 8px;
  border-radius: 110px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.step-pill.inactive {
  background: white;
  color: #387A62;
  border: 1px solid #387A62;
}

.step-pill.active {
  background: #387A62;
  color: white;
}

.step-pill.minimum {
  background: #B84040;
  color: white;
  display: none !important; /* Never show the minimum pill */
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .progress-container {
    height: 70px;
  }
  
  .progress-bar {
    height: 10px;
  }
  
  .step-circle-outer {
    width: 45px;
    height: 45px;
  }
  
  .step-circle-inner {
    width: 36px;
    height: 36px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .step-number {
    font-size: 18px;
  }
  
  .step-pill {
    top: -28px;
    padding: 3px 10px;
    font-size: 10px;
  }
}

@media screen and (max-width: 480px) {
  .progress-container {
    height: 65px;
  }
  
  .progress-bar {
    height: 8px;
    width: 95%;
  }
  
  .step-circle-outer {
    width: 40px;
    height: 40px;
  }
  
  .step-circle-inner {
    width: 32px;
    height: 32px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .step-number {
    font-size: 16px;
  }
  
  .step-pill {
    top: -25px;
    padding: 2px 8px;
    font-size: 9px;
  }
}

@media screen and (max-width: 360px) {
  .progress-container {
    height: 60px;
  }
  
  .step-circle-outer {
    width: 35px;
    height: 35px;
  }
  
  .step-circle-inner {
    width: 28px;
    height: 28px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .step-number {
    font-size: 14px;
  }
  
  .step-pill {
    top: -22px;
    padding: 2px 6px;
    font-size: 8px;
  }
}

/*

.product-item[data-product-id="11641848725772"] {
  border: 2px solid #B84040 !important;
}

.product-item[data-product-id="11641848725772"]:hover {
  border: 2px solid #B84040 !important;
}
*/

/* Product Pills Styles - Now handled by JavaScript for translations */
/* CSS pills have been replaced with dynamic JavaScript-generated pills */

/* Base styling for JavaScript-generated pills is applied inline */
.product-pill {
  /* Base styles are applied via JavaScript for better control */
}

/* ========== OUT OF STOCK FUNCTIONALITY - DISABLE WHEN BACK IN STOCK ========== */
/* Out of Stock Tag Styles - positioning is handled inline by JavaScript */

/* Ensure product items can position out-of-stock tags */
.product-item {
  position: relative;
}

/* Disabled state for out-of-stock products */
.product-item.out-of-stock .quantity-selector {
  display: none !important;
}

.product-item.out-of-stock .quantity-input,
.product-item.out-of-stock .decrease,
.product-item.out-of-stock .increase {
  pointer-events: none;
  opacity: 0.5;
}

/* Override special styling for out-of-stock products */
.product-item.out-of-stock {
  border: 1px solid #e5e7eb !important;
}

.product-item.out-of-stock:hover {
  border: 1px solid #e5e7eb !important;
}

/* Hide all product pills for out-of-stock items */
.product-item.out-of-stock .product-pill {
  display: none !important;
}
/* ========== END OUT OF STOCK FUNCTIONALITY ========== */

