﻿/* Zachary SharedWeb - Product SideNav */

.zs-sidenav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.zs-sidenav-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .25rem .25rem .25rem .25rem;
}

.zs-sidenav-badge {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,.08);
    border: 1px solid rgba(13,110,253,.15);
}

    .zs-sidenav-badge i {
        font-size: 1.1rem;
        color: #0d6efd;
    }

.zs-sidenav-title {
    line-height: 1.05;
}

.zs-sidenav-product {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .2px;
    color: #111827;
}

.zs-sidenav-subtitle {
    font-size: .78rem;
    color: #6b7280;
    margin-top: .15rem;
}

.zs-sidenav-sections {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.zs-sidenav-section-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
    padding: 0 .25rem;
}

.zs-sidenav-list {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.zs-sidenav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .62rem .75rem;
    border-radius: .65rem;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    transition: background-color .15s ease, color .15s ease;
}

    .zs-sidenav-item:hover {
        background: #f3f4f6;
        color: #111827;
    }

.zs-sidenav-icon {
    font-size: 1.02rem;
    color: #6b7280;
    min-width: 18px;
}

.zs-sidenav-text {
    flex: 1;
}

/* Active */
.zs-sidenav-item.active {
    background: rgba(13,110,253,.10);
    color: #0d6efd;
}

    .zs-sidenav-item.active .zs-sidenav-icon {
        color: #0d6efd;
    }

    /* Left accent bar for active */
    .zs-sidenav-item.active::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 10px;
        bottom: 10px;
        width: 3px;
        background: #0d6efd;
        border-radius: 3px;
    }

/* Better touch targets on mobile */
@media (max-width: 991.98px) {
    .zs-sidenav-item {
        padding: .72rem .85rem;
    }
}
