.checkout-coupon {
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 5px;

    border:1px solid #d8e6d4;
    border-radius:8px;

    background:#f6fff5;

    margin-bottom:20px;
}

.checkout-coupon__code{
    font-weight:600;
    color:#2f7d32;
}

.checkout-coupon__remove{

    width:18px !important;
    height:18px !important;
    padding: 0 !important;

    aspect-ratio: 1;
    border:none;
    border-radius:50%;

    cursor:pointer;

    background:var(--color-gray-900);
    color:#fff;

    transition:.2s;
}

.checkout-coupon__remove:hover{
    background:#c0392b;
}

.coupon-discount{
    color:#2f7d32;
    font-weight:600;
}
.checkout-coupon-form {
    display:flex;
    gap:10px;
}
.checkout-coupon-form button {
    color: white;
    background:#FF5940;

}
