/* CSS Específico para Collares */

/* Hero Section */
.hero-collares {
  height: 60vh;
  background: linear-gradient(rgba(249, 226, 214, 0.6), rgba(249, 226, 214, 0.8)), 
              url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: var(--text-taupe-dark);
  position: relative;
  overflow: hidden;
}

.hero-collares-content h1 {
  letter-spacing: 12px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 2px #fff;
  font-family: 'Playfair Display', serif;
}

/* Featured Section */
.featured-img-container {
  max-width: 450px;
  margin: 0 auto;
  border: 1px solid rgba(176, 150, 135, 0.2);
  transition: transform 0.5s ease;
}

.featured-img-container:hover {
  transform: scale(1.02);
}

.title-gold {
  color: #B09687;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

/* Card Estilo Minimalista y Premium */
.collar-card {
  background: var(--base-white);
  border: 1px solid rgba(176, 150, 135, 0.1);
  padding: 15px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.collar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(176, 150, 135, 0.15);
  border-color: rgba(176, 150, 135, 0.3);
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  background-color: var(--base-nude);
}

.img-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collar-card:hover .img-wrapper img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.collar-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay .btn-gold {
  padding: 10px 25px;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.info p {
  font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  .mt-md-5 {
    margin-top: 0 !important;
  }
  .collar-card {
    margin-bottom: 20px;
  }
  .featured-img-container {
    max-width: 100%;
  }
}

