.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #111;
    color: white;
    position: relative;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.cart-icon {
    cursor: pointer;
    position: relative;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: red;
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* MENÚ DE CUENTA */
.account-menu {
    position: relative;
    display: inline-block;
}

.account-menu button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
}

.account-dropdown {
    position: absolute;
    right: 0;
    background: #222;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    width: 180px;
    text-align: left;
}

.account-dropdown p {
    margin: 0 0 .5rem 0;
    font-size: 0.9rem;
}

.btn-logout {
    display: inline-block;
    margin-top: .5rem;
    padding: 0.4rem 0.6rem;
    background: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-logout:hover {
    background: #c9303a;
}

.account-dropdown.show {
    display: block;
}
