/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 11:0 Unexpected "<"
Line 82:0 Unexpected "<"

**/
{% if template.name == 'index' %}

<style>
  .premium-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    background: #ffffff;
    padding: 60px 20px;
  }

  .premium-card {
    background: #fefefe;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    max-width: 340px;
    transition: transform 0.3s ease;
    position: relative;
  }

  .premium-card:hover {
    transform: translateY(-5px);
  }

  .premium-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .premium-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
  }

  .premium-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .premium-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
  }

  .premium-btn:hover {
    background: #333;
  }

  .badge-nouveau {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #ff3366;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 8px;
  }
</style>

