/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 100:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .offers-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .offer-card {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .offer-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .offer-content {
    flex: 1;
  }

  .offer-content h3 {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }

  .offer-content p {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #444;
  }

  .offer-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 4px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
  }

  .copied-message {
    font-size: 0.85rem;
    color: green;
    margin-top: 8px;
    display: none;
  }

  @media (max-width: 767px) {
    .offers-grid {
      grid-template-columns: 1fr;
    }

    .offer-card {
      flex-direction: row;
      text-align: left;
    }

    .offer-card img {
      width: 100px;
      height: 100px;
    }

    .offer-content h3 {
      font-size: 1.2rem;
    }

    .offer-content p {
      font-size: 0.95rem;
    }
  }
</style>