/** Shopify CDN: Minification failed

Line 32:14 Expected identifier but found whitespace
Line 32:16 Unexpected "{"
Line 32:25 Expected ":"
Line 32:59 Expected ":"
Line 33:17 Expected identifier but found whitespace
Line 33:19 Unexpected "{"
Line 33:28 Expected ":"
Line 33:65 Expected ":"
Line 39:15 Expected identifier but found whitespace
Line 39:17 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* 
  1) Remove any default margins your theme might add to sections 
     so there's no extra gap between sections.
*/
.shopify-section.featured-collections-section {
  margin: 0 !important;
}

/* Section styling */
.featured-collections-section {
  background-color: #000;
  width: 100%;
  box-sizing: border-box;
  padding-top: {{ section.settings.section_padding_top }}px !important;
  padding-bottom: {{ section.settings.section_padding_bottom }}px !important;
}

.fc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: {{ section.settings.section_padding_sides }}px;
  padding-right: {{ section.settings.section_padding_sides }}px;
}

/* Header */
.fc-header {
  text-align: center;
  margin-bottom: 15px; /* Adjust if needed */
}
.fc-header h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #EABB1E;
}
.fc-header p {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}

/* Slider (horizontal scroll, no scrollbar) */
.fc-slider {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-right: 20px; /* So last item isn't cut off */
}
.fc-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Slides */
.fc-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
  width: 220px;
}

/* Collection link */
.fc-collection-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image container for zoom effect */
.fc-image {
  overflow: hidden;
  border-radius: 12px;
}
.fc-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid #444;
  transition: transform 0.3s ease;
}
.fc-image:hover img {
  transform: scale(1.05);
}

/* Collection title */
.fc-info h3 {
  margin: 10px 0 0;
  font-size: 1.1rem;
  color: #fff;
}

/* Dot Navigation */
.fc-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.fc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.fc-dot:hover {
  background: #666;
}
.fc-dot.active {
  background: #EABB1E;
}

/* Show 2 items on mobile screens */
@media (max-width: 768px) {
  .fc-slide {
    width: calc(50% - 10px);
  }
  .fc-slider {
    gap: 10px;
    padding-right: 10px;
  }
}