/* Add custom CSS styles below */ 
#premium-coupon-bar {
    background-color: #FF65A4 !important; /* اللون الوردي المطلوب */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    direction: rtl;
    width: 100%;
    z-index: 999;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block !important;
}

.promo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-tag {
    background: #000000; /* شارة سوداء لتباين احترافي */
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 50px;
}

.promo-message {
    margin: 0;
    font-size: 15px;
    color: #000000 !important; /* نص أسود صريح */
    font-weight: 700; /* خط عريض للوضوح */
}

.promo-message .highlight {
    color: #000000 !important;
    font-weight: 900;
    font-size: 17px;
    text-decoration: underline;
}

.promo-code-box {
    background: rgba(255, 255, 255, 0.9); /* خلفية بيضاء خفيفة للكود */
    color: #000000;
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px dashed #000000;
    margin: 0 5px;
    font-family: sans-serif;
    font-weight: bold;
}

.promo-note {
    font-size: 13px;
    color: #000000 !important; /* نص أسود صريح */
    font-weight: 700;
    margin-right: 8px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding-right: 8px;
}

.pro-button {
    background: #000000; /* زر أسود فخم */
    color: #ffffff;
    border: none;
    padding: 8px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pro-button:hover {
    background: #333333;
    transform: translateY(-1px);
}

.success-bg {
    background: #27ae60 !important; /* لون أخضر عند النجاح */
}

@media (max-width: 768px) {
    .promo-wrapper {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .promo-left {
        flex-direction: column;
        gap: 5px;
    }
    .promo-note {
        border-right: none;
        padding-right: 0;
    }
    .pro-button {
        width: 100%;
    }
}