/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:reel-videos (INDEX:59) */
.reel-section {
  padding: 60px 15px;
  background-color: {{ section.settings.bg_color }};
}

.reel-section h2 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 40px;
  font-weight: 600;
  color: #333;
}

.reel-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 15px;
  padding-bottom: 20px;
}

.reel-carousel::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  flex: 0 0 90vw;
  max-width: 280px;
  height: 444px;
  scroll-snap-align: start;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
  .reel-card {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: none;
  }
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mute-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
/* END_SECTION:reel-videos */