html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Lora', serif;
}

/* Imagen de producto: contenedor fijo con fondo blanco y centrado */
.product-image-box {
  height: 220px; /* tamaño uniforme para todas las imágenes */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}
.product-image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* mantiene relación, añade bandas blancas si hace falta */
  background-color: #fff;
}

/* Efecto hover sutil en cards */
.card.product-card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.card.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}