/** Shopify CDN: Minification failed

Line 15:0 All "@import" rules must come first

**/
/* Remove underline from product links in featured-collection-block */
.dynamic-featured-collection .product-link {
  text-decoration: none !important;
  color: inherit;
}
/* Only reduce right padding for All Products (collection) page */
.main-collection-product-grid-wrapper .dynamic-featured-collection .product-grid {
  padding-right: 8px !important;
}
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@200;300;400;500;600;700;800;900&display=swap');
/* Scoped styles for dynamic featured section only */
.dynamic-featured-collection * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dynamic-featured-collection .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}
.dynamic-featured-collection .product-wrapper {
  width: 100%;
}
.dynamic-featured-collection .image-container {
  position: relative;
  width: 100%;
  height: 225px;
}
.dynamic-featured-collection .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.dynamic-featured-collection .hot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  color: black;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.hot-badge { display: none !important; }
.dynamic-featured-collection .wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  cursor: pointer;
}
.dynamic-featured-collection .wishlist-icon svg {
  width: 16px;
  height: 16px;
  stroke: black;
  stroke-width: 2;
  fill: none;
}
.dynamic-featured-collection .add-to-cart {
  width: 100%;
  margin-top: 8px;
  background: black;
  color: white;
  padding: 8px 0;
  font-family: 'Heebo', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: -0.4px;
  text-align: center;
  border: none;
  cursor: pointer;
}
.dynamic-featured-collection .add-to-cart:hover {
  background: #333;
}
.dynamic-featured-collection .product-info {
  margin-top: 8px;
}
.dynamic-featured-collection .stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  color: #333;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
.dynamic-featured-collection .stars svg {
  width: 16px;
  height: 16px;
  opacity: 1;
  transform: rotate(0deg);
}
.dynamic-featured-collection .stars .filled {
  color: #FFD700;
}
.dynamic-featured-collection .product-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  margin-bottom: 3px;
  color: #141718;
}
.dynamic-featured-collection .product-subtitle {
  font-family: 'Heebo', sans-serif;
  font-weight: 300px;
  font-style: normal;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #141718;
  margin-bottom: 8px;
}
.dynamic-featured-collection .price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
  white-space: nowrap;
}
/* Keep wishlist icon visible by default; hide via theme if needed */
.dynamic-featured-collection .current-price {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #121212;
}
.dynamic-featured-collection .original-price {
  position: relative;
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #9A9999;
}
.dynamic-featured-collection .original-price::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 115%;
  height: 2px;
  background: #888;
  transform: rotate(-10deg);
  transform-origin: center;
}
