/* ===== قسم الترويج - تصميم مقسوم ===== */
.promo-section-new {
    width: 100%;
    margin: 30px 0;
}

.promo-wrapper {
    display: flex;
    min-height: 400px;
    overflow: hidden;
}

/* الجزء الأيمن - النص */
.promo-right {
    flex: 1;
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: right;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C5A572;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo-badge i {
    font-size: 14px;
}

.promo-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.promo-text {
    font-size: 1.15rem;
    color: #777;
    margin-bottom: 30px;
    line-height: 1.8;
}

.promo-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #333;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-shop-btn:hover {
    background: #1a1a1a;
    transform: translateX(-5px);
    color: #fff;
}

.promo-shop-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.promo-shop-btn:hover i {
    transform: translateX(-5px);
}

/* الجزء الأيسر - الصورة */
.promo-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.promo-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-left:hover img {
    transform: scale(1.05);
}

/* الشاشات المتوسطة */
@media (max-width: 992px) {
    .promo-wrapper {
        min-height: 350px;
    }
    
    .promo-right {
        padding: 40px 35px;
    }
    
    .promo-heading {
        font-size: 2rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
}

/* الشاشات الصغيرة - تحويل لعمودي */
@media (max-width: 768px) {
    .promo-wrapper {
        flex-direction: column-reverse;
        min-height: auto;
    }
    
    .promo-left {
        height: 250px;
    }
    
    .promo-right {
        padding: 35px 25px;
        text-align: center;
        align-items: center;
    }
    
    .promo-heading {
        font-size: 1.7rem;
    }
    
    .promo-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .promo-shop-btn {
        padding: 12px 28px;
    }
}

/* الشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .promo-section-new {
        margin: 20px 0;
    }
    
    .promo-left {
        height: 200px;
    }
    
    .promo-right {
        padding: 30px 20px;
    }
    
    .promo-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .promo-heading {
        font-size: 1.4rem;
    }
    
    .promo-text {
        font-size: 0.9rem;
    }
    
    .promo-shop-btn {
        padding: 11px 24px;
        font-size: 0.95rem;
    }
}
