/* Add custom CSS styles below */ 
/* Reset inner parts to transparent so background shows */
.footer-is-custom .store-footer .store-footer__inner,
.footer-is-custom .store-footer .store-footer__contacts-row,
.footer-is-custom .store-footer .store-footer__newsletter {
  background:transparent !important;
  color: #bc0071 !important;
}

/* Default footer background (desktop) */
.footer-is-custom .store-footer {

  
   background: linear-gradient(135deg, #ff9a9e, #fad0c4) !important; 
  background-image: url('https://res.cloudinary.com/dmbb5bbmr/image/upload/v1756028225/1345_vcuduv.png') !important;
  background-size: cover;
  background-position: top;
}

/* Glass effect for footer-bottom */
.footer-is-custom .store-footer .footer-bottom {
 /* semi-transparent white */
  background: rgba(255, 255, 255, 0.2) !important; 
  backdrop-filter: blur(10px);          /* glass blur */
  -webkit-backdrop-filter: blur(10px);  /* Safari support */
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-is-custom .store-footer .footer-rights p{
  color: #bc0071 !important;
}

/* Mobile background image */
@media (max-width: 768px) {
  .footer-is-custom .store-footer {
    background:rgb(255, 222, 225) !important;
    background-size: contain !important;   /* show full image */
    background-repeat: no-repeat !important;
    background-position:bottom center !important;
    background-image: url('https://res.cloudinary.com/dmbb5bbmr/image/upload/v1756028224/1346_sj53he.png') !important;
  }
  
}

/* Product card styles */
.product-card {
  border: none !important;   background: #fff;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden !important;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-4px);
  border-radius: 12px; 
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;  
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero text color */
body.slider_has_overlay .advanced-slider .swiper-slide * {
	color: #c9a23f !important;
	color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
body.slider_has_overlay .advanced-slider .swiper-slide h2 {
	font-size: 1.5rem !important;
}
}

.footer-is-custom .store-footer .store-footer__inner, .footer-is-custom .store-footer .store-footer__contacts-row, .footer-is-custom .store-footer .store-footer__newsletter {
  border-bottom-color: rgba(188, 0, 113, 0.2);
}