#fw-section-featured-collection-a7a0f9be-1c79-4fdb-bbe4-9fd0f9af88b0 {

/* Container general - fundal cu un efect subtil */
.collection {
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(111,255,255,0.2));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
}

/* Fiecare card de produs */
.product-tile {
  background: linear-gradient(90deg, rgba(111,255,255,0.2), rgba(255,255,255,0.1), rgba(111,255,255,0.2));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

/* Efect hover pentru a da senzația de sticlă lucioasă */
.product-tile:hover {
  transform: translateY(0px) scale(1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  border-color: rgba(255, 255, 255, 1);
}

/* Imaginea produsului */
.product-tile .tile__image img {
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.product-tile:hover .tile__image img {
  transform: scale(1.05);
}

/* Titlul și prețul */
.tile__description {
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.tile__heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.tile__prices {
  font-size: 1rem;
  color: #e0e0e0;
}

/* Badge promo */
.product-tile {
  position: relative; /* ca badge-ul să fie ancorat la card */
  overflow: hidden;   /* ascunde marginile în plus */
}
/* Badge promo */ 
.badge { background: linear-gradient(90deg, blue, yellow, red); 
    color: #111; 
    font-size: 0.8rem; 
    padding: 0.3rem 0.6rem; 
    border-radius: 12px; 
    backdrop-filter: blur(6px); 
   -webkit-backdrop-filter: blur(6px);
}
/* Buton */
.button--outline {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.button--outline:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

}