/** Shopify CDN: Minification failed

Line 269:2 Unexpected "<"
Line 272:2 Comments in CSS use "/* ... */" instead of "//"
Line 274:4 Comments in CSS use "/* ... */" instead of "//"
Line 281:5 Unexpected ","
Line 288:5 Unexpected ","
Line 295:5 Unexpected ","
Line 302:5 Unexpected ","
Line 309:5 Unexpected ","
Line 316:5 Unexpected ","
Line 323:5 Unexpected ","
... and 93 more hidden warnings

**/
  /* Enhanced Ingredients Section */
  .ingredients-section-enhanced {
    padding: var(--spacing-3xl) 0;
    background: #fdfbf7;
  }

  .ingredients-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
  }

  .ingredients-intro {
    font-size: 1.0625rem;
    color: var(--color-graphite);
    max-width: 600px;
    margin: 0 auto;
  }

  /* Interactive Ingredient Grid */
  .ingredients-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
  }

  .ingredient-pill {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
  }

  .ingredient-pill:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(86, 126, 115, 0.15);
  }

  .ingredient-pill.hero-ingredient {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(201, 165, 92, 0.05) 0%, rgba(201, 165, 92, 0.1) 100%);
  }

  .ingredient-pill.hero-ingredient::before {
    content: '⭐';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.75rem;
  }

  .ingredient-pill-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2c2c2c;
    display: block;
    margin-bottom: 2px;
  }

  .ingredient-pill-purpose {
    font-size: 0.75rem;
    color: var(--color-graphite);
    display: block;
  }

  /* Ingredient Modal */
  .ingredient-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.2s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .ingredient-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .ingredient-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
  }

  .ingredient-modal-close:hover {
    background: #e5e7eb;
    color: #2c2c2c;
  }

  .ingredient-modal-body {
    padding: var(--spacing-2xl);
  }

  .ingredient-modal-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: var(--spacing-xs);
  }

  .ingredient-modal-category {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
  }

  .ingredient-modal-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-graphite);
    margin-bottom: var(--spacing-lg);
  }

  .ingredient-modal-benefit {
    background: rgba(86, 126, 115, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    margin-bottom: var(--spacing-lg);
  }

  .ingredient-modal-benefit strong {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 4px;
  }

  .ingredient-modal-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
  }

  .ingredient-modal-link:hover {
    color: var(--color-accent);
  }

  /* Raw Ingredients Toggle */
  .ingredients-raw-toggle {
    text-align: center;
    margin-top: var(--spacing-xl);
  }

  .raw-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-graphite);
    cursor: pointer;
    transition: all 0.2s;
  }

  .raw-toggle-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  .raw-toggle-btn svg {
    transition: transform 0.3s;
  }

  .raw-toggle-btn.active svg {
    transform: rotate(180deg);
  }

  .ingredients-raw-list {
    margin-top: var(--spacing-md);
    padding: var(--spacing-lg);
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .ingredients-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-graphite);
  }

  @media (max-width: 768px) {
    .ingredients-interactive-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .ingredient-modal-content {
      margin: 20px;
    }

    .ingredient-modal-body {
      padding: var(--spacing-lg);
    }
  }
  </style>

  <script>
  // Ingredient knowledge base - maps INCI names to user-friendly info
  const ingredientDatabase = {
    // Vitamins & Actives
    'sodium ascorbyl phosphate': {
      name: 'Vitamin C (Stabilized)',
      category: 'Antioxidant & Brightening',
      description: 'A stable form of vitamin C that brightens skin, fades hyperpigmentation, and boosts collagen production without irritation.',
      benefit: 'Brightens and evens skin tone while providing antioxidant protection.',
      hero: true
    },
    'vitamin c': {
      name: 'Vitamin C',
      category: 'Antioxidant',
      description: 'Powerful antioxidant that brightens skin and supports collagen production.',
      benefit: 'Reduces dark spots and protects against environmental damage.',
      hero: true
    },
    'vitamin e': {
      name: 'Vitamin E',
      category: 'Antioxidant',
      description: 'Fat-soluble antioxidant that protects cell membranes and works synergistically with vitamin C.',
      benefit: 'Protects skin barrier and enhances other antioxidants.',
      hero: true
    },
    'vitamin k': {
      name: 'Vitamin K',
      category: 'Circulation Booster',
      description: 'Strengthens capillaries and reduces the appearance of dark circles and spider veins.',
      benefit: 'Improves circulation and reduces visible blood vessels.',
      hero: true
    },
    'ferulic acid': {
      name: 'Ferulic Acid',
      category: 'Antioxidant Booster',
      description: 'Phenolic compound that stabilizes and doubles the effectiveness of vitamins C and E.',
      benefit: 'Enhances antioxidant protection and boosts other ingredients.',
      hero: true
    },
    'bakuchiol': {
      name: 'Bakuchiol',
      category: 'Natural Retinol Alternative',
      description: 'Plant-derived retinol alternative with similar anti-aging benefits but no irritation or sun sensitivity.',
      benefit: 'Reduces wrinkles and improves skin texture gently.',
      hero: true
    },
    'coq10': {
      name: 'CoQ10',
      category: 'Cellular Energy',
      description: 'Energizes skin cells, reduces oxidative stress, and stimulates collagen production.',
      benefit: 'Reduces fine lines and improves skin firmness.',
      hero: true
    },
    'pterostilbene': {
      name: 'Pterostilbene',
      category: 'Advanced Antioxidant',
      description: 'Superior to resveratrol with 80% better bioavailability. Brightens and protects skin.',
      benefit: 'Brightens skin tone and activates longevity genes.',
      hero: true
    },
    'astaxanthin': {
      name: 'Astaxanthin',
      category: 'Super Antioxidant',
      description: 'One of nature\'s most powerful antioxidants - 6000x stronger than vitamin C.',
      benefit: 'Protects against UV damage and improves elasticity.',
      hero: true
    },
    'dmae': {
      name: 'DMAE',
      category: 'Firming Agent',
      description: 'Provides immediate skin tightening and long-term firming effects.',
      benefit: 'Instantly firms and lifts skin.',
      hero: true
    },
    'dimethylaminoethanol': {
      name: 'DMAE',
      category: 'Firming Agent',
      description: 'Provides immediate skin tightening and long-term firming effects.',
      benefit: 'Instantly firms and lifts skin.',
      hero: true
    },
    'riboflavin': {
      name: 'Vitamin B2',
      category: 'Cellular Repair',
      description: 'Supports energy production and tissue repair while acting as an antioxidant.',
      benefit: 'Boosts cellular metabolism and repair.',
      hero: false
    },
    'panthenol': {
      name: 'Vitamin B5',
      category: 'Hydrator',
      description: 'Deeply hydrates, soothes irritation, and supports barrier repair.',
      benefit: 'Intense hydration and skin soothing.',
      hero: true
    },
    'taurine': {
      name: 'Taurine',
      category: 'Cellular Protector',
      description: 'Amino acid that protects cells from oxidative stress and maintains hydration.',
      benefit: 'Protects against aging and maintains cell health.',
      hero: false
    },

    // Peptides
    'acetyl octapeptide-3': {
      name: 'Snap-8 Peptide',
      category: 'Muscle-Relaxing Peptide',
      description: 'Reduces expression lines by relaxing facial muscles, like a topical alternative to neuromodulators.',
      benefit: 'Smooths fine lines and wrinkles.',
      hero: true
    },
    'snap-8': {
      name: 'Snap-8 Peptide',
      category: 'Peptide',
      description: 'Reduces expression lines by relaxing facial muscles.',
      benefit: 'Smooths fine lines.',
      hero: true
    },
    'palmitoyl pentapeptide-4': {
      name: 'Matrixyl',
      category: 'Collagen-Boosting Peptide',
      description: 'Stimulates collagen I, III, IV and fibronectin to rebuild skin structure.',
      benefit: 'Boosts collagen and firms skin.',
      hero: true
    },
    'matrixyl': {
      name: 'Matrixyl',
      category: 'Peptide',
      description: 'Peptide complex that boosts collagen production.',
      benefit: 'Firms and rebuilds skin structure.',
      hero: true
    },
    'ghk-cu': {
      name: 'Copper Peptides',
      category: 'Regenerative Peptide',
      description: 'Promotes collagen synthesis, enhances wound healing, and acts as an antioxidant.',
      benefit: 'Regenerates and firms skin.',
      hero: true
    },
    'copper tripeptide-1': {
      name: 'Copper Peptides',
      category: 'Regenerative Peptide',
      description: 'Tissue remodeling signal that promotes healing and collagen production.',
      benefit: 'Regenerates and repairs skin.',
      hero: true
    },
    'pal-150': {
      name: 'PAL-150 Complex',
      category: 'Anti-Inflammatory Peptide',
      description: 'Reduces inflammation and enhances barrier function while promoting collagen.',
      benefit: 'Calms and strengthens skin.',
      hero: true
    },
    'palmitoyl tripeptide-1': {
      name: 'PAL-150 Complex',
      category: 'Peptide',
      description: 'Anti-inflammatory peptide that promotes collagen.',
      benefit: 'Calms and firms skin.',
      hero: true
    },
    'palmitoyl tetrapeptide-7': {
      name: 'PAL-150 Complex',
      category: 'Peptide',
      description: 'Reduces inflammation and supports skin structure.',
      benefit: 'Calms skin and reduces aging.',
      hero: true
    },

    // Hydrators
    'hyaluronic acid': {
      name: 'Hyaluronic Acid',
      category: 'Deep Hydration',
      description: 'Holds up to 1000x its weight in water for intense hydration and plumping.',
      benefit: 'Deeply hydrates and plumps skin.',
      hero: true
    },
    'sodium hyaluronate': {
      name: 'Hyaluronic Acid',
      category: 'Hydrator',
      description: 'Multi-weight HA that hydrates at multiple skin depths.',
      benefit: 'Intense hydration and plumping.',
      hero: true
    },
    'tremella': {
      name: 'Tremella Mushroom',
      category: 'Botanical Hydrator',
      description: 'Natural hydrator with smaller particles than HA, penetrating deeper into skin.',
      benefit: 'Deep hydration that penetrates better than HA.',
      hero: true
    },
    'tremella mushroom': {
      name: 'Tremella Mushroom',
      category: 'Hydrator',
      description: 'Natural super-hydrator from mushrooms.',
      benefit: 'Deeper hydration than hyaluronic acid.',
      hero: true
    },
    'glycerin': {
      name: 'Glycerin',
      category: 'Humectant',
      description: 'Classic humectant that attracts and binds water to skin.',
      benefit: 'Maintains skin hydration.',
      hero: false
    },
    'squalane': {
      name: 'Squalane',
      category: 'Biomimetic Emollient',
      description: 'Biomimetic lipid that deeply moisturizes without clogging pores.',
      benefit: 'Lightweight moisture that mimics natural skin oils.',
      hero: true
    },

    // Botanicals
    'gotu kola': {
      name: 'Gotu Kola',
      category: 'Botanical Active',
      description: 'Adaptogenic herb that supports collagen synthesis and wound healing.',
      benefit: 'Promotes healing and collagen production.',
      hero: false
    },
    'blue lotus': {
      name: 'Blue Lotus',
      category: 'Botanical',
      description: 'Ancient botanical with calming and antioxidant properties.',
      benefit: 'Calms and protects skin.',
      hero: false
    },
    'royal jelly': {
      name: 'Royal Jelly',
      category: 'Botanical Active',
      description: 'Nutrient-rich bee product with vitamins, minerals, and amino acids.',
      benefit: 'Nourishes and revitalizes skin.',
      hero: false
    },
    'marshmallow root': {
      name: 'Marshmallow Root',
      category: 'Botanical Soother',
      description: 'Soothing botanical rich in mucilage that calms and hydrates.',
      benefit: 'Soothes and calms irritation.',
      hero: false
    },
    'cordyceps': {
      name: 'Cordyceps Mushroom',
      category: 'Adaptogenic Mushroom',
      description: 'Energizing mushroom that boosts cellular energy and antioxidant activity.',
      benefit: 'Energizes and protects cells.',
      hero: false
    },

    // Oils
    'coconut oil': {
      name: 'Coconut Oil',
      category: 'Carrier Oil',
      description: 'Nourishing oil rich in fatty acids that moisturizes and protects.',
      benefit: 'Moisturizes and strengthens barrier.',
      hero: false
    },
    'cocos nucifera': {
      name: 'Coconut Oil',
      category: 'Carrier Oil',
      description: 'Organic coconut oil for moisture and barrier support.',
      benefit: 'Nourishing moisturizer.',
      hero: false
    },
    'jojoba': {
      name: 'Jojoba Oil',
      category: 'Carrier Oil',
      description: 'Wax ester that closely mimics skin\'s natural sebum.',
      benefit: 'Balances oil production.',
      hero: false
    },
    'simmondsia chinensis': {
      name: 'Jojoba Oil',
      category: 'Carrier Oil',
      description: 'Organic jojoba seed oil that balances skin.',
      benefit: 'Non-comedogenic moisture.',
      hero: false
    },
    'meadowfoam oil': {
      name: 'Meadowfoam Oil',
      category: 'Emollient Oil',
      description: 'Highly stable oil with excellent skin absorption and barrier support.',
      benefit: 'Long-lasting moisture and protection.',
      hero: false
    },
    'pomegranate': {
      name: 'Pomegranate Oil',
      category: 'Antioxidant Oil',
      description: 'Rich in punicic acid with potent antioxidant and anti-inflammatory properties.',
      benefit: 'Antioxidant protection and regeneration.',
      hero: false
    },

    // Other Actives
    'witch hazel': {
      name: 'Witch Hazel',
      category: 'Astringent',
      description: 'Natural astringent with anti-inflammatory and pore-refining properties.',
      benefit: 'Tightens pores and calms skin.',
      hero: false
    },
    'hamamelis virginiana': {
      name: 'Witch Hazel',
      category: 'Astringent',
      description: 'Natural toner and pore refiner.',
      benefit: 'Refines pores and balances skin.',
      hero: false
    },
    'aloe': {
      name: 'Aloe Vera',
      category: 'Soothing Agent',
      description: 'Deeply soothing and hydrating plant extract.',
      benefit: 'Soothes and hydrates irritated skin.',
      hero: false
    },
    'aloe barbadensis': {
      name: 'Aloe Vera',
      category: 'Soother',
      description: 'Organic aloe leaf juice for soothing.',
      benefit: 'Calms and hydrates.',
      hero: false
    },
    'green tea': {
      name: 'Green Tea Extract',
      category: 'Antioxidant',
      description: 'Potent antioxidant rich in polyphenols that protects and soothes.',
      benefit: 'Antioxidant protection and anti-aging.',
      hero: false
    },
    'camellia sinensis': {
      name: 'Green Tea',
      category: 'Antioxidant',
      description: 'Organic green tea extract for protection.',
      benefit: 'Protects against aging.',
      hero: false
    },
    'citric acid': {
      name: 'Citric Acid',
      category: 'pH Adjuster',
      description: 'Natural acid that adjusts pH and provides gentle exfoliation.',
      benefit: 'Balances pH and gently exfoliates.',
      hero: false
    },
    'gluconolactone': {
      name: 'Gluconolactone',
      category: 'Gentle PHA',
      description: 'Polyhydroxy acid that exfoliates gently while hydrating and protecting.',
      benefit: 'Gentle exfoliation for sensitive skin.',
      hero: false
    },

    // Base ingredients
    'water': {
      name: 'Purified Water',
      category: 'Solvent',
      description: 'Purified water base that delivers active ingredients.',
      benefit: 'Universal solvent for skincare.',
      hero: false
    },
    'aqua': {
      name: 'Purified Water',
      category: 'Solvent',
      description: 'Base for formulations.',
      benefit: 'Hydrating base.',
      hero: false
    },
    'phenoxyethanol': {
      name: 'Phenoxyethanol',
      category: 'Preservative',
      description: 'Gentle, widely-used preservative that keeps formulations safe.',
      benefit: 'Preserves product safety and stability.',
      hero: false
    },
    'xanthan gum': {
      name: 'Xanthan Gum',
      category: 'Texture Enhancer',
      description: 'Natural thickener derived from fermentation.',
      benefit: 'Improves texture and stability.',
      hero: false
    },
    'lecithin': {
      name: 'Lecithin',
      category: 'Emulsifier',
      description: 'Natural emulsifier that helps ingredients blend.',
      benefit: 'Helps ingredients work together.',
      hero: false
    }
  };

  // Parse ingredient list and create interactive grid
  function initializeIngredients() {
    const ingredientsText = document.querySelector('.ingredients-text');
    if (!ingredientsText) return;

    const rawText = ingredientsText.textContent.trim();
    const ingredientsList = rawText
      .split(',')
      .map(ing => ing.trim())
      .filter(ing => ing.length > 0);

    const grid = document.getElementById('ingredientsInteractive');
    if (!grid) return;

    ingredientsList.forEach(ingredient => {
      const searchKey = ingredient.toLowerCase()
        .replace(/\(.*?\)/g, '') // Remove parentheses
        .trim();

      // Try to find match in database
      let ingredientData = null;

      // Direct match
      if (ingredientDatabase[searchKey]) {
        ingredientData = ingredientDatabase[searchKey];
      } else {
        // Partial match
        for (let key in ingredientDatabase) {
          if (searchKey.includes(key) || key.includes(searchKey)) {
            ingredientData = ingredientDatabase[key];
            break;
          }
        }
      }

      const pill = document.createElement('div');
      pill.className = 'ingredient-pill' + (ingredientData?.hero ? ' hero-ingredient' : '');

      if (ingredientData) {
        pill.innerHTML = `
          <span class="ingredient-pill-name">${ingredientData.name}</span>
          <span class="ingredient-pill-purpose">${ingredientData.category}</span>
        `;
        pill.onclick = () => showIngredientModal(ingredientData);
      } else {
        // Unknown ingredient - display as-is
        pill.innerHTML = `
          <span class="ingredient-pill-name">${ingredient}</span>
        `;
        pill.style.cursor = 'default';
        pill.style.opacity = '0.7';
      }

      grid.appendChild(pill);
    });
  }

  // Show ingredient detail modal
  function showIngredientModal(data) {
    const modal = document.getElementById('ingredientModal');
    document.getElementById('modalIngredientName').textContent = data.name;
    document.getElementById('modalIngredientCategory').textContent = data.category;
    document.getElementById('modalIngredientDescription').textContent = data.description;
    document.getElementById('modalIngredientBenefit').innerHTML = `<strong>Key Benefit</strong>${data.benefit}`;

    modal.style.display = 'flex';
    document.body.style.overflow = 'hidden';
  }

  // Close ingredient modal
  function closeIngredientModal() {
    document.getElementById('ingredientModal').style.display = 'none';
    document.body.style.overflow = '';
  }

  // Toggle raw ingredients list
  function toggleRawIngredients() {
    const list = document.getElementById('rawIngredientsList');
    const btn = document.querySelector('.raw-toggle-btn');
    const text = document.getElementById('rawToggleText');

    if (list.style.display === 'none') {
      list.style.display = 'block';
      text.textContent = 'Hide Full INCI List';
      btn.classList.add('active');
    } else {
      list.style.display = 'none';
      text.textContent = 'View Full INCI List';
      btn.classList.remove('active');
    }
  }

  // Close modal on overlay click
  document.addEventListener('click', function(e) {
    if (e.target.id === 'ingredientModal') {
      closeIngredientModal();
    }
  });

  // Close modal on escape key
  document.addEventListener('keydown', function(e) {
    if (e.key === 'Escape') {
      closeIngredientModal();
    }
  });

  // Initialize on page load
  document.addEventListener('DOMContentLoaded', initializeIngredients);
  </script>

