/** Shopify CDN: Minification failed

Line 121:0 Unexpected "@media"
Line 281:1 Expected "}" to go with "{"

**/
/* assets/homepage.css */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-carousel__wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-carousel__slide {
  flex: 0 0 100%;
  position: relative;
  height: 80vh;
  min-height: 500px;
}

.parallax-container {
  overflow: hidden;
}

.parallax {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}

.hero-carousel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

/* Animaciones */
.animate--fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.animate--slide-in {
  opacity: 0;
  transform: translateY(20px);
  animation: slideIn 0.8s ease forwards;
}

.animate--fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Resto de estilos para banners y carruseles */
.full-width-banner {
  width: 100%;
  margin: 2rem 0;
}

.dual-banners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.collection-carousel {
  padding: 4rem 0;
}

.new-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* Estilos responsivos */
@media screen and (max-width: 768px) {
  .hero-carousel__slide
  /* Continuación de assets/homepage.css */
@media screen and (max-width: 768px) {
  .hero-carousel__slide {
    height: 60vh;
    min-height: 400px;
  }

  .hero-carousel__content {
    width: 90%;
  }

  .dual-banners__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .new-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Estilos de navegación del carrusel */
.hero-carousel__controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 2;
}

.hero-carousel__prev,
.hero-carousel__next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel__prev:hover,
.hero-carousel__next:hover {
  background: white;
  transform: scale(1.1);
}

.hero-carousel__dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-carousel__dot.active {
  background: white;
  transform: scale(1.2);
}

/* Estilos para el carrusel de colecciones */
.collection-carousel__wrapper {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.collection-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-card__image {
  position: relative;
  padding-bottom: 100%;
}

.collection-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos para la sección de productos nuevos */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card__image {
  position: relative;
  padding-bottom: 100%;
}

.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__info {
  padding: 1rem;
  text-align: center;
}

.product-card__title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text);
}

.product-card__price {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: var(--color-accent);
}