/* Navigation Brand Logos Styling */
.brand-logo {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    text-transform: capitalize;
}

/* Logitech - 일반 대문자 */
.nav-link .brand-logo:first-child {
    text-transform: capitalize;
}

/* HP - 대문자, 굵게 */
.brand-hp {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Lenovo - 소문자 */
.nav-list li:nth-child(4) .brand-logo {
    text-transform: lowercase;
    font-weight: 500;
}

/* Belkin - 대문자 */
.nav-list li:nth-child(5) .brand-logo {
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Kramer - 대문자 */
.nav-list li:nth-child(6) .brand-logo {
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* 호버 및 액티브 상태 */
.nav-link:hover .brand-logo,
.nav-link.active .brand-logo {
    color: #d4af37;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* 모바일 최적화 */
@media (max-width: 968px) {
    .brand-logo {
        font-size: 1rem;
    }
    
    .brand-hp {
        font-size: 1.15rem;
    }
}