.favorites-container{
  width:min(100%, 1420px);
  margin:0 auto;
  padding:10px 14px 36px;
}

/* TÍTULO */
.favorites-title-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin:14px 0 16px;
}

.favorites-title-line{
  flex:1;
  max-width:320px;
  height:1px;
  background:rgba(255,255,255,.12);
}

.favorites-title{
  margin:0;
  font-size:clamp(34px,4.8vw,58px);
  font-weight:900;
  text-transform:uppercase;
  color:#f6f7fb;
  text-align:center;
}

/* CONTAINERS */
.favorites-panel{
  position:relative;
  margin:0 0 22px;
  padding:16px;
  border-radius:24px;
  border:1px solid rgba(255,108,58,.18);
  background:
    radial-gradient(circle at 84% 10%, rgba(255,70,70,.06), transparent 24%),
    radial-gradient(circle at 10% 100%, rgba(255,170,70,.05), transparent 26%),
    linear-gradient(180deg, rgba(8,11,18,.98), rgba(4,6,12,.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.02),
    0 18px 40px rgba(0,0,0,.24);
  overflow:hidden;
}

.favorites-panel::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, #ff5b2e, #ff924c, transparent);
  box-shadow:0 0 14px rgba(255,98,48,.36);
}

/* GRID FIX */
.favorites-grid-fix{
  margin-top:12px;
}

/* EMPTY */
#fav-empty{
  margin-top:10px;
}