/** Shopify CDN: Minification failed

Line 14:20 Unexpected "{"
Line 14:29 Expected ":"
Line 14:36 Unexpected "{"
Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"
Line 16:10 Expected identifier but found whitespace
Line 16:12 Unexpected "{"
Line 16:21 Expected ":"

**/
  .shopify-section-{{ section.id }} {
    background-color: {{ section.settings.color_scheme.settings.background }};
    color: {{ section.settings.color_scheme.settings.text }};
  }

  .main-trending-div{
    padding-block:36px;
  }

  .trending-products.swiper {
    width: 100%;
    overflow: hidden;
  }

  .trending-products .swiper-wrapper {
    display: flex;
    gap: 20px;
  }

  .trending-products .swiper-slide {
    flex: 0 0 auto;
    width: 250px;
  }

    .product-card {
      position: relative;
      text-align: center;
      width: fit-content;
      height: fit-content;
    }

    .product-image {
      object-fit: contain;
      object-position: center center;
      width:100%;
      height:100%;
    }

    .discount-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #c19a3f;
      color: #fff;
      font-size: 12px;
      padding: 4px 8px;
    }

    .product-title {
      font-size: 14px;
      margin: 10px 0;
      min-height: 40px;
    }

    .price {
      margin-bottom: 10px;
    }

    .compare-price {
      text-decoration: line-through;
      color: #999;
      margin-right: 6px;
    }

    .sale-price {
      font-weight: bold;
      font-size: 16px;
    }

    .trending-products .swiper-button-next,.trending-products .swiper-button-prev {
      color: #000;
      background: #fff;
      top: 40%;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      z-index: 10;
      /* display:block !important;  */
    }

  .trending-products .swiper-button-next::after,.trending-products .swiper-button-prev::after {
      font-size: 13px;
      font-weight: 700;
    }
    .trending-products {
    overflow: visible;
  }