/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 20:13 Unexpected "{"
Line 20:22 Expected ":"
Line 20:29 Unexpected "{"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 23:13 Unexpected "{"
Line 23:22 Expected ":"
Line 24:13 Unexpected "{"
... and 9 more hidden warnings

**/


/* CSS from section stylesheet tags */
<style>
.blog-cards-{{ section.id }} {
  background: {{ section.settings.bg_colour }};
}
.blog-cards-{{ section.id }}__title      { font-size:1.4rem; font-weight:600; line-height:1.3; margin:0 0 .5rem; }
.blog-cards-{{ section.id }}__excerpt    { font-size:.95rem; color:#555; line-height:1.55; }
.blog-cards-{{ section.id }}__more       { font-weight:600; color:#c4882c; text-decoration:none; }
.blog-cards-{{ section.id }}__more:hover { text-decoration:underline; }
.blog-card:hover { box-shadow:0 6px 18px rgba(0,0,0,.12); transform:translateY(-4px); transition:.3s; }
.blog-card img  { height:220px; object-fit:cover; }
</style>
.manual-collections {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.manual-collections .card-img-top {
  border-radius: 0.5rem;
}
.reel-section {
  padding: 60px 15px;
  background-color: {{ section.settings.bg_color }};
}

.reel-section h2 {
  font-size: 2.5rem;
  text-align: center;
  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;
}