/* =========================================================
   RECOMENDACIONES · FILTROS / DÍAS
   ========================================================= */

.reco-filters-shell{
  position: sticky;
  top: 2.7rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  margin-top: -52px;
  margin-bottom: 8px;
  border-radius: 18px;
  border: 1px solid rgba(90,255,170,.14);
  background:
    radial-gradient(circle at top right, rgba(48,163,116,.10), transparent 34%),
    linear-gradient(180deg, rgba(13,18,22,.96) 0%, rgba(9,13,16,.96) 100%);
  box-shadow:
    0 14px 36px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.reco-filters-shell::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(54,255,154,.80), rgba(54,255,154,.10));
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

.reco-filters-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.reco-filters-title{
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .015em;
  color: #f5fbf8;
  line-height: 1.08;
}

.reco-filters-row{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reco-filters-days-block{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
  padding: 10px 12px;
}

.reco-filters-days-scroll{
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  padding-bottom: 2px;
}

.reco-filters-days-scroll::-webkit-scrollbar{
  height: 6px;
}

.reco-filters-days-scroll::-webkit-scrollbar-track{
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

.reco-filters-days-scroll::-webkit-scrollbar-thumb{
  background: rgba(111,255,182,.20);
  border-radius: 999px;
}

.reco-filters-days-inner{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

/* =========================================================
   CHIPS DE DÍAS
   ========================================================= */

.reco-daychip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  color: rgba(236,245,240,.82);
  font-size: .83rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: all .16s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
  cursor: pointer;
}

.reco-daychip:hover:not(:disabled){
  transform: translateY(-1px);
  border-color: rgba(111,255,182,.22);
  background: rgba(111,255,182,.08);
  color: #f7fffb;
}

.reco-daychip--active{
  border-color: rgba(83,255,173,.34);
  background: linear-gradient(180deg, rgba(83,255,173,.18), rgba(83,255,173,.10));
  color: #effff6;
  box-shadow:
    0 0 0 1px rgba(83,255,173,.08),
    0 8px 18px rgba(31,160,103,.14);
}

.reco-daychip--today{
  border-color: rgba(83,255,173,.20);
  background: rgba(83,255,173,.06);
  color: rgba(229,255,240,.90);
}

.reco-daychip:disabled{
  opacity: .40;
  cursor: not-allowed;
}

/* =========================================================
   CONTENIDO
   ========================================================= */

.reco-content{
  padding: 6px 0 12px 0;
}

.reco-block{
  margin-bottom: 14px;
}

.reco-block-title{
  font-weight: 900;
  color: rgba(255,255,255,.78);
  margin: 6px 0 8px 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px){
  .reco-filters-shell{
    margin-top: -38px;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 16px;
  }

  .reco-filters-days-block{
    padding: 10px;
  }

  .reco-daychip{
    min-height: 36px;
    padding: 0 13px;
    font-size: .81rem;
  }
}