/*     RECETAS     */

/* *{
  outline: 1px solid red; 
} */

.section_recetas_pp {
  margin-top: 80px; /* Igual a la altura del contenedor fijo */
}

.lbl_title_recetas {
  color: var(--text-light);
  font-size: 1.6rem;
  margin-bottom: 30px;
}

/* codigo user en css: /Pagina_Principal/css/styles_pp_inicio.css */

/* Contenedor principal fijo */
.busqueda-conteiner {
  position: fixed;
  top: 0;
  left: 220px;
  right: 0; /* no toque el espacio de la sidebar */
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
  background: var(--backg-blur-light);
  z-index: 1000;
}

/* Contenedor de búsqueda */
.busqueda-recetas {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Buscador */
.input-busq-recetas {
  display: flex;
  align-items: center;
  padding-left: 15px;
  margin-left: 30px;
  border-radius: 25px;
  background: #f6fffe;
  border: 1px solid #e99a3c;
  box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
  height: 45px;
  width: 320px;
  font-family: Comfortaa, Verdana;
  transition: box-shadow 0.3s ease;
}

.input-busq-recetas:hover {
  box-shadow: 0 4px 18px rgb(0 0 0 / 8%);
}

.input_busqueda {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 10px;
  font-size: 0.95em;
  border-radius: 25px;
  background-color: transparent;
  color: #1a1c1c;
  font-family: Comfortaa, Verdana;
}

.ph-magnifying-glass {
  color: #e99a3c;
  font-size: 20px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

/* Select de categorías (estilo mejorado) */
.input-busq-categoria select {
  height: 48px;
  width: 240px;
  padding: 0 20px;
  border: none;
  border-radius: 14px;
  background: var(--backg-cat-rect);
  color: var(--text-light);
  font-size: 1em;
  font-family: Comfortaa, Verdana;
  box-shadow: 0 6px 16px rgb(0 0 0 / 10%);
  transition: all 0.3s ease;
  appearance: none;
  appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.41 0L6 4.58 10.59 0 12 1.41 6 7.41 0 1.41 1.41 0z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  cursor: pointer;
}

.input-busq-categoria select:hover {
  background: var(--backg-cat-rect-hover);
  box-shadow: 0 6px 20px rgb(0 0 0 / 8%);
}

/* Estilo para las opciones (solo funciona en algunos navegadores) */
.input-busq-categoria option {
  background-color: #f6fffe;
  color: #1a1c1c;
  padding: 12px;
  font-family: Comfortaa, Verdana;
  font-size: 0.95em;
}

.receta-destacada {
  border: 2px solid #e99a3c;
  box-shadow: 0 0 0 4px rgb(233 154 60 / 30%);
  animation: destacar 0.5s ease;
}

@keyframes destacar {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}
