/* RESET BÁSICO */
* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #ededed;
    color: #333;
}

/* TOPO */
.topo {
    background: #fff159;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topo h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.carrinho {
    background: #3483fa;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* GRID */
.grid-produtos {
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* CARD DO PRODUTO */
.produto {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e6e6e6;
    padding: 12px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease;
}

.produto:hover {
    box-shadow: 0 10px 22px rgba(0,0,0,.15);
    transform: translateY(-4px);
}

/* IMAGEM */
.produto img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

/* NOME */
.produto h3 {
    font-size: 14px;
    font-weight: 400;
    margin: 6px 0;
    min-height: 38px;
}

/* PREÇO */
.produto .preco {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin: 8px 0 12px;
}

/* BOTÃO */
.produto button {
    margin-top: auto;
    background: #3483fa;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.produto button:hover {
    background: #2968c8;
}

/* SEM ESTOQUE */
.sem-estoque {
    margin-top: auto;
    color: #f04449;
    font-weight: 600;
    font-size: 14px;
}
