/* --- FIXED NAVBAR STYLES --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* Slightly taller for breathing room */
    background: rgba(253, 252, 248, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid; /* Switched to Grid for perfect 3-part alignment */
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
}

.logo { 
    font-size: 1.4rem; 
    font-weight: 900; 
    letter-spacing: -1px; 
    text-transform: uppercase;
    text-decoration: none;
    color: #1A1A1A;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center; /* Keeps links perfectly centered */
}

nav ul li a {
    text-decoration: none;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

nav ul li a:hover { color: #2D6A4F; }

/* Right side wrapper for the Cart button to keep it aligned right */
.nav-right {
    display: flex;
    justify-content: flex-end;
}

.nav-cta {
    background: #1A1A1A;
    color: #FDFCF8;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap; /* Prevents "Cart (0)" from wrapping */
}

.nav-cta:hover { 
    background: #2D6A4F; 
    transform: scale(1.05);
}