/** Shopify CDN: Minification failed

Line 67:0 Unexpected "{"
Line 67:1 Expected identifier but found "%"
Line 71:0 Unexpected "{"
Line 71:1 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.featured-ghost-collection-section{
/* Grid Column Settings */
.featured-collection-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat({{ section.settings.dt_grid }}, 1fr) !important;
}

@media screen and (max-width: 1900px) {
  .featured-collection-grid {
    grid-template-columns: repeat({{ section.settings.laptop_grid }}, 1fr) !important;
  }
}

@media screen and (max-width: 1024px) {
  .featured-collection-grid {
    grid-template-columns: repeat({{ section.settings.tablet_grid }}, 1fr) !important;
  }
}

@media screen and (max-width: 768px) {
  .featured-collection-grid {
    grid-template-columns: repeat({{ section.settings.mobile_grid }}, 1fr) !important;
  }
}

/* Hover Effect Styles */
.card-product {
  position: relative;
}

.card-product__image-primary,
.card-product__image-secondary {
  display: block;
  width: 100%;
  height: auto;
}

.card-product__image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-product:hover .card-product__image-secondary {
  opacity: 1;
}

.card-product:hover .card-product__image-primary {
  opacity: 0;
}

/* Hide Product Info */
{% if section.settings.hide_product_info %}
.card-product--text-section {
  display: none;
}
{% endif %}

/* Fix vertical gap issue */
.card-product__image-link {
  display: block;
  line-height: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

@media screen and (max-width: 1900px) {
   .grid {
    grid-template-columns: repeat(7, 1fr )!important;
  }
}

@media screen and (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
}

/* CSS from snippet stylesheet tags */
.swatch-dot.has-bg-image {
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
  }
#modalSlidesContainer.modal-vertical-scroll {
 
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  flex-direction: column;
  scroll-behavior: smooth;
  position: relative;
        justify-content: normal;
  .product-media-image {
    @media(min-width: 769px){
       width: 100% !important;
    }
   
  }
}
  #modalSlidesContainer .galSlides {
  scroll-snap-align: start;
  display: block;
}