body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}


.navbar {
  background: linear-gradient(90deg, #0d6efd, #0b5ed7);
}
.navbar-brand {
  font-size: 1.3rem;
}
.navbar .badge {
  font-size: 0.9rem;
}


h1, h2 {
  font-weight: bold;
  color: #0d6efd;
}

.producto-card {
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  background-color: #fff;
}
.producto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.producto-card img {
  max-height: 200px;
  object-fit: contain;
  padding: 10px;
}

.producto-card .precio {
  font-size: 1.2rem;
  font-weight: bold;
  color: #198754;
}

/* Botones */
.btn-primary {
  background-color: #0d6efd;
  border: none;
}
.btn-primary:hover {
  background-color: #0b5ed7;
}


#carritoCollapse {
  border-radius: 10px;
}

.list-group-item {
  border: none;
  border-bottom: 1px solid #ddd;
}
.list-group-item:last-child {
  border-bottom: none;
}

.badge.bg-success {
  font-size: 1rem;
  padding: 0.5em 0.8em;
}

button.btn-danger {
  font-size: 0.8rem;
}


@media (max-width: 768px) {
  .producto-card img {
    max-height: 150px;
  }
}
