/* estilos.css */

body {
  background: #fff;
}

.navbar {
  background-color: #b00a1a;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff !important;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  box-shadow: 0 0 10px rgba(176, 10, 26, 0.6);
}

.product-img {
  object-fit: contain;
  max-height: 180px;
  width: 100%;
  border-bottom: 1px solid #ddd;
  border-radius: 8px 8px 0 0;
  background: #fafafa;
}

.badge {
  font-size: 0.9em;
}

footer {
  background: #222;
  color: #eee;
  padding: 15px 0;
}
