/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
<style>
    .custom-grid-products {
      padding: 20px;
      background: #f9f9f9;
    }
    .custom-grid-products .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    .custom-grid-products .product-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      position: relative;
      text-align: center;
    }
    .custom-grid-products .product-card img {
      width: 100%;
      height: auto;
    }
    .custom-grid-products .icons {
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .custom-grid-products .icons span {
      background: white;
      padding: 5px;
      border-radius: 50%;
      font-size: 14px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
      cursor: pointer;
    }
    .custom-grid-products .details {
      padding: 10px;
    }
    .custom-grid-products button {
      margin-top: 10px;
      padding: 8px;
      width: 100%;
      background: black;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
    }
    .badge-sale {
      position: absolute;
      top: 10px;
      left: 10px;
      background: red;
      color: white;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 3px;
    }
    .badge-new {
      position: absolute;
      top: 30px;
      left: 10px;
      background: green;
      color: white;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 3px;
    }
  </style>