/* Products Dropdown */
.nav-products-wrap {
    position: relative;
}

.nav-products-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-products-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 8px;
    min-width: 320px;
    z-index: 1000;
}

.nav-products-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
    border-top-left-radius: 2px;
}

.nav-product-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-product-item:hover {
    background: var(--neutral-50);
}

.nav-product-icon {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bell-50);
    border-radius: 8px;
}

.nav-product-content {
    flex: 1;
}

.nav-product-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px;
}

.nav-product-desc {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-products-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        min-width: 0;
        width: 100%;
        display: none;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-products-dropdown.mobile-open {
        display: block;
        max-height: 600px;
    }

    .nav-products-dropdown::before {
        display: none;
    }

    .nav-products-wrap {
        width: 100%;
    }

    .nav-products-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }

    .nav-products-trigger svg {
        transition: transform 0.3s ease;
    }

    .nav-products-wrap.mobile-expanded .nav-products-trigger svg {
        transform: rotate(180deg);
    }

    .nav-product-item {
        padding: 10px;
    }
}
