/** Shopify CDN: Minification failed

Line 77:19 Expected identifier but found whitespace
Line 77:21 Unexpected "{"
Line 77:30 Expected ":"
Line 78:8 Expected identifier but found whitespace
Line 78:10 Unexpected "{"
Line 78:19 Expected ":"
Line 139:8 Expected identifier but found whitespace
Line 139:10 Unexpected "{"
Line 139:19 Expected ":"
Line 144:8 Expected identifier but found whitespace
... and 8 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:product-sale (INDEX:48) */
.video-carousel-wrapper {
  overflow: hidden;
}

.video-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 15px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 220px; /* Smaller for speed */
  border: 1px solid #eee;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.video-slide video {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.video-slide h3 {
  font-size: 14px;
  margin: 8px 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.8em;
  line-height: 1.4em;
}

.video-slide a.title-link {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.video-slide button {
  background-color: {{ section.settings.btn_bg }};
  color: {{ section.settings.btn_color }};
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.video-slide button:hover {
  opacity: 0.85;
}
/* END_SECTION:product-sale */

/* START_SECTION:video-product (INDEX:55) */
.scroll-carousel {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroll-carousel::-webkit-scrollbar {
  display: none;
}
.carousel-item {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 250px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #fff;
  cursor: pointer;
}
.carousel-item video {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.5;
}
.carousel-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  z-index: 2;
}
.carousel-overlay h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: {{ section.settings.title_color }};
}
.carousel-overlay p {
  margin: 0;
  font-size: 14px;
  color: {{ section.settings.button_color }};
}
.carousel-overlay form button {
  background: {{ section.settings.button_bg }};
  color: {{ section.settings.button_color }};
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 5px;
}
/* END_SECTION:video-product */