body {
    background-color: rgb(255, 255, 255);
}
.list-group-item.active a {
    color: white !important;
  }
.card.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}
.scroll-down {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.scroll-up {
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* Tamaño más grande */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem !important;
    height: 3rem !important;
    background-size: 100% 100%;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.7));
}

/* Flecha izquierda azul */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231A73E8' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 1 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

/* Flecha derecha azul */
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231A73E8' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 1 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
/* Altura máxima del dropdown */
.dropdown-menu {
    max-height: 70vh;
    overflow: hidden;
}

/* Solo el área de productos hace scroll */
.dropdown-menu > div[data-minicarrito-target="lista"] {
    max-height: 45vh;
    overflow-y: auto;
}