/* Custom Css */

/* Keep the menu horizontal on all devices */
.navbar-collapse {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
}

/* Hide the hamburger menu button */
.navbar-toggler {
    display: none !important;
}

/* Style the menu items */
.navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: auto;
}

.nav-item {
    margin: 0 10px;
    flex-shrink: 0;
}

.nav-link {
    font-size: 14px;
    padding: 5px 10px;
    white-space: nowrap;
}

/* Style for mobile */
@media (max-width: 768px) {
    .navbar-nav {
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-item {
        flex-shrink: 0;
    }
}

/* Adjust logo and buttons for mobile */
.navbar-brand {
    font-size: 1.5rem;
}

/* Style for cart and login icons outside the menu */
.navbar .d-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.nav-icon i {
    font-size: 1.2rem;
}

.btn-danger {
    font-size: 0.8rem;
    padding: 5px 10px;
}