body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f172a;
    color: white;
}

header {
    padding: 20px;
    background: #1e293b;
    text-align: center;
}

.filtros {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

input, select {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

/* Produtos */
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    width: 70%;
    box-sizing: border-box;
}

/*  CARD */
.card {
    background: #1e293b;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
}

/*  IMAGEM CORRIGIDA */
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.card:hover {
    transform: scale(1.02);
}

button {
    margin-top: 10px;
    padding: 12px;
    background: #22c55e;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background: #16a34a;
}

/* Carrinho */
.carrinho {
    width: 30%;
    background: #020617;
    padding: 20px;
    border-left: 2px solid #22c55e;
    min-height: 100vh;
    box-sizing: border-box;
}

.carrinho li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background: #1e293b;
    padding: 8px;
    border-radius: 5px;
}

.carrinho li button {
    width: auto;
    background: #ef4444;
    padding: 5px 10px;
    margin: 0;
}

/* Responsivo */
@media (max-width: 900px) {
    .produtos {
        width: 100%;
    }
    
    .carrinho {
        width: 100%;
        border-left: none;
        border-top: 4px solid #22c55e;
        min-height: auto;
    }

    .filtros {
        flex-direction: column;
    }
}