/** Shopify CDN: Minification failed

Line 74:8 Expected identifier but found whitespace
Line 74:10 Unexpected "{"
Line 74:19 Expected ":"
Line 122:12 Expected identifier but found whitespace
Line 122:14 Unexpected "{"
Line 122:23 Expected ":"
Line 122:47 Expected ":"
Line 145:13 Expected identifier but found whitespace
Line 145:15 Unexpected "{"
Line 145:24 Expected ":"
... and 20 more hidden warnings

**/


/* CSS from section stylesheet tags */
.collection-tabs-section {
  padding: 1.5rem 0 0;
}

.collection-tabs-section .tabs-header {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
}

.collection-tabs-section .tabs-header::-webkit-scrollbar {
  display: none;
}

.collection-tabs-section .tab-link {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid #d1d1d1;
  background: #ffffff;
  color: #000000;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.collection-tabs-section .tab-link.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
/* SCROLL-SNAP SLIDER CORE */
.slider-container {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-heading {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.slider-heading h2 {
  font-size: 2.5rem;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 150% !important;
  color: {{ section.settings.title_color }};
  cursor: pointer !important;
  letter-spacing: .02em !important;
  font-family: Rektorat Heavy, Swiss Regular, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  margin: 0;
}

.slider-section {
  padding: 2rem 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  padding: 0 1rem 0.5rem;
}

.slider-item {
  flex: 0 0 80%;
  max-width: 80%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .slider-item {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (min-width: 1024px) {
  .slider-item {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

/* CARD STYLING */
.product-card {
  background: #fafafa;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  font-size: {{ section.settings.font_size }}px;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 150% !important;
  color: #6d6e70 !important;
  cursor: pointer !important;
  letter-spacing: .02em !important;
  font-family: Rektorat Heavy, Swiss Regular, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: bold;
}

.badge {
  background: {{ section.settings.badge_color }};
  color: {{ section.settings.badge_text_color }};
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.card-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
.card-image img {
  width: auto;
  max-width: 100%;
  height: {{ section.settings.desktop_img_height }}px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.card-image .secondary-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

/* Optional hover image swap */
.product-card:hover .primary-img { opacity: 0; }
.product-card:hover .secondary-img { opacity: 1; }

@media (max-width: 767px) {
  .card-image img {
    height: {{ section.settings.mobile_img_height }}px;
    aspect-ratio: 9 / 9;
    object-fit: cover;
  }
}

.card-footer {
  margin-top: auto;
  transition: opacity 0.3s ease;
  position: relative;
}

.title-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700 !important;
  color: {{ section.settings.price_color }};
}

.product-title {
  margin: 0;
  color: {{ section.settings.title_color }};
  text-transform: {{ section.settings.text_transform }};
}

.rating {
  margin-top: 0.5rem;
}