STAMPA LA TUA GIFT CARD

<div class="giftcard-container">
  <h1>Gift Card</h1>
  <p><strong>Importo:</strong> {{ gift_card.initial_value | money_with_currency }}</p>
  <p><strong>Codice:</strong> {{ gift_card.code | format_code }}</p>
  <p><strong>Destinatario:</strong> {{ gift_card.recipient.name }}</p>
  <img src="{{ 'gift-card/card.jpg' | shopify_asset_url }}" alt="Gift card" width="240" height="160">
</div>

<!-- Stile per la stampa -->
<style>
  @media print {
    body {
      background-color: #fff;
      margin: 0;
    }

    .giftcard-container {
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
      border: 1px solid #ddd;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .giftcard-container img {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 12px;
    }
  }
</style>