/* Ajustes refinados para menú básico */
.growcket-menu-header.growcket-menu-basic {
    background: #002366;
    min-height: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.growcket-menu-header .growcket-menu-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.growcket-menu-logo-desktop {
    margin-right: 32px;
    height: 40px;
    max-width: 160px;
    object-fit: contain;
}
.growcket-menu-list-desktop {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.growcket-menu-list-desktop ul {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.growcket-menu-list-desktop li {
    display: flex;
    align-items: center;
}
.growcket-menu-list-desktop a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08em;
    padding: 6px 22px;
    border-radius: 22px;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
    letter-spacing: 0.01em;
    font-weight: 400;
    position: relative;
}
.growcket-menu-list-desktop .current-menu-item a {
    background: #fff;
    color: #222;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.growcket-menu-list-desktop a:hover {
    background: #fff;
    color: #222;
    font-weight: 500;
}
.growcket-menu-extra-desktop {
    margin-left: 24px;
    display: flex;
    gap: 0.5em;
}
/* growcket-menu-widget.css */

/* Growcket Menu Widget Styles */
.growcket-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5em 1em;
    background: transparent;
    position: relative;
    z-index: 10;
}
.growcket-menu-logo-desktop {
    height: 40px;
    max-width: 160px;
    object-fit: contain;
}
.growcket-menu-list-desktop {
    flex: 1;
    margin: 0 1em;
}
.growcket-menu-extra-desktop {
    display: flex;
    gap: 0.5em;
}
.growcket-menu-mobile-toggle {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    display: none;
    color: #0073aa;
}
@media (max-width: 900px) {
    .growcket-menu-list-desktop, .growcket-menu-extra-desktop, .growcket-menu-logo-desktop {
        display: none;
    }
    .growcket-menu-mobile-toggle {
        display: block;
    }
}
.growcket-menu-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 9999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.growcket-menu-sidebar.active {
    transform: translateX(0);
}
.growcket-menu-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
}
.growcket-menu-logo-mobile {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
}
.growcket-menu-mobile-close {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #0073aa;
}
.growcket-menu-sidebar-content {
    flex: 1;
    padding: 1em;
}
.growcket-menu-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}
.growcket-menu-list li {
    margin-bottom: 16px;
}
.growcket-menu-list a {
    color: #222;
    text-decoration: none;
    font-size: 1.1em;
    display: block;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.growcket-menu-list a:hover {
    background: #f0f0f0;
    color: #0073aa;
}
.growcket-menu-extra-mobile, .growcket-menu-extra-desktop {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}
.growcket-menu-extra-item {
    display: flex;
    align-items: center;
    gap: 0.25em;
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.growcket-menu-extra-item:hover {
    background: #eaf6fb;
}
.growcket-menu-bg {
    /* Personaliza el fondo desde el widget */
}
/* Accesibilidad y responsive */
.growcket-menu-header nav[aria-label] {
    outline: none;
}
.growcket-menu-error {
    color: #c00;
    background: #fee;
    padding: 8px;
    border-radius: 4px;
    margin: 1em 0;
}