/* NOTE: JavaScript for variant selection and purchase options has been moved to product.js
   and window.productVariants data is now set in main-product.liquid */

<style>
/* Stock Level Indicators (Scarcity Persuasion) */
.stock-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 16px 0;
  border-left: 3px solid;
}

.stock-indicator svg {
  flex-shrink: 0;
}

.stock-indicator.stock-low {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #991b1b;
}

.stock-indicator.stock-low svg {
  color: #ef4444;
}

.stock-indicator.stock-medium {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #92400e;
}

.stock-indicator.stock-medium svg {
  color: #f59e0b;
}

.stock-indicator.stock-available {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #065f46;
}

.stock-indicator.stock-available svg {
  color: #10b981;
}

/* Quick Buy Button */
.btn-quick-buy {
  width: 100%;
  margin-top: 12px;
  padding: 14px 24px;
  background: white;
  color: var(--sevo-gold);
  border: 2px solid var(--sevo-gold);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-quick-buy:hover {
  background: rgba(201, 165, 92, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 165, 92, 0.2);
}

.btn-quick-buy:active {
  transform: translateY(0);
}

.btn-quick-buy:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-quick-buy svg {
  transition: transform 0.3s ease;
}

.btn-quick-buy:hover svg {
  transform: translateX(4px);
}

/* Luxury Image Zoom Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
}

.modal-close:hover {
  background: rgba(201, 165, 92, 0.3);
  color: var(--sevo-gold);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(201, 165, 92, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    max-height: 85%;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    font-size: 35px;
    width: 45px;
    height: 45px;
  }
}

/* Product Badges Enhancement */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.badge svg {
  flex-shrink: 0;
}

.badge-bestseller {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.badge-bestseller svg {
  fill: #ffffff;
  stroke: #ffffff;
}

.badge-natural {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.badge-natural svg {
  stroke: #ffffff;
}

.badge-new {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.badge-new svg {
  stroke: #ffffff;
}

.badge-limited {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.badge-limited svg {
  stroke: #ffffff;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(220, 38, 38, 0.6);
  }
}
</style>

<style>
/* Urgency Bar Styles - Luxury Subtle Approach */
.urgency-bar {
  margin: 32px 0 32px;
  border-radius: 2px;
  background: transparent;
  border: none;
  padding: 0;
}

.urgency-items {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgency-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.urgency-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* Subscription Toggle Styles */
.subscription-toggle-row {
  margin: 20px 0;
}

.purchase-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.purchase-option {
  background: #fafafa;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.purchase-option:hover {
  border-color: var(--sevo-gold);
  background: #f5f5f5;
}

.purchase-option.active {
  background: linear-gradient(135deg, #2d2d2d 0%, var(--color-dark) 100%);
  border-color: var(--sevo-gold);
  box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.option-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.purchase-option.active .option-radio {
  border-color: var(--sevo-gold);
  background: var(--sevo-gold);
}

.radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.purchase-option.active .radio-dot {
  opacity: 1;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.option-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  transition: color 0.3s ease;
}

.purchase-option.active .option-title {
  color: #ffffff;
}

.option-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.subscription-price,
.onetime-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  transition: color 0.3s ease;
}

.purchase-option.active .subscription-price,
.purchase-option.active .onetime-price {
  color: var(--sevo-gold);
}

.option-frequency {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 400;
  transition: color 0.3s ease;
}

.purchase-option.active .option-frequency {
  color: #d1d5db;
}

/* Trust Badges Section */
.trust-badges-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.trust-badges-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #374151;
  font-weight: 500;
}

.trust-badge svg {
  flex-shrink: 0;
  color: #10b981;
  stroke-width: 2;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.payment-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-icon {
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.payment-icon:hover {
  opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .purchase-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .option-price {
    align-items: flex-start;
    width: 100%;
    padding-left: 34px;
  }

  .trust-badges-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  .payment-methods {
    flex-direction: column;
    gap: 8px;
  }

  .payment-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Product Features Section */
.product-features-section {
  padding: 48px 0;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Two Column Grid Layout */
.product-three-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.column-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

/* Guarantees Column */
.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guarantee-item-compact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.guarantee-item-compact svg {
  flex-shrink: 0;
  color: var(--color-success);
}

/* Badges Column */
.trust-badges-wrapper .trust-badges-compact {
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.trust-badges-wrapper .trust-badge-compact {
  font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .product-three-column-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .column-item {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .column-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .product-features-section {
    padding: 32px 0;
  }

  /* Ensure badges are visible on tablet */
  .trust-badges-wrapper .trust-badges-compact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .urgency-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .product-three-column-grid {
    padding: 20px;
  }

  .product-features-section {
    padding: 24px 0;
  }

  /* Ensure badges display properly on mobile */
  .badges-column {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .trust-badges-wrapper {
    display: block !important;
    visibility: visible !important;
  }

  .trust-badges-wrapper .trust-badges-compact {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .trust-badges-wrapper .trust-badge-compact {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Show badge text on mobile for better clarity */
  .trust-badges-wrapper .trust-badge-compact .badge-text {
    display: inline !important;
    font-size: 0.75rem;
  }

  .trust-badges-wrapper .trust-badge-compact .badge-icon {
    width: 16px !important;
    height: 16px !important;
  }
}

/* Compact Product Features Bar */
.product-features-bar {
  padding: 20px 0;
  background: linear-gradient(135deg, rgba(201, 165, 92, 0.03), rgba(201, 165, 92, 0.06));
  border-top: 1px solid rgba(201, 165, 92, 0.15);
  border-bottom: 1px solid rgba(201, 165, 92, 0.15);
}

.features-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 12px 0;
}

.feature-group {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  cursor: help;
  transition: color 0.3s ease;
}

.feature-group:hover {
  color: var(--color-text-primary);
}

.feature-group svg {
  flex-shrink: 0;
  color: var(--color-accent-gold);
  opacity: 0.8;
}

.feature-group span {
  white-space: nowrap;
}

.features-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .features-bar-content {
    gap: 16px;
  }

  .feature-group {
    font-size: 0.8125rem;
  }

  .features-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-features-bar {
    padding: 16px 0;
  }

  .features-bar-content {
    gap: 12px;
    padding: 8px 0;
  }

  .feature-group {
    font-size: 0.75rem;
  }

  .feature-group svg {
    width: 14px;
    height: 14px;
  }
}

/* Product Rating Stars in Hero Section */
.product-rating-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 20px;
  padding: 8px;
  border-radius: 6px;
}

.product-rating-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 20px;
}

.rating-stars-display {
  display: flex;
  gap: 4px;
  font-size: 24px;
  line-height: 1;
}

/* Style Judge.me stars when cloned to hero */
.rating-stars-display .jdgm-star,
.rating-stars-display .jdgm-star svg {
  color: #D97706 !important;
  fill: #D97706 !important;
  filter: drop-shadow(0 1px 2px rgba(217, 119, 6, 0.3));
}

.rating-stars-display .jdgm-star.jdgm--off,
.rating-stars-display .jdgm-star.jdgm--off svg {
  color: #D1D5DB !important;
  fill: #D1D5DB !important;
  opacity: 0.5;
}

.rating-stars-display .star {
  display: inline-block;
  line-height: 1;
}

.rating-stars-display .star-filled {
  color: #D97706;
  text-shadow: 0 1px 2px rgba(217, 119, 6, 0.3);
  filter: drop-shadow(0 1px 2px rgba(217, 119, 6, 0.2));
}

.rating-stars-display .star-half {
  background: linear-gradient(90deg, #D97706 50%, #D1D5DB 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(217, 119, 6, 0.2);
}

.rating-stars-display .star-empty {
  color: #D1D5DB;
  opacity: 0.5;
}

.product-rating-section .rating-text {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
}

.product-rating-section .rating-link {
  font-size: 0.9375rem;
  color: var(--sevo-green);
  text-decoration: underline;
  transition: color 0.2s;
}

.product-rating-section .rating-link:hover {
  color: #3F5B52;
}

/* Sticky Mobile Cart Styles */
.sticky-mobile-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-mobile-cart.visible {
  transform: translateY(0);
}

.sticky-cart-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  max-width: 100%;
}

.sticky-cart-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.sticky-cart-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.sticky-cart-details {
  flex: 1;
  min-width: 0;
}

.sticky-cart-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-cart-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin: 0;
}

.sticky-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, #d4a659 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201, 165, 92, 0.3);
}

.sticky-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 92, 0.4);
}

.sticky-cart-btn:active {
  transform: translateY(0);
}

.sticky-cart-btn svg {
  flex-shrink: 0;
}

/* Only show on mobile */
@media (min-width: 769px) {
  .sticky-mobile-cart {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .sticky-cart-title {
    font-size: 0.8125rem;
  }

  .sticky-cart-price {
    font-size: 0.875rem;
  }

  .sticky-cart-btn {
    padding: 10px 16px;
    font-size: 0.875rem;
  }

  .sticky-cart-image {
    width: 45px;
    height: 45px;
  }
}

/* Button with subtext styling */
.btn-add-to-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 32px 18px;
}

.btn-main-text {
  font-size: 1rem;
  font-weight: 600;
}

.btn-subtext {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1;
}

@media (max-width: 768px) {
  .btn-add-to-cart {
    padding: 14px 24px 16px;
  }

  .btn-main-text {
    font-size: 0.9375rem;
  }

  .btn-subtext {
    font-size: 0.75rem; /* Increased from 0.6875rem for WCAG readability */
  }
}

/* Sticky Add to Cart Bar (Desktop) */
.sticky-atc-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(201, 165, 92, 0.2);
}

.sticky-atc-bar.visible {
  transform: translateY(0);
}

.sticky-atc-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.sticky-product-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.sticky-product-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.sticky-product-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.sticky-product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-price-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
}

.sticky-atc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sticky-atc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #dc2626, #f97316);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
  white-space: nowrap;
}

.sticky-atc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.sticky-atc-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  flex-shrink: 0;
}

/* Hide on mobile */
@media (max-width: 1024px) {
  .sticky-atc-bar {
    display: none;
  }
}

/* Tablet adjustments */
@media (max-width: 1200px) {
  .sticky-atc-content {
    gap: 20px;
  }

  .sticky-product-title {
    font-size: 0.9375rem;
  }

  .sticky-atc-btn {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }
}

/* Enhanced Quantity Selector */
.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.quantity-selector:hover {
  border-color: var(--sevo-gold);
  box-shadow: 0 4px 8px rgba(201, 165, 92, 0.15);
}

.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  position: relative;
}

.qty-btn:hover {
  background: rgba(201, 165, 92, 0.1);
  color: var(--sevo-gold);
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
  pointer-events: none;
}

.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.qty-btn:disabled:hover {
  background: transparent;
  color: #374151;
}

.qty-input {
  width: 50px;
  height: 40px;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  background: white;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Hide spinner arrows in webkit browsers */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:focus {
  outline: none;
  background: rgba(201, 165, 92, 0.05);
}

/* Wishlist and Quantity Row Layout */
.wishlist-quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .quantity-selector {
    flex: 1;
  }

  .qty-btn {
    width: 36px;
    height: 36px;
  }

  .qty-input {
    width: 45px;
    height: 36px;
    font-size: 0.9375rem;
  }

  .wishlist-quantity-row {
    gap: 12px;
  }
}

/* Product Image Gallery & Thumbnails */
.gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.thumbnail {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  background: white;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(201, 165, 92, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.thumbnail:hover {
  border-color: var(--sevo-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 165, 92, 0.2);
}

.thumbnail:hover img {
  transform: scale(1.1);
}

.thumbnail:hover .thumbnail-overlay {
  opacity: 1;
}

.thumbnail.active {
  border-color: var(--sevo-gold);
  border-width: 3px;
  box-shadow: 0 4px 12px rgba(201, 165, 92, 0.3);
}

.thumbnail.active::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--sevo-gold), #b8945a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(201, 165, 92, 0.4);
}

.thumbnail.active::before {
  content: '✓';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .gallery-thumbnails {
    gap: 8px;
    justify-content: center;
  }

  .thumbnail {
    width: 70px;
    height: 70px;
  }
}

/* Key Benefits Section - Full Width */
.key-benefits-section-full {
  padding: 60px 0;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.key-benefits-section-full .benefits-header {
  text-align: center;
  margin-bottom: 48px;
}

.key-benefits-section-full .section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sevo-gold);
  margin-bottom: 12px;
}

.key-benefits-section-full .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
}

.benefits-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* All 5 items in a row on fullscreen */
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(86, 126, 115, 0.1);
  transition: all 0.3s ease;
}

.benefits-list-grid li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(86, 126, 115, 0.12);
  border-color: rgba(86, 126, 115, 0.3);
}

.benefits-list-grid li .benefit-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(86, 126, 115, 0.1), rgba(201, 165, 92, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.benefits-list-grid li .benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefits-list-grid li svg {
  flex-shrink: 0;
  color: var(--sevo-green);
}

.benefits-list-grid li span {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-dark);
  font-weight: 500;
}

/* Tablet - 3 columns */
@media (max-width: 1024px) {
  .benefits-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Small tablet - 2 columns */
@media (max-width: 768px) {
  .key-benefits-section-full {
    padding: 40px 0;
  }

  .key-benefits-section-full .section-title {
    font-size: 1.5rem;
  }

  .benefits-list-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefits-list-grid li {
    padding: 24px 16px;
  }

  .benefits-list-grid li .benefit-icon {
    width: 56px;
    height: 56px;
  }
}

/* Mobile - 1 column */
@media (max-width: 480px) {
  .benefits-list-grid {
    grid-template-columns: 1fr;
  }
}
