/* assets/css/styles_navbar.css */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
}
.logo span {
    color: #888888; /* El .dlx va en un gris elegante */
    font-weight: 400;
}

.cart-icon {
    position: relative;
    font-size: 1.3rem;
    cursor: pointer;
    color: #ffffff;
    transition: transform 0.2s;
}
.cart-icon:hover { transform: scale(1.1); }

#cart-count {
    position: absolute;
    top: -7px;
    right: -10px;
    background: #ffffff;
    color: #000000;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: 800;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.pop-animation { animation: pop 0.3s ease-out; }