 .coupon-card {
    background: #CE0000;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
       border: 2px dashed #fff;
  }


  .coupon-title {
    font-size: 14px;
    opacity: 0.9;
    font-weight: bold;
  }

  .coupon-amount {
    font-size: 25px;
    font-weight: 900;
    color: #fcec00;
  }

  .coupon-note {
    font-size: 12px;
    opacity: 0.8;
  }

  .coupon-right {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .coupon-right code {
    background: #000000;
    color: #CE0000;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-family: monospace;
    letter-spacing: 2px;
  }

  .coupon-right button {
    background: #fff;
    color: #CE0000;
    border: none;
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: bold;
    cursor: pointer;
  }

  .coupon-toast {
    position: fixed;
    right: 15px;
    bottom: 15px;
    background: #fff;
    color: #CE0000;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }

  .coupon-toast.show {
    opacity: 1;
  }

    .coupon-right code.copied {
    color: #16a34a; /* vert */
  }