/* Promo Design Styles */
.promo-content-panel {
    transition: all 0.3s ease;
    min-height: 400px;
}

.promo-content-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
}

.promo-image-container {
    transition: all 0.3s ease;
}

.promo-image-container:hover {
    transform: scale(1.05);
}

/* Enhanced spacing for stacked images */
.promo-image-container + .promo-image-container {
    margin-top: 15px;
}

.price-highlight {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    border: 2px solid #dee2e6;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52,152,219,0.4) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-content-panel {
        padding: 25px !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .price-highlight span {
        font-size: 2.5rem !important;
    }
}

/* RTL Support */
[dir="rtl"] .me-3 {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

[dir="rtl"] .text-right {
    text-align: left !important;
}

[dir="rtl"] .text-center {
    text-align: center !important;
}
