/** Shopify CDN: Minification failed

Line 23:14 Expected identifier but found whitespace
Line 23:16 Unexpected "{"
Line 23:25 Expected ":"
Line 23:51 Expected ":"
Line 24:17 Expected identifier but found whitespace
Line 24:19 Unexpected "{"
Line 24:28 Expected ":"
Line 24:57 Expected ":"
Line 35:14 Expected identifier but found whitespace
Line 35:16 Unexpected "{"
... and 11 more hidden warnings

**/


/* CSS from section stylesheet tags */
.single-image-block-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.single-image-container img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.featured-carousel-section {
  padding: 20px 0;
  font-family: {{ section.settings.font_family.family }};
  color: {{ section.settings.text_color }};
}

.featured-carousel-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.horizontal-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 0 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.horizontal-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  text-align: center;
  background: #fff;
  border: 4px solid {{ section.settings.border_color }};
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  outline: 2px solid red;
  outline-offset: -6px;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card p {
  margin-top: 10px;
  font-size: 1rem;
  color: {{ section.settings.text_color }};
}

.product-card p a {
  text-decoration: none;
  color: inherit;
}

.badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: red;
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 50%;
  transform: rotate(45deg);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge.sale {
  background: red;
  color: white;
}

.badge svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f0f0f0;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  transition: background 0.3s;
}
.carousel-arrow:hover {
  background: red;
  color: #fff;
}
.carousel-arrow.left {
  left: 0;
}
.carousel-arrow.right {
  right: 0;
}

.btn-view-all {
  background-color: black;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.btn-view-all:hover {
  background-color: #333;
}

@media screen and (max-width: 768px) {
  .product-card {
    width: calc(100% / 4 - 20px);
  }
  .horizontal-scroll-wrapper {
    padding: 0 10px;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .product-card {
    width: calc(100% / 2 - 20px);
  }
}