/**
 * ==================================================================
 * Project      : Shops
 * File         : css/navbar.css
 * Author       : Erica Mae Yeban
 * Created Date : 2026-05-30
 *
 * Copyright (c) 2026 Chomp.
 * All Rights Reserved.
 *
 * NOTICE:
 * This source code contains proprietary information owned by
 * Chomp Organization. The contents of this file may not be copied,
 * modified, distributed, disclosed, or used without express
 * written authorization from the copyright holder.
 * ==================================================================
 */

.navbar {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-logo {
    width: 50px;
    height: 42px;
    object-fit: contain;
}

.location-selector .btn {
    font-size: 0.875rem;
}

.cart-count {
    font-size: 0.65rem;
    padding: 0.25em 0.5em;
}
