/** Shopify CDN: Minification failed

Line 38:19 Expected identifier but found whitespace
Line 38:21 Unexpected "{"
Line 38:30 Expected ":"
Line 129:17 Expected identifier but found whitespace
Line 129:19 Unexpected "{"
Line 129:28 Expected ":"
Line 129:60 Expected ":"
Line 257:19 Expected identifier but found whitespace
Line 257:21 Unexpected "{"
Line 257:30 Expected ":"
... and 1 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Compare at price display */
.best-sellers__compare-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 6px;
  font-size: 16px;
}

.price__sale{
  display:none;
}
  
.best-sellers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 15px;
  background-color: {{ section.settings.background_color }};
}

.best-sellers--full-height {
  height: 100vh;
}

.best-sellers__title {
  /* font-family: 'Bricolage Grotesque', sans-serif; */
  text-transform: lowercase;
  text-align: left;
  margin-bottom: 30px;
  font-size: 4rem;
  color: #48482e;
  font-weight: 300;
  margin-top:0px;
}

.best-sellers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 20px; */
}

.best-sellers__product {
  text-align: center;
  border: 1px solid #e0e0e0;
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
}

.best-sellers__product-image {
  position: relative;
  height: 85%;
  width: 100%;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.best-sellers__product:hover .best-sellers__product-image {
  height: 100%;
}

.best-sellers__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  max-width: 100%;
  max-height: 100%;
}

.best-sellers__product-image .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in; /* Changed to a simple fade transition */
  object-fit: cover;
}

.best-sellers__product:hover .main-image {
  opacity: 0;
  transition: opacity 0.5s ease-in; /* Added to ensure smooth fade out */
}

.best-sellers__product:hover .hover-image {
  opacity: 1;
}

.best-sellers__product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #4d4e4c;
  color: #fff;
  padding: 5px 10px;
  font-size: 10px;
  text-transform: uppercase;
  z-index: 2;
  /* font-family: 'Instrument Sans', sans-serif; */
}

/* Dalí Sticker Styling - Using CSS custom properties for dynamic sizing */
.best-sellers__dali-sticker {
  --sticker-size: {{ section.settings.dali_sticker_size }}px;
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  width: var(--sticker-size) !important;
  height: var(--sticker-size) !important;
  z-index: 999 !important;
  pointer-events: none !important;
  overflow: visible !important;
}

/* Very specific selector to override ALL image styles */
.best-sellers__product .best-sellers__dali-sticker > img {
  position: static !important;
  width: var(--sticker-size) !important;
  height: var(--sticker-size) !important;
  max-width: none !important;
  max-height: none !important;
  min-width: auto !important;
  min-height: auto !important;
  object-fit: contain !important;
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  display: block !important;
  flex: none !important;
}

.best-sellers__product-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  flex-grow: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.best-sellers__product:hover .best-sellers__product-details {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  position: absolute;
}

.best-sellers__product-name {
  /* font-family: 'Instrument Sans', sans-serif; */
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

.best-sellers__product-price {
  /* font-family: 'Instrument Sans', sans-serif; */
  font-size: 16px;
  color: #000;
}

/* Add to cart button styling */
.best-sellers__add-to-cart {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  font-size: 16px;
  /* font-family: 'Instrument Sans', sans-serif; */
  border: none;
  cursor: pointer;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 5;
  width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-transform: lowercase;
}

.best-sellers__product:hover .best-sellers__add-to-cart {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .best-sellers {
    height: auto;
    padding: 30px 15px;
    position: relative;
  }
  
  .best-sellers__title {
    font-size: 3rem;
  }

  .best-sellers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  
  /* Style for the third product in mobile view */
  .best-sellers__grid .best-sellers__product:nth-child(3) {
    grid-column: 1 / span 2; /* Make it span both columns */
    width: 50%; /* Make it half the width */
    margin: 0 auto; /* Center it */
  }

  .best-sellers__product {
    height: 400px;
  }
  
  .best-sellers__add-to-cart {
    bottom: 25px;
    padding: 12px 25px;
    font-size: 14px;
  }
  
  /* Adjust Dalí sticker size for mobile */
  .best-sellers__dali-sticker {
    --sticker-size: {{ section.settings.dali_sticker_size | times: 0.8 }}px;
  }
}
.shop-rating {
    margin-left: auto;
    margin-right: auto;
    max-width: 130px;
    overflow: hidden;
    margin-top: 10px;
}