/** Shopify CDN: Minification failed

Line 12:19 Expected identifier but found whitespace
Line 12:21 Unexpected "{"
Line 12:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.products-carousel-section {
  background-color: {{ section.settings.background_color | default: '#f5f5f5' }};
  padding: 60px 0;
  width: 100%;
}

.products-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.products-carousel-header {
  text-align: center;
  margin-bottom: 50px;
}

.products-carousel-subtitle {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 10px 0;
}

.products-carousel-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.products-carousel-wrapper {
  position: relative;
}

.products-carousel-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: start;
}

.product-item {
  text-align: center;
  transition: transform 0.3s ease;
}

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

.product-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image-wrapper {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.product-item:hover .product-image {
  transform: scale(1.05);
}

.product-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* Responsivo para Tablet */
@media screen and (max-width: 1024px) {
  .products-carousel-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .products-carousel-title {
    font-size: 28px;
  }
}

/* Responsivo para Mobile */
@media screen and (max-width: 768px) {
  .products-carousel-section {
    padding: 40px 0;
  }
  
  .products-carousel-container {
    padding: 0 15px;
  }
  
  .products-carousel-header {
    margin-bottom: 30px;
  }
  
  .products-carousel-title {
    font-size: 24px;
  }
  
  .products-carousel-subtitle {
    font-size: 12px;
  }
  
  .products-carousel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .product-item {
    flex: 0 0 200px;
    scroll-snap-align: start;
  }
  
  .product-image-wrapper {
    margin-bottom: 15px;
  }
  
  .product-title {
    font-size: 12px;
  }
}

/* Scrollbar personalizada para mobile */
@media screen and (max-width: 768px) {
  .products-carousel-grid::-webkit-scrollbar {
    height: 4px;
  }
  
  .products-carousel-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 2px;
  }
  
  .products-carousel-grid::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 2px;
  }
  
  .products-carousel-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.5);
  }
}

/* Animação de entrada */
.product-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }
.product-item:nth-child(4) { animation-delay: 0.4s; }
.product-item:nth-child(5) { animation-delay: 0.5s; }

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