/* التصميم الأساسي للفوتر */
.bayan-footer {
    background: #1a120b;
    color: #e5d9b6;
    padding: 40px 0;
    font-family: 'Tajawal', sans-serif;
    border-top: 1px solid #3c2a21;
    direction: rtl;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.footer-section h4 {
    color: #d4a762;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: #d4a762;
}

/* ... (بقية الأكواد CSS المذكورة في الإجابة السابقة) ... */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}


/* إخفاء قسم الطلب السريع بالكامل */
salla-quick-order {
    display: none !important;
}