/** Shopify CDN: Minification failed

Line 220:20 Unexpected "{"
Line 220:29 Expected ":"
Line 223:20 Unexpected "{"
Line 223:29 Expected ":"
Line 238:22 Unexpected "{"
Line 238:31 Expected ":"
Line 242:22 Unexpected "{"
Line 242:31 Expected ":"
Line 245:22 Unexpected "{"
Line 245:31 Expected ":"
... and 2 more hidden warnings

**/
  a {
    text-decoration: none;
    color: #fff;
  }

  .featured-products-grid-badge {
    /* Original */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
  }

  .product-cards-badge {
    /* Original */
    flex: 1 1 calc(25% - 20px);
    position: relative;
    padding: 12px;
    /* border: 1px solid #eee; */
    background: #fff;
  }

  .product-image-wrapper {
    position: relative;
    text-align: center;
    background: #F6F6F6;
    padding: 20px 0;
    overflow: hidden;
  }

  .product-image {
    width: 80%;
    height: auto;
    transition: transform 0.2s ease;
  }

  .product-image-wrapper:hover img{
    transform: scale(1.07);
  }

  .badge-cu {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    border-radius: 20px;
    z-index: 999;
  }

  .product-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .product-title {
    margin: 6px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .variant-swatches {
    margin: 0;
  }

  .swatch-cu {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
  }

  .price-cu {
    font-weight: bold;
    font-size: 1.9rem;
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-end;
  }
.discount-badge-inline {
  background-color: #e53935;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}
  .price-cu span{
    font-weight: 400;
    font-size: 1.3rem;
  }
  .compare-price {
    text-decoration: line-through;
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 4px;
  }

  .price-wraper {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: end;
  }

  .product-cards-badge .hover-button {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #0D60DC;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 40px;
    pointer-events: none;
  }

  .product-cards-badge:hover .hover-button {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* ==== Responsive Overrides for Splide-Managed Slides ==== */
  .featured-products-grid-badge {
    display: block; /* let Splide handle layout */
  }
  .featured-products-grid-badge .splide__list {
    display: flex;
    align-items: flex-start;
  }
  .featured-products-grid-badge .splide__slide {
    flex: none;
    width: 100%;
    max-width: 280px; /* desktop default */
    margin: 0 auto;
  }

  @media (min-width: 480px) {
    .featured-products-grid-badge .splide__slide {
      max-width: calc(50% - 8px);
    }
  }
  @media (min-width: 768px) {
    .featured-products-grid-badge .splide__slide {
      max-width: calc(33.333% - 12px);
    }
  }
  @media (min-width: 1024px) {
    .featured-products-grid-badge .splide__slide {
      max-width: calc(25% - 16px);
    }
  }

  /* ==== Mobile Tweaks (<480px) ==== */
  @media (max-width: 479px) {
    .product-cards-badge {
      padding: 8px;
      min-width: 135px;
    }
    .product-cards-badge .hover-button{
      display: none;
    }
    .product-image {
      width: 100%;
    }
    .product-title {
      font-size: 14px;
      line-height: 1.2;
    }
    .price,
    .compare-price {
      font-size: 14px;
    }
    .hover-button {
      padding: 6px 10px;
      font-size: 14px;
    }
    .badge-cu {
      font-size: 10px;
      padding: 4px 8px;
    }
    .swatch-cu {
      width: 20px;
      height: 20px;
    }
  }


  /* Desktop grids */
    #custom-slider-{{ section.id }} .grid--2-col {
      grid-template-columns: 1fr 1fr;
    }
    #custom-slider-{{ section.id }} .grid--4-col {
      grid-template-columns: repeat(4, 1fr);
    }

    .slide-content {
      display: grid;
      gap: 1rem;
    }
    .banner img {
      width: 100%;
      display: block;
    }

    /* Mobile: stack banner + products in one column */
    @media screen and (max-width: 768px) {
      #custom-slider-{{ section.id }} .slide-content {
        grid-template-columns: 1fr !important;
      }
      /* Collapse 2-col → 1-col, 4-col → 2-col */
      #custom-slider-{{ section.id }} .grid--2-col {
        grid-template-columns: 1fr !important;
      }
      #custom-slider-{{ section.id }} .grid--4-col {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      .products-grid {
        gap: 0.5rem !important;
      }
      .price-cu{
        font-size: 1.5rem;
      }
    }

    /* Small phones: 4-col → 1-col, tighter spacing */
    @media screen and (max-width: 480px) {
      #custom-slider-{{ section.id }} .grid--4-col {
        grid-template-columns: 1fr !important;
      }
    }