/* Gradient background for hero section */


.stylish-section-divider {
  position: relative;
  z-index: 1;
}
.stylish-section-divider:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 40px;
  background: linear-gradient(90deg, #e0eafc 0%, #cfdef3 100%);
  z-index: -1;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
}
.stylish-card-hover {
  transition: box-shadow 0.2s, transform 0.2s;
}
.stylish-card-hover:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
  transform: translateY(-6px) scale(1.03);
}
.stylish-product-img {
  border-radius: 1rem 1rem 0 0;
  transition: transform 0.2s;
}
.stylish-card-hover:hover .stylish-product-img {
  transform: scale(1.05);
}
.stylish-add-cart-btn {
  transition: background 0.2s, color 0.2s;
}
.stylish-add-cart-btn:hover {
  background: #0dcaf0;
  color: #fff;
}
/* Responsive tweaks */
@media (max-width: 767.98px) {
  .stylish-hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Product overlay on hover */
.product-card-link .product-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,202,240,0.08);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.product-card-link:hover .product-overlay {
  opacity: 1;
  display: flex !important;
}
/* Badge for new products */
.badge.bg-warning {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(255,193,7,0.12);
} 