/* General Styles */
header {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.navbar-brand img {
    height: 40px;
}

.navbar .nav-link {
    font-weight: bold;
    color: #555;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #007bff;
}

/* Mobile-Specific Styles */
@media (max-width: 991.98px) {
    .mobile-top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #mobileSearch {
        position: fixed;
        top: 60px; /* Adjust based on the height of the top bar */
        left: 0;
        right: 0;
        z-index: 999;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: #fff;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }

    .mobile-bottom-nav .nav-link {
        color: #555;
        font-size: 12px;
    }

    .mobile-bottom-nav .nav-link i {
        font-size: 18px;
    }

    .offcanvas-start {
        width: 250px;
    }
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    background-color: #fff;
}

/* تنسيق زر الرجوع */
.mobile-top-bar .back-button {
    color: #000; /* لون الأيقونة */
    font-size: 20px; /* حجم الأيقونة */
    padding: 5px; /* تباعد داخلي */
    display: none; /* إخفاء الزر افتراضيًا */
}

.mobile-top-bar .back-button:hover {
    color: #007bff; /* لون الأيقونة عند التحويم */
}