.hero-caption {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;

  text-align: center;
  padding: 1.5rem 10%; 
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-radius: 0;
}

.hero-caption h2,
.hero-caption p {
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 1.2rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--border-color);
}
.product-card:hover {
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}
.product-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.product-image-link img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image-link img {
  transform: scale(1.05);
}
.product-discount,
.product-category {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}
.product-discount {
  left: 1rem;
  background-color: #dc3545;
}
.product-category {
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}
.product-info {
  padding: 1.25rem;
}
.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card .placeholder-img {
  height: 300px;
  background-color: #e9ecef;
}

/* --- Colección Destacada --- */
.collection-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.collection-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.collection-card:hover .collection-img {
  transform: scale(1.02);
}
.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 70%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  color: #fff;
  text-align: center;
}

/* --- Comodidades / Features --- */
.feature-card {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  height: 100%;
  border: 1px solid var(--border-color);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}
.feature-card h5 {
  font-weight: 700;
}

/* --- Logos Circulares --- */
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.logo-image-wrapper {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.logo-card:hover .logo-image-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
.logo-image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.logo-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.ad-banner {
  transition: filter 0.3s ease, transform 0.3s ease;
}
.ad-banner:hover {
  filter: brightness(1.05);
  transform: scale(1.01);
}

/* --- Animaciones --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes slideInUp {
  from {
    transform: translateY(30px) translateX(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
  }
}

/* --- Swiper --- */
.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
