/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 171:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.collection-featured-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.collection-featured-layout {
  display: flex;
  flex-wrap: no-wrap;
  gap: 2rem;
  align-items: flex-start;
}

.collection-featured-image {
  flex: 0 0 60%;
}

.collection-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.collection-featured-content {
  flex: 0 0 40%;
}

.collection-featured-content h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.collection-featured-content .price {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  color: #111;
}

.order-section {
  margin-top: 1.5rem;
}

.order-section label {
  display: block;
  margin: 0.5rem 0 0.2rem;
}

.order-section input[type="number"],
.order-section select {
  padding: 8px;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 200px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.order-section button {
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.order-section button:hover {
  background: #333;
}
/* Quantity Stepper */
.quantity-wrapper {
  display: flex;
  align-items: center;
  max-width: 160px;
  margin-bottom: 1rem;
}
.quantity-wrapper input {
  text-align: center;
  width: 60px;
  border: 1px solid #ccc;
  border-radius: 0;
}
.qty-btn {
  width: 36px;
  height: 36px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1;
  user-select: none;
}
.qty-btn:hover {
  background: #ddd;
}
  .quantity-delete-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.delete-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
}

.delete-btn:hover {
  color: #d00;
}


/* Color Swatches */
.color-swatches {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.color-swatch input[type="radio"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.color-swatch input[type="radio"]:checked + span {
  outline: 2px solid #333;
}
.color-swatch:hover {
  border-color: #333;
}

@media (max-width: 768px) {
  .collection-featured-layout {
    flex-direction: column;
  }
  .collection-featured-image,
  .collection-featured-content {
    flex: 1 1 100%;
  }
}
</style>