/** Shopify CDN: Minification failed

Line 93:11 Expected identifier but found whitespace
Line 93:12 Unexpected "0"
Line 93:20 Unexpected "{"
Line 93:29 Expected ":"
Line 93:56 Expected ":"

**/


/* CSS from section stylesheet tags */
.video-product-carousel {
  margin: 40px 0;
}

.carousel-cell {
  margin: 0 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
  overflow: hidden; /* Prevent content cut */
}
.carousel-cell:hover {
  transform: translateY(-5px);
}

/* ✅ Fix video cutting issue */
.video-container {
  position: relative;
  padding-top: 135%; /* Keeps aspect ratio (4:5 like product images) */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Prevents stretching, fills area */
  border-radius: 12px 12px 0 0;
}

.mini-preview img {
  width: 100%;
  border-radius: 0 0 12px 12px;
}
.product-info {
  padding: 12px;
}
.product-info .title {
  font-weight: 600;
  font-size: 16px;
  margin: 6px 0;
}
.product-info .price {
  color: #d32f2f;
  margin: 4px 0;
  font-size: 15px;
}
.buy-now {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.buy-now:hover {
  background: #444;
}

/* Responsive carousel cell widths */
@media (min-width: 1024px) {
  .carousel-cell {
    width: 23%; /* 4 per row with spacing */
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .carousel-cell {
    width: 45%; /* 2 per row on tablets */
  }
}
@media (max-width: 767px) {
  .carousel-cell {
    width: 90%; /* 1 per row on mobile */
    margin: 0 auto {{ section.settings.card_spacing }}px auto; /* ✅ dynamic spacing */
  }
  .carousel-cell:last-child {
    margin-bottom: 0; /* ✅ remove extra bottom space for last card */
  }
}