/* VetPro - Navigation Styles */

/* ===============================================
   NAVIGATION
   =============================================== */

/* Navigation */
.navbar {
    /* Использует .header-backdrop из components.css */
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.nav-brand .logo i {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand h1,
.nav-brand .logo-title {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.nav-brand p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1f2937;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100%;
    background: white;
    padding: 0;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem 1rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.mobile-menu-close i {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1rem;
    margin: 0 1rem 0.5rem 1rem;
    text-decoration: none;
    color: #1f2937;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    border: none;
    background: none;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    width: calc(100% - 2rem);
}

.mobile-menu-item:hover {
    background: #f3f4f6;
}

.mobile-menu-item i {
    width: 1.25rem;
    height: 1.25rem;
}
