:root {
  --bs-primary: #55a9ef;
  --bs-primary-hover: #4a95d1;
  --bs-btn-hover-bg: #4a95d1;
}

body {
  font-family: "Roboto", sans-serif;
}

.summary-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.total-row {
  font-weight: bold;
  font-size: 1.1em;
  border-top: 2px solid #333;
  padding-top: 10px;
}

.navbar {
  background-color: var(--bs-primary);
}

footer {
  background-color: #f8f9fa;
  color: #333;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
}

.carousel-item img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card {
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.container {
  padding: 20px;
}

.row {
  margin-bottom: 20px;
}

.dropdown-menu {
  min-width: 150px; /* Set a minimum width if desired */
  z-index: 1000; /* Ensure it appears above other elements */
}

.dropdown-item:hover {
  background-color: #e0f7ff; /* Change background on hover for better visibility */
}

.nav-pills .nav-link {
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
  background-color: #f8f9fa; /* Un fondo suave al pasar el cursor */
  color: #007bff;
}

img.rounded {
  object-fit: cover;
}

.product-image {
  max-width: 100%; /* Imagen se ajusta al ancho del contenedor */
  max-height: 200px; /* Altura máxima uniforme */
  object-fit: contain; /* Ajusta el contenido de la imagen dentro del espacio definido */
  display: block; /* Asegura que se renderice como un bloque */
  margin: 0 auto; /* Centra la imagen horizontalmente */
}
p.clasificacion {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

p.clasificacion input {
  position: absolute;
  top: -100px;
}

p.clasificacion label {
  float: right;
  color: #333;
}

p.clasificacion label:hover,
p.clasificacion label:hover ~ label,
p.clasificacion input:checked ~ label {
  color: #F8C315;
}
