/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { background-color: #ffffff; color: #333333; }
a { text-decoration: none; color: #0066cc; }

/* Container */
.container { width: 90%; max-width: 1000px; margin: 0 auto; }

/* Header */
header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.05); padding: 15px 0; margin-bottom: 30px; display: flex; align-items: center; justify-content: space-between; }
header h1 { color: #333; font-size: 24px; }
header nav a { color: #0066cc; margin-left: 20px; font-size: 14px; }

/* Grid de Produtos */
.produtos { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding-bottom: 40px; }
.produto { border: 1px solid #eee; border-radius: 8px; padding: 15px; transition: all 0.3s; }
.produto:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.produto img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; background: #f4f4f4; }
.produto h3 { margin: 12px 0 5px; font-size: 18px; color: #111; }
.produto .categoria { font-size: 12px; color: #888; margin-bottom: 10px; }
.produto .preco { color: #28a745; font-size: 20px; font-weight: bold; }

/* Produto Detalhe */
.produto-detalhe { display: flex; gap: 30px; margin-bottom: 40px; }
.produto-detalhe img { max-width: 400px; width: 100%; border-radius: 8px; background: #f4f4f4; }
.info .preco { font-size: 28px; margin: 15px 0; }
.descricao { line-height: 1.6; color: #555; margin-bottom: 20px; }
.specs { background: #f9f9f9; padding: 15px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; }

/* Botões */
.btn-comprar, .btn-finalizar, .btn-pagar { display: inline-block; background: #28a745; color: #fff; padding: 12px 24px; border: none; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; text-align: center; }
.btn-comprar:hover, .btn-finalizar:hover, .btn-pagar:hover { background: #218838; }
.btn-remove { color: #dc3545; font-size: 13px; }

/* Carrinho */
.lista-carrinho { list-style: none; margin-bottom: 20px; border: 1px solid #eee; border-radius: 6px; overflow: hidden; }
.lista-carrinho li { padding: 15px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.lista-carrinho li:last-child { border-bottom: none; }

/* Checkout */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: bold; font-size: 14px; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; }
.form-group input:focus { outline: none; border-color: #0066cc; }
.readonly-field { background-color: #f9f9f9; color: #555; }
.btn-pagar { width: 100%; font-size: 18px; margin-top: 10px; }

/* Sucesso */
.sucesso-msg { text-align: center; padding-top: 80px; padding-bottom: 80px; }
.sucesso-msg h2 { color: #28a745; margin-bottom: 15px; }

/* Footer */
footer { background: #333; color: #fff; text-align: center; padding: 20px 0; margin-top: 50px; font-size: 13px; }
.selo-confianca { margin-top: 15px; opacity: 0.8; }