/* ---------- GERAL ---------- */
body {
  background-color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  color: #333333;
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #555555;
}

/* ---------- CABEÇALHO ---------- */
.header, .menu, .top-bar {
  background-color: #ffffff;
  color: #000000;
  border-bottom: 1px solid #e6e6e6;
}

.header a, .menu a {
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header a:hover, .menu a:hover {
  color: #666666;
}

/* ---------- TÍTULOS ---------- */
h1, .product-name, .product-title {
  color: #000000;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.5px;
  text-transform: none;
}

h2, h3 {
  color: #000000;
  font-weight: 500;
  font-size: 20px;
}

/* ---------- DESCRIÇÕES ---------- */
.product-description, .descricao-produto, .text-content {
  font-size: 15.5px;
  color: #555555;
  line-height: 1.8;
  margin-top: 12px;
}

.product-description strong {
  color: #000000;
  font-weight: 600;
}

/* ---------- BOTÕES ---------- */
button, .btn, .buy-button, input[type="submit"] {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 280px;
}

button:hover, .btn:hover, .buy-button:hover, input[type="submit"]:hover {
  background-color: #333333;
  transform: scale(1.03);
}

/* ---------- PREÇO ---------- */
.product-price, .price, .product-box .price {
  color: #000000;
  font-weight: 700;
  font-size: 20px;
}

/* ---------- RODAPÉ ---------- */
footer {
  background-color: #f8f8f8;
  color: #333333;
  font-size: 14px;
  padding: 20px 0;
}

footer a {
  color: #000000;
}

footer a:hover {
  color: #666666;
}

/* ---------- CAIXAS E CARDS ---------- */
.card, .product-box, .collection-item {
  border: 1px solid #eeeeee;
  border-radius: 12px;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .product-box:hover, .collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.06);
}

/* ---------- BOTÃO NO LISTAGEM ---------- */
.product-box .buy-button {
  background-color: #000000;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.product-box .buy-button:hover {
  background-color: #444444;
}
