/** Shopify CDN: Minification failed

Line 32:19 Expected identifier but found whitespace
Line 32:21 Unexpected "{"
Line 32:29 Expected ":"

**/

.popular-products-section {
  text-align: center;
  margin: 20px auto 0;
}

.swiper-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 34px;
}

.swiper-slide.popular-product-item {
  display:flex;
  position: relative;
  margin:40px 20px
}

/* Desktop */
.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: {{ blocks.settings.circle_bg_color }};
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid black;
}

.product-image {
  height: 175px;
  width: auto;
  position: absolute;
  top: -30px;
  /* transform: rotate(340deg); */
}

.product-label {
  margin-top: 10px;
  font-weight: bold;
}

/* Tablet */
/* Tablet: 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Adjusted for better spacing */
  }

  .circle {
    width: 130px; /* Slightly reduced size */
    height: 130px;
  }

  .product-image {
    height: 150px; /* Adjusted to fit inside the circle properly */
    top: -20px; /* Adjusted to prevent overflow */
  }
}

/* Mobile */
@media (max-width: 480px) {
  .circle {
    width: 85px;
    height: 85px;
  }
  
  .product-image {
    height: 100px;
    top: -18px;
  }

  .product-label {
    font-size: 12px; 
    line-height: 1.2; 
  }
}
