/** Shopify CDN: Minification failed

Line 54:17 Unexpected "{"
Line 54:26 Expected ":"
Line 54:33 Unexpected "{"

**/
/* Product Carousel Featured Section */
.product-carousel-featured {
  padding: var(--section-padding-top, 60px) 0 var(--section-padding-bottom, 60px);
  background-color: #ffffff;
}

.product-carousel-featured .page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-heading-featured {
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  margin: 0;
  color: #000000;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #000000;
}

.product-carousel-container {
  position: relative;
}

/* Swiper Custom Styles */
.product-swiper-{{ section.id }} {
  overflow: visible;
  padding-bottom: 50px; /* Space for dots */
}

/* Product Card Styles */
.product-card-featured {
  background-color: #ffffff;
  /* Removed border for cleaner look */
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-featured__link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
}

.product-card-featured__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Landscape rectangle as per image */
  overflow: hidden;
  background-color: #f9f9f9;
  border-radius: 4px; /* Subtle radius */
  margin-bottom: 12px;
}

.product-card-featured__image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Contain to show full product within box */
  mix-blend-mode: multiply; /* Helps pngs blend if background is not pure white */
  transition: transform 0.4s ease;
}

.product-card-featured:hover .product-card-featured__image {
  transform: scale(1.03);
}

.product-card-featured__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.product-card-featured__badge {
  position: absolute;
  top: 10px;
  left: 10px; /* Left aligned usually preferred */
  background-color: #000;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 2px;
  text-transform: uppercase;
  z-index: 2;
}

/* Color Swatches - Below Image */
.product-card-featured__colors {
  display: flex;
  justify-content: center; /* Centered as per design */
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 24px;
}

.color-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  /* No border, just color */
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 0 0 1px #e0e0e0; /* Subtle ring */
}

.color-swatch-more {
  font-size: 11px;
  color: #666;
}

.product-card-featured__info {
  padding: 0 4px; /* Minimal padding */
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Title and Pack Row */
.product-card-featured__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.product-card-featured__title {
  font-family: 'Blauer Nue', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: none;
  margin: 0;
  color: #000000;
  line-height: 1.3;
  flex: 1;
}
.product-card-featured__pack-badge {
  font-size: 11px;
  color: #666;
  background-color: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Rating */
.product-card-featured__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}

.rating-stars {
  font-size: 14px;
}

.rating-text {
  color: #888;
  font-size: 12px;
}

/* Price */
.product-card-featured__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.product-card-featured__price-regular,
.product-card-featured__price-sale {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}

.product-card-featured__price-compare {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.product-card-featured__actions {
  margin-top: auto;
}

.product-card-featured__add-to-cart {
  width: 100%;
  padding: 12px 0;
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0; /* Sharp edges or slight radius */
}

.product-card-featured__add-to-cart:hover:not(.button--disabled) {
  background-color: #333333;
}

.product-card-featured__add-to-cart.button--disabled {
  background-color: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

/* Swiper Navigation - Hidden as per clean design usually, but user asked for dots */
.swiper-button-prev,
.swiper-button-next {
  display: none; /* Hide arrows if pagination dots are primary */
}

/* Swiper Pagination - Dots */
.swiper-pagination {
  bottom: 0 !important;
  position: absolute;
  text-align: center;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 24px;  /* Elongated dash/dot */
  height: 4px;
  background-color: #e0e0e0;
  opacity: 1;
  border-radius: 2px;
  margin: 0 4px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #000000;
  width: 24px;
}

.no-products-message {
  text-align: center;
  padding: 60px 20px;
  font-size: 16px;
  color: #666666;
}

/* Responsive */
@media screen and (max-width: 990px) {
  .section-heading-featured {
    font-size: 20px;
  }
}

@media screen and (max-width: 749px) {
  .product-card-featured__image-wrapper {
    aspect-ratio: 1; /* Square on mobile usually better */
  }
}
@media (max-width: 575px) {
  .product-card-featured__header-row {
    gap: 6px;
    flex-direction: column;
  }
}