/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 54:0 Unexpected "<"

**/
<style>
  .calyxa-premium-section {
    background-color: #fbfbfd; 
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 30px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  }
  .calyxa-premium-title {
    font-size: 26px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
  }
  .calyxa-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .calyxa-feature-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
  }
  .calyxa-feature-card:hover {
    transform: translateY(-5px);
  }
  .calyxa-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .calyxa-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
  }
  .calyxa-feature-text {
    font-size: 14px;
    color: #86868b;
    line-height: 1.5;
  }
</style>

<div class="calyxa-premium-section">
  <h2 class="calyxa-premium-title">The Calyxa Experience</h2>
  <div class="calyxa-features-grid">
    <div class="calyxa-feature-card">
      <div class="calyxa-icon">🌋</div>
      <h3 class="calyxa-feature-title">Volcanic Flame Effect</h3>
      <p class="calyxa-feature-text">Mesmerizing jellyfish and lava mist modes to elevate your workspace or home aesthetic.</p>
    </div>
    <div class="calyxa-feature-card">
      <div class="calyxa-icon">🎵</div>
      <h3 class="calyxa-feature-title">Built-in White Noise</h3>
      <p class="calyxa-feature-text">Drift into deep focus or pure relaxation with soothing, natural ambient sounds.</p>
    </div>
    <div class="calyxa-feature-card">
      <div class="calyxa-icon">💧</div>
      <h3 class="calyxa-feature-title">Aromatherapy Ready</h3>
      <p class="calyxa-feature-text">Add your favorite essential oils for a spa-like atmosphere wherever you are.</p>
    </div>
  </div>
</div>