.nav-desktop-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.0rem; /* Increased gap between menu items */
}

.nav-desktop-list > li {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
}

.nav-desktop-list > li > .nav-dropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.nav-dropdown-item {
    width: 100%;
}

/* Mobile menu styles */
.nav-dropdown-mobile-open {
    display: none;
    padding-left: 1rem;
}

.nav-item-dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.nav-mobile-header.is-dropdown .nav-mobile-back {
    display: flex;
    align-items: center;
}

.nav-mobile-back {
    display: none;
    cursor: pointer;
}

.nav-dropdown-wrapper.is-full {
    height: calc(100vh - 100px) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

.nav-produtos-list {
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Scrollbar styling for main category list */
.nav-produtos-list::-webkit-scrollbar {
    width: 6px;
}

.nav-produtos-list::-webkit-scrollbar-track {
    background: transparent;
}

.nav-produtos-list::-webkit-scrollbar-thumb {
    background: rgba(0, 48, 82, 0.2);
    border-radius: 3px;
}

.nav-produtos-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 48, 82, 0.3);
}

.nav-produtos-content {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.nav-produtos-sublist {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    height: 100% !important;
}

.nav-produtos-sublist .grid-3 {
    align-items: stretch !important;
    flex: 1 !important;
    min-height: 0 !important;
}

.nav-produtos-sublist .nav-produtos-sub {
    height: calc(90vh - 100px) !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.nav-produtos-sublist .nav-produtos-sub::-webkit-scrollbar {
    width: 6px;
}

.nav-produtos-sublist .nav-produtos-sub::-webkit-scrollbar-track {
    background: transparent;
}

.nav-produtos-sublist .nav-produtos-sub::-webkit-scrollbar-thumb {
    background: rgba(0, 48, 82, 0.2);
    border-radius: 3px;
}

.nav-produtos-sublist .nav-produtos-sub::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 48, 82, 0.3);
}

.nav-produtos-sub .button.is-stroke.is-small {
    margin-top: auto !important;
}

.nav-produtos-sub .button.button-light.is-small {
    margin-top: 0.5rem !important;
}

@media screen and (max-width: 1163px) {
    .nav-desktop-list {
        display: none;
    }
}