/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 229:0 Unexpected "<"

**/

<style>
  .checkbox-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .custom-checkbox {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
  }

  .custom-checkbox input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
  }

  .custom-checkbox label {
    width: 30px;
    height: 30px;
    background: white;
    border: 1px solid #8b8b8b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .custom-checkbox input:checked + label {
    background: white;
    border-color: #4CAF50;
  }

  .custom-checkbox label::after {
    content: '';
    width: 12px;
    height: 6px;
    border: 2px solid #000000;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0;
  }

  .custom-checkbox input:checked + label::after {
    opacity: 1;
  }

  .product-recommendations {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .recommendation-product {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
  }

  .recommendation-product-info {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    column-gap: 32px;
    row-gap: 42px;
  }

  .recommendation-product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .recommendation-product-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .recommendation-product-description-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .recommendation-product-description-container p {
    text-align: left; 
    margin: 0;
  }

  .recommendation-product-customization {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }

  .recommendation-product-customization.active {
    max-height: 100%; /* Adjust based on content height */
    opacity: 1;
  }



  .upsell-product {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #f1f1f1;
  }

  .upsell-product-info {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    column-gap: 5px;
    row-gap: 42px;
  }

  .upsell-product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .upsell-product-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .upsell-product-description-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .upsell-product-description-container p {
    text-align: left; 
    margin: 0;
    font-size: 14px;
  }

  .upsell-product-customization {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }

  .upsell-product-customization.active {
    max-height: 100%; /* Adjust based on content height */
    opacity: 1;
  }

  .custom-checkbox.disabled {
   opacity: 0.4;
  }



  .cart-upsell-product {
    padding: 10px;
  }

  .cart-upsell-product-info {
    display: grid;
    grid-template-columns: 50px 1fr 70px;
    column-gap: 8px;
    row-gap: 42px;
  }

  .cart-upsell-product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .cart-upsell-product-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .cart-upsell-product-description-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .cart-upsell-product-description-container p {
    text-align: left; 
    margin: 0;
    font-size:12px;
  }

  .cart-upsell-product-customization {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }

  .cart-upsell-product-customization.active {
    max-height: 100%; /* Adjust based on content height */
    opacity: 1;
  }
</style>