/* Estilos para barra de búsqueda */
.bbp-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 50px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  transition: bottom 0.5s ease;
  text-align: center;
}
.bbp-container.active {
  bottom: 0;
}
.bbp-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  cursor: pointer;
}
.bbp-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #b6003d;
}
.bbp-subtext {
  font-size: 16px;
  color: #222;
}
.bbp-search-bar {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.bbp-search-bar input {
  width: 60%;
  padding: 12px 20px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
}
.bbp-search-bar button {
  padding: 12px 20px;
  background: #b6003d;
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}