/* Premium Navigation Pro Styles */

.mimug-nav-pro-container {
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Bar */
.nav-pro-top {
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.nav-pro-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.nav-pro-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-main-text {
    font-size: 24px;
    font-weight: 800;
    color: #4f46e5;
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-sub-text {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Search */
.nav-pro-search {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.nav-pro-search-form input {
    width: 100%;
    background: #f1f5f9;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 99px;
    font-size: 14px;
    color: #475569;
    outline: none;
    transition: all 0.2s;
}

.nav-pro-search-form input:focus {
    background: #e2e8f0;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.nav-pro-search-results {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

/* Actions */
.nav-pro-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-link {
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.link-orange {
    color: #f97316;
}

.link-grey {
    color: #64748b;
}

.action-link:hover {
    opacity: 0.8;
}

.action-btn-cart {
    background: #4f46e5;
    color: #fff !important;
    padding: 0.65rem 1.5rem;
    border-radius: 99px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    transition: transform 0.2s, background 0.2s;
}

.action-btn-cart:hover {
    transform: translateY(-1px);
    background: #4338ca;
}

/* Bottom Bar */
.nav-pro-bottom {
    padding: 0.75rem 0;
    background: #fff;
}

.nav-pro-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-pro-menu-list .menu-item a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    display: inline-block;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-pro-menu-list .menu-item:hover a {
    color: #4f46e5;
    background: #f8fafc;
}

/* Active Class (Specific to "TODOS" or Current) */
.nav-pro-menu-list .menu-item.active a,
.nav-pro-menu-list .current-menu-item a,
.nav-pro-menu-list .menu-item:first-child a {
    background: #4f46e5;
    color: #fff;
}

/* Remove the blue from others if they are not active, 
   but the image shows "TODOS" in blue specifically. */
.nav-pro-menu-list .menu-item:not(:first-child) a {
    background: transparent;
    color: #94a3b8;
}

.nav-pro-menu-list .menu-item:not(:first-child):hover a {
    background: #f1f5f9;
    color: #4f46e5;
}

@media (max-width: 1024px) {
    .nav-pro-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-pro-search {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-pro-actions {
        width: 100%;
        justify-content: center;
    }

    .nav-pro-logo {
        text-align: center;
    }
}