/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 181:0 Unexpected "<"

**/
<style>
  .collection-slider-section {
    width: 100%;
    overflow: hidden;
  }

  .collection-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }

  .collection-slider-heading {
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    font-weight: 600;
    font-family: 'EB Garamond' , serif;
  }

  .collection-slider-navigation {
    display: none;
    gap: 8px;
  }

  .slider-button {
    width: 48px;
    height: 48px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .slider-button:hover:not(.swiper-button-disabled) {
    background: #f5f5f5;
    border-color: #d0d0d0;
  }

  .slider-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .slider-button svg {
    width: 24px;
    height: 24px;
    color: #2c2c2c;
  }

  .collection-swiper {
    overflow: hidden;
  }

  .collection-swiper .swiper-wrapper:not(.swiper-loaded-successfully) {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
  }

  .collection-swiper .swiper-scrollbar {
    position: relative;
    margin-top: 24px;
    height: 4px;
    background:#F6F6F6;
    border-radius: 100px;
    display: block !important;
  }

    .collection-swiper .swiper-scrollbar-drag {
    background: #2E2E2E;
    border-radius: 2px;
    cursor: grab;
    display: block;
  }

   @media (min-width: 768px) {
    .collection-swiper  .hide-on-desktop {
       display: none !important;
    }
  }

    .collection-swiper .swiper-scrollbar-drag:active {
    cursor: grabbing;
  }

  .collection-slide-card {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  .collection-slide-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .collection-slide-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .collection-slide-card:hover .collection-slide-image img {
    transform: scale(1.05);
  }

  .collection-slide-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
  }

  .collection-slide-title {
    font-size: 16px;
    font-family: 'Raleway';
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
    color: #2c2c2c;
  }

  .collection-slide-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2c2c2c;
    transition: transform 0.3s ease;
  }

  .collection-slide-card:hover .collection-slide-arrow {
    transform: translateX(4px);
  }

  @media screen and (min-width: 750px) {
    .collection-slider-heading {
      font-size: 32px;
    }

    .collection-slider-navigation {
      display: flex;
    }

    .collection-slide-title {
      font-size: 16px;
    }

    .collection-swiper .swiper-wrapper:not(.swiper-loaded-successfully) {
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .collection-swiper .swiper-scrollbar {
      display: none;
    }
  }
</style>