/** Shopify CDN: Minification failed

Line 8:21 Expected ")" to end URL token

**/
/* ================== CONTENEDOR PRINCIPAL ================== */
#DIVBestSellersProducts {
  background: url({{ 'Patron.png' | asset_url }}) center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}

/* ================== TITULOS ================== */
#DIVBestSellersProducts h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  letter-spacing: 1px;
  color: #1e1e1e;
  border-bottom: 2px solid #1e1e1e;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

#DIVBestSellersProducts .font-uppercase {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #555;
  text-transform: uppercase;
}

/* ================== CARRUSEL ================== */
#DIVBestSellersProducts .products-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

#DIVBestSellersProducts .products-row:active {
  cursor: grabbing;
}

#DIVBestSellersProducts .featured-product {
  flex: 0 0 300px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

#DIVBestSellersProducts .featured-product:hover {
  transform: translateY(-10px);
}

/* ================== IMAGEN ================== */
#DIVBestSellersProducts .product-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0px 8px 12px rgba(0,0,0,0.15));
}

#DIVBestSellersProducts .product-img:hover {
  transform: scale(1.05);
}

/* ================== ESTRELLAS ================== */
.product-listing-item-stars i {
  font-size: 14px;
  background: linear-gradient(45deg, #009B9B, #206969);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseStar 1.5s ease-in-out infinite;
}

@keyframes pulseStar {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* ================== TEXTO PRODUCTO ================== */
#DIVBestSellersProducts h5 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
  color: #222;
}

#DIVBestSellersProducts small {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #6c6c6c;
}

/* ================== BOTON ================== */
#DIVBestSellersProducts .link-btn {
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #1e1e1e;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

#DIVBestSellersProducts .link-btn:hover {
  background: #1e1e1e;
  color: #fff;
}

/* ================== HR ================== */
#DIVBestSellersProducts hr {
  border: none;
  height: 5px;
  background: linear-gradient(90deg, #0a0a0a, #7a7a79);
  border-radius: 3px;
  width: 80%;
  margin: 30px auto;
  opacity: 0.8;
}

/* ================== sroll ================== */
#DIVBestSellersProducts .products-row::-webkit-scrollbar {
  height: 8px; /* grosor */
}

#DIVBestSellersProducts .products-row::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05); /* fondo del riel */
  border-radius: 10px;
}

#DIVBestSellersProducts .products-row::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #009B9B, #206969); /* color principal */
  border-radius: 10px;
  transition: background 0.3s ease;
}

#DIVBestSellersProducts .products-row::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #00c2c2, #2f8f8f);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  #DIVBestSellersProducts .products-row {
    gap: 1.5rem;
  }

  #DIVBestSellersProducts .featured-product {
    flex: 0 0 240px;
  }

  .product-listing-item-stars i {
    font-size: 13px;
  }
}