/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 305:0 Unexpected "{"
Line 305:1 Expected identifier but found "%"

**/
{% stylesheet %}

/* ---------- GENERAL WRAPPER ---------- */
.product-carousel-wrapper {
  padding: 60px 20px;
  background: #ffffff;
}

.carousel-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* ---------- HEADING ABOVE CAROUSEL ---------- */
.carousel-heading-container {
  text-align: center;
  margin-bottom: 8px;
}

.carousel-heading {
  font-family: Galine, serif;
  color: #1a1a1a;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.carousel-subheading-container {
  text-align: center;
  margin-bottom: 30px;
}

.carousel-subheading {
  font-family: Jost, sans-serif;
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* ---------- CAROUSEL STRUCTURE ---------- */
.product-carousel-container {
  position: relative;
  margin-top: 40px;
}

.product-carousel {
  overflow: hidden;
  padding: 0 40px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.carousel-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}

.product-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ---------- PRODUCT IMAGE ---------- */
.product-image-wrapper {
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f9f9f9;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- WISHLIST BUTTON ---------- */
.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.wishlist-btn:hover {
  background: #f5f5f5;
  border-color: #1a1a1a;
}

.wishlist-btn svg {
  stroke: #1a1a1a;
}

/* ---------- PRODUCT INFO ---------- */
.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: Galine, serif;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 12px 0;
  color: #1a1a1a;
  line-height: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- PRICE & RATING ---------- */
.product-price-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: nowrap;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.price-compare {
  font-family: Jost, sans-serif;
  color: #8d8d8d;
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.price-current {
  font-family: Jost, sans-serif;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: Jost, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5E4074;
}

.star {
  color: #5E4074;
  font-size: 17px;
}

/* ---------- ADD TO CART BUTTON ---------- */
.add-to-cart-btn {
  width: 100%;
  padding: 16px 12px;
  background: #ffffff;
  border: 1.5px solid #1a1a1a;
  border-radius: 8px;
  font-family: Jost, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a1a1a;
}

.add-to-cart-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* ---------- NAVIGATION BUTTONS ---------- */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #1a1a1a;
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-nav-prev {
  left: 0;
}

.carousel-nav-next {
  right: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(50% - 10px);
  }
  .price-compare {
    font-size: 14px;
  }
  .price-current {
    font-size: 15px;
  }
  .product-rating {
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  .carousel-item {
    flex: 0 0 100%;
  }

  .product-carousel {
    padding: 0 50px;
  }

  .carousel-heading {
    font-size: 32px;
    line-height: 40px;
  }

  .carousel-subheading {
    font-size: 14px;
  }

  .product-carousel-wrapper {
    padding: 40px 20px;
  }
}

{% endstylesheet %}
