/** Shopify CDN: Minification failed

Line 37:0 Unexpected "<"
Line 65:2 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.slider-container {
    position: relative;
    overflow: hidden;
  }
  .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .slide {
    flex: 0 0 100%;
  }
  .slider-dots {
    text-align: center;
    margin-top: 10px;
  }
  .slider-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  .slider-dots .active {
    background: #333;
  }
<style>
  .circular-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px;
  }
  .circular-product-card {
    text-align: center;
    width: 160px;
  }
  .circular-product-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
  }
  .circular-product-card .product-title {
    font-weight: bold;
    margin-top: 10px;
  }
  .product-info {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
  }
  </style>