/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 153:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
    .featured-products {
      padding: 40px 20px;
      text-align: center;
    }
    .featured-products h2 {
      font-size: 56px;
      margin-bottom: 10px;
    }
    .featured-products p {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #555;
    }
    .featured-products-grid {
      display: grid;
          grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
      gap: 40px;
       justify-content: center; /* Centers the entire grid within the container */
    }
    @media (min-width: 1200px) {
      .featured-products-grid {
           grid-template-columns: repeat(auto-fit, minmax(168px, 220px));
    gap: 40px;
    justify-content: center; /* Centers the entire grid within the container */
  
      }
    }
    .featured-products-item {
      border: 1px solid #eaeaea;
      padding: 0px;
      transition: box-shadow 0.3s;
      cursor: pointer; /* Indicate clickable */
    }
    
    .featured-products-item img {
      max-width: 204px;
      height: auto;
      margin-bottom: 10px;
    }
    .featured-products-item .product-title {
      font-size: 1.1em;
      margin-bottom: 5px;
      color: #333;
    }
    .featured-products-item .product-price {
      color: #888;
      font-size: 1em;
    }
    .original-price {
      text-decoration: line-through;
      margin-right: 5px;
    }
    .sale-price {
      color: #e60023;
    }

    /* Modal Styles */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      background-color: #fff;
      margin: 20px;
      padding: 20px;
      border-radius: 8px;
      max-width: 600px;
      width: 90%;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .close-button {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.5em;
      cursor: pointer;
      color: #aaa;
      transition: color 0.3s;
    }

    .close-button:hover {
      color: #000;
    }

    .modal-product-image img {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
      max-height: 700px;
    }

    .modal-product-details {
      text-align: center;
    }

    .modal-product-details h2 {
      margin-bottom: 10px;
      font-size: 1.8em;
      color: #333;
    }

    .modal-product-details p {
      font-size: 1.2em;
      color: #555;
      margin-bottom: 20px;
    }



    /* Flex display for modal */
    .modal {
      display: none; /* Hidden by default */
      align-items: center;
      justify-content: center;
    }

    /* Additional Styles for Metafields */
    .modal-product-details strong {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
      color: #333;
    }
    
    .modal-product-details p {
      margin: 0 0 10px 0;
      color: #555;
    }
  </style>