/** Shopify CDN: Minification failed

Line 820:0 Unexpected "}"

**/
/* Enhanced Beauty Product Features CSS */

/* Product Badges */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 16px;
  line-height: 1.2;
}

.badge-new {
  background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
  color: white;
}

.badge-bestseller {
  background: linear-gradient(45deg, #FFD700, #FFC107);
  color: #333;
}

.badge-sale {
  background: linear-gradient(45deg, #E91E63, #F06292);
  color: white;
}

.badge-cruelty-free {
  background: linear-gradient(45deg, #4CAF50, #66BB6A);
  color: white;
}

.badge-vegan {
  background: linear-gradient(45deg, #8BC34A, #AED581);
  color: white;
}

.badge-limited {
  background: linear-gradient(45deg, #9C27B0, #BA68C8);
  color: white;
}

/* Stock Indicator */
.stock-indicator {
  margin: 0.75rem 0;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.stock-status.in-stock {
  background: #E8F5E8;
  color: #2E7D32;
}

.stock-status.low-stock {
  background: #FFF3E0;
  color: #F57C00;
}

.stock-status.very-low-stock {
  background: #FFEBEE;
  color: #D32F2F;
  animation: pulse 2s infinite;
}

.stock-status.out-of-stock {
  background: #FAFAFA;
  color: #757575;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Shipping & Guarantees */
.shipping-guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.shipping-item:hover {
  transform: translateY(-2px);
}

.shipping-item.priority {
  border: 2px solid var(--accent-color);
}

.shipping-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.shipping-content strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.shipping-content span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Enhanced Color Swatches */
.color-swatch-section {
  margin: 1.5rem 0;
}

.color-swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.color-swatch-wrapper {
  position: relative;
}

.color-swatch {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
}

.color-swatch:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.color-swatch input {
  display: none;
}

.color-swatch input:checked + .swatch-color {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.3);
}

.swatch-color {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0 auto 0.5rem;
  transition: all 0.2s ease;
}

.swatch-name {
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
}

.color-swatch.unavailable {
  opacity: 0.5;
  pointer-events: none;
}

.swatch-unavailable {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.selected-color {
  color: var(--accent-color);
  font-weight: 600;
}

/* Reviews Summary Enhancement */
.reviews-summary {
  margin: 1rem 0;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.stars-container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stars-container i {
  font-size: 1rem;
  color: #e0e0e0;
}

.stars-container i.filled {
  color: #FFD700;
}

.stars-container i.half-filled {
  color: #FFD700;
  position: relative;
}

.stars-container i.empty {
  color: #e0e0e0;
}

.rating-number {
  font-weight: 600;
  color: var(--text-primary);
  margin-left: 0.5rem;
}

.review-count {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.recent-review {
  background: var(--secondary-color);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 0.75rem;
  border-left: 3px solid var(--accent-color);
}

.review-text {
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
}

.reviewer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.no-reviews .stars-container i {
  color: #e0e0e0;
}

/* Ingredient Highlights */
.ingredient-highlights {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f4f0, #ebe2d6);
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.ingredients-title {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ingredients-title::before {
  content: '🧪';
  font-size: 1.5rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.ingredient-item {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ingredient-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ingredient-item i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.ingredient-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.25rem;
}

.ingredient-benefit {
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.3;
}

.skin-type-info {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(139, 115, 85, 0.1);
  border-radius: 8px;
  text-align: center;
  font-size: 0.875rem;
}

/* Bundle Recommendations */
.bundle-recommendations {
  margin: 2rem 0;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.bundle-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.bundle-header h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bundle-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.bundle-item {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bundle-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.bundle-product {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.bundle-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.bundle-info {
  flex: 1;
}

.bundle-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.bundle-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
}

.btn-add-bundle {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--secondary-color);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-bundle:hover {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.bundle-savings {
  margin-top: 1.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #E8F5E8, #C8E6C9);
  border-radius: 8px;
  text-align: center;
  color: #2E7D32;
  font-size: 0.9rem;
}

.bundle-savings i {
  color: #4CAF50;
  margin-right: 0.5rem;
}

/* Hide number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Container and layout fixes */
  .container {
    padding: 0 1rem;
  }
  
  /* Product layout improvements */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .product-images {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .product-info {
    padding: 0;
    width: 100%;
  }
  
  /* Product badges mobile */
  .product-badges {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    justify-content: flex-start;
  }
  
  .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
  }
  
  /* Typography mobile */
  .product-brand {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  
  .product-title {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  
  .product-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  /* Reviews mobile */
  .reviews-summary {
    margin: 0.75rem 0;
  }
  
  .rating-stars {
    font-size: 0.9rem;
  }
  
  .rating-text {
    font-size: 0.8rem;
  }
  
  /* Price mobile */
  .price-display {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .current-price {
    font-size: 1.6rem;
  }
  
  .original-price {
    font-size: 1.1rem;
  }
  
  .price-savings {
    font-size: 0.8rem;
  }
  
  /* SKU mobile */
  .sku-display {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  
  /* Stock indicator mobile */
  .stock-indicator {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1rem;
  }
  
  /* Color swatches mobile */
  .color-swatches {
    margin: 1rem 0;
  }
  
  .color-swatch {
    width: 35px;
    height: 35px;
  }
  
  /* Quantity selector mobile */
  .quantity-section {
    margin: 1rem 0;
  }
  
  .quantity-selector {
    max-width: 120px;
  }
  
  .quantity-btn {
    width: 35px;
    height: 35px;
  }
  
  /* Buttons mobile */
  .product-form .btn {
    padding: 0.875rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .btn-secondary {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Product actions mobile */
  .product-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }
  
  /* Shipping guarantees mobile */
  .shipping-guarantees {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.875rem;
    margin: 1rem 0;
  }
  
  .guarantee-item {
    padding: 0.5rem;
    text-align: center;
  }
  
  .guarantee-item i {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
  }
  
  .guarantee-text {
    font-size: 0.75rem;
  }
  
  /* Complete the Look mobile */
  .complete-the-look-section {
    margin: 1rem 0;
    padding: 1rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .recommendation-card {
    padding: 0.75rem;
  }
  
  .rec-image {
    height: 90px;
  }
  
  .rec-title {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .rec-price {
    font-size: 0.85rem;
  }
  
  .rec-category {
    font-size: 0.65rem;
  }
  
  /* Virtual try-on mobile */
  .virtual-try-on-section {
    margin: 1rem 0;
    padding: 1rem;
  }
  
  .virtual-try-on-btn {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Ingredient highlights mobile */
  .ingredient-highlights {
    margin: 1rem 0;
    padding: 1rem;
  }
  
  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .ingredient-item {
    font-size: 0.75rem;
    padding: 0.4rem;
  }
  
  /* Social sharing mobile */
  .share-menu {
    width: 90vw;
    max-width: 350px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .share-options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .share-btn-social {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }
  
  /* Description section mobile */
  .product-description-full {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .description-content {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .usage-section {
    margin-top: 1.5rem;
  }
  
  .usage-section h3 {
    font-size: 1.2rem;
  }
  
  .usage-steps li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  /* Accordion mobile */
  .product-details-accordion {
    margin-top: 1rem;
  }
  
  .detail-item summary {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
  
  .detail-content {
    padding: 0.875rem;
    font-size: 0.85rem;
  }
}
  
  .color-swatches-grid {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.5rem;
  }
  
  .swatch-color {
    width: 40px;
    height: 40px;
  }
  
  .ingredients-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }
  
  .ingredient-item {
    padding: 0.75rem;
  }
  
  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bundle-product {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .bundle-image {
    width: 50px;
    height: 50px;
  }
}

/* Additional Enhancement Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ingredient-highlights,
.bundle-recommendations,
.shipping-guarantees {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--accent-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}