<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 142:23 Unexpected "{"
Line 142:32 Expected ":"
Line 142:39 Unexpected "{"
Line 180:10 Expected identifier but found whitespace
Line 180:12 Unexpected "{"
Line 180:21 Expected ":"
Line 181:15 Expected identifier but found whitespace
Line 181:17 Unexpected "{"
Line 181:26 Expected ":"
Line 199:15 Expected identifier but found whitespace
... and 5 more hidden warnings

**/
 @media screen and (max-width: 990px) {
    .page-width.swiper-container-desktop {
      padding: 0 2rem;
    }
  }

  @media screen and (max-width: 989px) {
    .collection .grid__item {
      margin-bottom: 10px !important;
    }
  }

.collection .collection__title .h2 {
    margin-bottom: 0;
}

  .collection__title--desktop-slider .title {
    padding: 0 10px;
    margin-bottom: 0 !important;
  }
  
  .center.collection__view-all {
    margin-right: 0px;
  }
  
  .collection .grid__item {
    box-shadow: 0 10px 15px #0003;
    border-radius: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    height: -webkit-fill-available;
  }
  .collection .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.collection .swiper-initialized .swiper-wrapper {
    display: flex;
    gap: unset;
}
  .grid.product-grid {
    padding-bottom: 0px;
  }
  
  .collection__title.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .card__information h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
.center.collection__view-all {
  background: linear-gradient(135deg, #817f7f, #d6386d, #a7a2a2);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  border-radius: 30px;
  box-shadow: 0 0 8px rgba(244, 6, 96, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  position: relative;
  animation: gradientPulse 4s ease infinite, borderGlow 2s ease-in-out infinite alternate;
}
.center.collection__view-all:hover {
  transform: scale(1.03);
  box-shadow: 0 0 16px rgba(244, 6, 96, 0.6), 0 0 24px rgba(212, 0, 72, 0.4);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(229, 0, 43, 0.8));
}
  
  .center.collection__view-all a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    letter-spacing: 0;
    font-weight: 500;
  }
  
  @keyframes gradientPulse {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @keyframes borderGlow {
    0% {
      box-shadow: 0 0 8px rgba(244, 6, 96, 0.3), 0 0 15px rgba(244, 6, 96, 0.2);
    }
    100% {
      box-shadow: 0 0 12px rgba(244, 6, 96, 0.6), 0 0 25px rgba(212, 0, 72, 0.4);
    }
  }

  /* Swiper container styles */

  
  .swiper-wrapper {
    display: flex;
  }
  
  .swiper-slide {
    width: calc(25% - 20px);
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.6s ease;
    will-change: transform;
  }
  @media (max-width: 1024px) {
    .swiper-slide {
      width: calc(25% - 20px);
      margin-right: 20px;
    }
    .swiper-container-{{ section.id }} {
      padding: 20px 10px 15px 10px !important;
    }
}
 @media (min-width: 1025px) and (max-width: 2480px) {
    .collection .swiper-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 751px) {
    .swiper-slide {
      width: calc(33.33% - 20px);
      margin-right: 20px;
    }
  }
  @media (min-width: 751px) and (max-width: 1024px) {
    .collection .swiper-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
    div#Slider-product {
      padding-bottom: 10px !important;
    }
  }

  @media (max-width: 750px) {
    .swiper-slide {
      width: calc(50% - 20px);
      margin-right: 20px;
    }
    .collection .swiper-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Swiper navigation styles */
  .swiper-button-next,
  .swiper-button-prev {
    color: {{ section.settings.navigation_color }};
    background: {{ section.settings.navigation_bg }};
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
  }
  
  .swiper-pagination-bullet {
    background: {{ section.settings.pagination_color }};
    opacity: 0.5;
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: {{ section.settings.pagination_active_color }};
  }
</pre></body></html>