/* ------------------------
   AFB Shortcodes Styles
-------------------------*/

/* الشورتكود السنة الحالية */
.afb-year {
    font-weight: bold;
    font-size: 1.2rem;
    color: #0073aa;
}

/* زر التحميل */
.afb-button {
    display: inline-block;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.afb-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* العد التنازلي */
.afb-countdown {
    display: inline-block;
    padding: 10px 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border-radius: 6px;
    text-align: center;
}

/* الـ Modal عند انتهاء العد */
.afb-countdown-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    padding-top: 20%;
    z-index: 9999;
}

/* WPBakery previews داخل المحرر */
.vc_backend-editor .afb-year,
.vc_backend-editor .afb-button,
.vc_backend-editor .afb-countdown {
    border: 1px dashed #0073aa;
    padding: 5px 10px;
    background: #f7f7f7;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    width: auto;
}
.vc_backend-editor .afb-button {
    cursor: pointer;
}
.vc_backend-editor .afb-countdown {
    color: #000;
    background: #ffeb3b;
    font-weight: bold;
}
