/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
<style>
  .featured-products {
    padding: 2rem 0;
  }
  .featured-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .featured-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Custom card styles */
  .custom-product-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #0d0d0d;
    transition: transform 0.3s ease;
  }
  
  .custom-product-card:hover {
    transform: translateY(-5px);
  }
  
  .custom-product-card__image {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    background: #000;
  }
  
  .custom-product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .custom-product-card__content {
    padding: 15px;
  }
  
  .custom-product-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .custom-product-card__title a {
    color: white;
    text-decoration: none;
  }
  
  .custom-product-card__title a:hover {
    text-decoration: underline;
  }
  
  .custom-product-card__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
  }
</style>