/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

/* Topo e Menu */
header {
    background-color: #ff69b4; /* Cor rosa para Anna Fitas */
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.nav-links {
    display: none; /* Escondido por padrão para o menu hambúrguer */
    flex-direction: column;
    background: #ff4da6;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.nav-links.active { display: flex; }

.nav-links a {
    color: white;
    padding: 15px;
    text-decoration: none;
    border-bottom: 1px solid #ff85c2;
}

/* Rodapé */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 50px;
}

.vitrine {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.produto-card {
    border: 1px solid #ddd;
    padding: 15px;
    width: 250px;
    text-align: center;
    border-radius: 8px;
}
.produto-card img { max-width: 100%; height: auto; }
.btn-add { background: #ff69b4; color: white; border: none; padding: 10px; cursor: pointer; width: 100%; }
.btn-indisponivel { background: #ccc; color: #666; width: 100%; padding: 10px; border: none; }