* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #343a40;
    color: white;
    padding: 10px 20px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
}

nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 5px;
}

nav a:hover {
    background-color: #495057;
}

.cart-counter {
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 0.8em;
    margin-left: 5px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: white;
    cursor: pointer;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #343a40;
        margin-top: 10px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 10px;
        border-top: 1px solid #495057;
    }
}
