/*your custom css goes here*/

/* Navigation bar customization for one-row layout */
header.sticky-top {
    position: relative; /* Add this to ensure dropdowns are positioned correctly */
}

.combined-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0.5rem 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}



.combined-header .row {
    flex-wrap: nowrap;
    margin: 0;
    width: 100%;
}

.combined-header .d-flex {
    align-items: center;
}

/* Logo and category menu */
.combined-header .navbar-brand {
    margin-right: 1rem;
}

.combined-header .category-menu {
    margin-right: 1rem;
    white-space: nowrap;
}

/* Search box */
.combined-header .search-box {
    flex-grow: 1;
    max-width: 600px;
    margin-right: 1rem;
}

.combined-header .search-box .aiz-selectpicker {
    width: auto;
    margin-right: 0.5rem;
}

.combined-header .search-box .form-control {
    flex-grow: 1;
    min-width: 200px;
}

/* Right side elements */
.combined-header .right-side {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

/* User menu and cart */
.combined-header .user-menu, .combined-header .cart-dropdown {
    margin-left: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .combined-header .search-box {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .combined-header {
        flex-wrap: wrap;
    }
    
    .combined-header .search-box {
        order: 3;
        width: 100%;
        max-width: none;
        margin-top: 0.5rem;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .combined-header .right-side {
        gap: 0.5rem;
    }
    
    .combined-header .category-menu, .combined-header .lang-dropdown, .combined-header .currency-dropdown {
        display: none;
    }
}