.coupon-card{
    background:#fffafb;
    border:1px solid #f8e3ea;
    border-radius:32px;
    padding:34px 28px;
    max-width:360px;
    margin:0 auto;
    direction:rtl;
    font-family:inherit;
    box-shadow:0 10px 30px rgba(244,181,202,0.12);
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

.coupon-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(244,181,202,0.18);
}

.coupon-badge{
    display:inline-flex;
    padding:8px 16px;
    border-radius:999px;
    background:#fff0f5;
    color:#d87093;
    font-size:12px;
    font-weight:700;
    margin-bottom:20px;
}

.coupon-title{
    font-size:30px;
    font-weight:900;
    color:#2f2f2f;
    margin-bottom:10px;
}

.coupon-subtitle{
    font-size:14px;
    color:#9f9f9f;
    line-height:2;
    margin-bottom:24px;
}

.coupon-wrap{
    margin-bottom:26px;
}

.coupon-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    background:#fff;
    border:1px solid #ffd7e5;
    border-radius:20px;
    padding:14px 16px;
}

.coupon-code{
    font-size:20px;
    font-weight:900;
    color:#e26d98;
    letter-spacing:2px;
    direction:ltr;
}

.coupon-box .coupon-copy-btn{
    border:none;
    background:#fff3f7;
    color:#d87093;
    font-size:12px;
    font-weight:700;
    padding:10px 14px;
    border-radius:14px;
    cursor:pointer;
}

.coupon-box .coupon-copy-btn:hover{
    background:#ffe4ee;
}

.coupon-stats{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.coupon-stat-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 18px;
    border-radius:20px;
    background:#fff;
    border:1px solid #f8e7ed;
}

.coupon-stat-label{
    font-size:14px;
    color:#888;
    font-weight:600;
}

.coupon-stat-value{
    font-size:15px;
    color:#d87093;
    font-weight:800;
}

.coupon-progress{
    margin-top:24px;
}

.coupon-progress-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.coupon-progress-track{
    width:100%;
    height:12px;
    background:#fde8ef;
    border-radius:999px;
    overflow:hidden;
}

.coupon-progress-bar{
    height:100%;
    background:linear-gradient(
        90deg,
        #ffc4d6,
        #e78aad
    );
    border-radius:999px;
}