/** Shopify CDN: Minification failed

Line 189:0 Unexpected "("
Line 198:2 Comments in CSS use "/* ... */" instead of "//"
Line 201:2 Comments in CSS use "/* ... */" instead of "//"
Line 206:2 Comments in CSS use "/* ... */" instead of "//"

**/
/* 
  Add here your own custom css styles
*/

/* Product Card Optimizations */
.product-card {
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Improved Product Card Form in Quiz Section */
.quiz-btn.accent {
  border: none;
  border-radius: var(--bs-border-radius, 0.375rem);
  background: var(--bs-primary, #0d6efd);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quiz-btn.accent:hover {
  background: var(--bs-primary-dark, #0b5ed7);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.quiz-btn.accent:active {
  transform: translateY(0);
}

/* Product Card Tags Optimization */
.product-tag {
  backdrop-filter: blur(4px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 120px;
}

/* Sibling Images Optimization */
.product-siblings {
  align-items: center;
}

.sibling-image img {
  transition: transform 0.2s ease;
}

.sibling-image:hover img {
  transform: scale(1.1);
}

.sibling-more {
  font-family: var(--bs-font-sans-serif);
  user-select: none;
}

/* Product Subtitle Optimization */
.product-subtitle {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Responsive Product Card Improvements */
@media (max-width: 576px) {
  .product-card {
    margin-bottom: 1rem;
  }
  
  .product-tag {
    max-width: 100px;
    font-size: 10px !important;
  }
  
  .sibling-image, .sibling-more {
    width: 28px !important;
    height: 28px !important;
  }
  
  .product-subtitle {
    font-size: 11px !important;
  }
}

/* Product Card in AI Quiz Section Specific Improvements */
.quiz-results .product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--bs-border-radius, 0.375rem);
  padding: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-results .product-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced Add to Cart Button for Quiz */
.quiz-results .quiz-btn.accent {
  background: linear-gradient(135deg, var(--bs-primary, #0d6efd), var(--bs-info, #0dcaf0));
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  font-weight: 600;
}

.quiz-results .quiz-btn.accent:hover {
  background: linear-gradient(135deg, var(--bs-primary-dark, #0b5ed7), var(--bs-info-dark, #087990));
  border-color: rgba(255, 255, 255, 0.5);
}

/* Accessibility improvements */
.product-card a:focus,
.quiz-btn:focus {
  outline: 2px solid var(--bs-primary, #0d6efd);
  outline-offset: 2px;
}

/* Loading state for product cards */
.product-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-card.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation for product cards appearing in quiz results */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.recommendation-item {
  animation: fadeInUp 0.6s ease forwards;
}

.recommendation-item:nth-child(2) {
  animation-delay: 0.1s;
}

.recommendation-item:nth-child(3) {
  animation-delay: 0.2s;
}

.recommendation-item:nth-child(4) {
  animation-delay: 0.3s;
}
(function () {

  function cleanVariantInventory() {
    document.querySelectorAll('.product-dropup-selector-inventory').forEach(function (el) {
      el.innerHTML = '';
      el.style.display = 'none';
    });
  }

  // Run on load
  document.addEventListener('DOMContentLoaded', cleanVariantInventory);

  // Run when dropdown opens or variants reload
  document.body.addEventListener('click', function () {
    setTimeout(cleanVariantInventory, 50);
  });

  // Observe dynamic DOM changes
  const observer = new MutationObserver(function () {
    cleanVariantInventory();
  });

  observer.observe(document.body, {
    childList: true,
    subtree: true
  });

})();
