/*.card-header a:hover{*/
/*    color: #06c6d8;*/
/*}*/

/*.coupon-grid{*/
/*    display: inherit;*/
/*}*/


.cpn-card {
    background: #ffffff;
    border: 1px solid #2e2e42;
    border-radius: 16px;
    padding: 16px;
    display: flex;
        height:100%;              /* يملأ ارتفاع الخلية في الجريد */

    flex-direction: column;
    gap: 10px;
    transition: .2s;
}

.cpn-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary, #6c63ff);
}

.cpn-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cpn-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--primary, #6c63ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cpn-title-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.cpn-title {
    color: #1c3dab;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
}

.cpn-sub {
    color: #9a9ab0;
    font-size: .9rem;
}

.cpn-expiry {
    font-size: 2rem;
    color: #ffb86c;
    white-space: nowrap;
}

.cpn-desc {
    color: #c4c4d6;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
    flex:1;              /* الوصف ياخد المساحة الفاضية كلها */
    
}

.cpn-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    margin-top: auto;
    border: 2px dashed var(--primary, #6c63ff);
    border-radius: 10px;
    color: coral;
    padding: 8px 12px;
}

.cpn-bottom{
    margin-top:auto;     /* الكود + الفوتر يتثبتوا تحت مع بعض */
    display:flex;
    flex-direction:column;
    gap:10px;
}



.cpn-code {
    flex: 1;
    font-weight: 800;
    letter-spacing: 1px;
    color: #9dd5a2;
    font-size: 2.5rem;
    font-family: monospace;
}

.cpn-copy {
    background: var(--primary, #6c63ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 1.22rem;
    cursor: pointer;
}

.cpn-copy:hover {
    opacity:1;
}

.cpn-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.5rem;
    color: #9a9ab0;
        margin-top:auto;
        min-height:24px;     /* نفس الارتفاع في كل الكروت حتى لو زرار التعديل ظهر أو مختفي */

    /* يدفع نفسه لآخر الكارت دايمًا */

}

.cpn-verified {
    color: #4ade80;
}

.cpn-edit {
    color: #ffb86c;
    text-decoration: none;
}

.cpn-more {
    color: var(--primary, #6c63ff);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {

    .cpn-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .cpn-title-wrap{
        width: 100%;
    }

    .cpn-expiry{
        white-space: normal;
        font-size: 2rem;
        margin-top: 4px;
    }
    
    
}