/** Shopify CDN: Minification failed

Line 178:0 Unexpected "}"

**/
.product-carousel-3d {
  width: 100%;
  padding: 60px 20px;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  perspective: 1200px;
  width: 100%;
  height: 500px;
  position: relative;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
  position: absolute;
  width: 280px;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backface-visibility: hidden;
  cursor: grab;
}

.carousel-item:active {
  cursor: grabbing;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 320px;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.product-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
}

.product-info {
  text-align: center;
  padding: 20px 10px 0;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
}

.product-price {
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 15px;
}

.subscribe-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.subscribe-button:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: #333;
  transform: scale(1.3);
}

.dot:hover {
  background: #666;
}

@media (max-width: 768px) {
  .product-carousel-3d {
    padding: 40px 10px;
  }
  
  .carousel-container {
    height: 450px;
    perspective: 1000px;
  }
  
  .carousel-item {
    width: 220px;
  }
  
  .product-image-link {
    height: 260px;
  }
  
  .product-title {
    font-size: 16px;
  }
  
  .product-price {
    font-size: 14px;
  }
  
  .subscribe-button {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    width: 200px;
  }
  
  .product-image-link {
    height: 240px;
  }
}
}