
.btn-voltar-ml {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-voltar-ml svg {
    display: block;
}

.btn-voltar-ml:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-voltar-ml:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .btn-voltar-ml {
        font-size: 14px;
        padding: 8px 12px;
    }
    .btn-voltar-ml svg {
        width: 14px;
        height: 14px;
    }
}

.preco-box {
  font-family: Arial, sans-serif;
}

.preco-antigo {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.desconto {
  background: #e53935;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
}

.preco-novo {
  color: #2e7d32;
  font-size: 22px;
  font-weight: bold;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    color: #444;
}

.icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.empty-state h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

.btn.primario {
    background: #2e7d32;
    color: #fff;
}

.btn.primario:hover {
    background: #1b5e20;
}

.btn.secundario {
    background: #eee;
    color: #333;
}

.btn.secundario:hover {
background: #ddd;
}                

.col:only-child {
    max-width: 400px;
    flex: 0 0 100%;
}        

/* Botao ML */
.btn-ml { display:inline-block; padding:12px 25px; background: #f3d00c; color:#000; text-decoration:none; font-weight:bold; border-radius:20px; transition:0.2s; }
.btn-ml:hover { background:#e6b800; }

/* Botao Desconto */
.btn-desconto { display:inline-block; padding:12px 25px; background: #ffffff; color:#2e7d32 !important; text-decoration:none; font-weight:bold; border-radius:20px; transition:0.2s; }
.btn-desconto:hover { background:#f7f4e3; }

