
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
    }

    .offer-box {
      padding: 0rem 1rem 2rem 0rem;
      border-top: 1px solid #ccc;
    }

    .offer-box h2 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: #000;
    }

    .offer-list {
      display: flex;
      gap: 1rem;
      {% comment %} overflow-x: auto; {% endcomment %}
       flex-wrap: wrap;
      padding-bottom: 1rem;
    }

    .offer-card {
      min-width: 210px;
      {% comment %} max-width: 260px; {% endcomment %}
      flex: 1;
      border-radius: 12px;
      border: 1px solid #C25657;
      background-color: #fff;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0px 4px 12px rgba(194, 86, 87, 0.15);
      overflow: hidden;
    }

    .inner-card {
      padding: 1rem;
      background-color: #C25657;
      color: #fff;
    }

    .offer-title {
      font-weight: 700;
      font-size: 15px;
      line-height: 15px;
      {% comment %} margin-bottom: 0.5rem; {% endcomment %}
    }

    .offer-subtext {
      font-size: 13px;
      font-weight: 500;
      opacity: 0.95;
    }

    .coupon-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      background-color: #fff;
      border-top: 1px solid #eee;
      padding: 0.5rem 1rem;
    }

    .coupon-code-line {
      font-weight: 600;
      color: #000;
      font-size: 13px;
    }

    .coupon-code {
      font-weight: 700;
      color: #C25657;
    }

    .copy-btn {
      color: #2f9e44;
      font-weight: 600;
      cursor: pointer;
      font-size: 13px;
      transition: color 0.2s ease;
    }

    .copy-btn:hover {
      color: #228c3c;
    }

    /* Optional: Hide scrollbar for aesthetics */
    .offer-list::-webkit-scrollbar {
      display: none;
    }
    .offer-list {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }