/* Favoritos locales: corazón rojo limpio, sin fondo ni difuminado. */
.favorite-btn {
  position: absolute;
  z-index: 6;
  top: 43px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dc2626;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
  box-shadow: none;
  filter: none;
  text-shadow: none;
  transition: transform .12s ease;
}

.favorite-btn:hover,
.favorite-btn[aria-pressed="true"] {
  background: transparent;
  color: #dc2626;
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.favorite-btn:hover { transform: scale(1.08); }
.favorite-btn:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
  border-radius: 3px;
}

.header-favorite-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dc2626;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.header-favorite-btn:hover,
.header-favorite-btn.has-favorites {
  background: transparent;
  color: #dc2626;
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

.header-favorite-btn:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.icons-mob .header-favorite-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 34px;
}

.favorite-count {
  position: absolute;
  top: 0;
  right: -2px;
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border: 1px solid #0b0e13;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font: 700 10px/1 Arial, sans-serif;
}

.favorite-count[hidden] { display: none; }

body.favorites-open { overflow: hidden; }
.favorites-panel {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: rgb(0 0 0 / .58);
}

.favorites-panel[hidden] { display: none; }
.favorites-dialog {
  width: min(390px, 100%);
  height: 100%;
  overflow: auto;
  background: #fff;
  color: #111827;
  border-left: 1px solid #e5e7eb;
}

.favorites-panel-head {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}

.favorites-panel-head h2 { margin: 0; font-size: 20px; }
.favorites-close {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.favorites-list { display: grid; gap: 10px; padding: 14px; }
.favorites-empty { margin: 24px 8px; color: #6b7280; text-align: center; }
.favorites-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.favorites-item-link {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
}

.favorites-item-link img {
  width: 58px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
  object-position: top center;
}

.favorites-item-link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.favorites-remove {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dc2626;
  cursor: pointer;
  font: 26px/1 Arial, sans-serif;
  box-shadow: none;
  filter: none;
  text-shadow: none;
}

@media (max-width: 768px) {
  .favorite-btn {
    top: 39px;
    right: 6px;
    width: 30px;
    height: 30px;
    font-size: 29px;
  }
}

/* SVG Heart 362109: misma silueta para contorno y relleno. */
.favorite-btn,.header-favorite-btn,.icons-mob .header-favorite-btn{font-size:0}
.favorite-btn::before,.header-favorite-btn::before{content:"";display:block;width:100%;height:100%;background:url("/img/svg/heart-favorite-outline.svg") center/contain no-repeat}
.favorite-btn[aria-pressed="true"]::before,.header-favorite-btn.has-favorites::before{background-image:url("/img/svg/heart-favorite-filled.svg")}

/* Visibilidad estable del acceso a favoritos en encabezados móviles. */
.header-favorite-btn::before{background-image:url("/img/svg/heart-favorite-filled.svg")}
@media(max-width:768px){.header-inner{gap:4px}.header .logo img{width:clamp(112px,36vw,150px);height:auto}.icons-mob{flex:0 0 auto;gap:4px}.icons-mob .iconbtn{flex:0 0 36px;width:36px;height:36px;padding:7px}.icons-mob .header-favorite-btn{display:inline-grid!important;visibility:visible;opacity:1;flex:0 0 40px;width:40px;height:40px;padding:0}}

/* El SVG ocupa siempre toda el área del botón; evita colapso en grids móviles. */
.favorite-btn::before,.header-favorite-btn::before{position:absolute;inset:0;width:auto;height:auto;pointer-events:none}
.header-favorite-btn::before{inset:6px;width:30px;height:30px}
.header-favorite-btn>[aria-hidden="true"]{display:none}

/* Tamaño visual solicitado para el corazón móvil; conserva área táctil de 40px. */
@media(max-width:768px){.icons-mob .header-favorite-btn::before{inset:5px;width:30px;height:30px}}

/* Mismo SVG en el botón para quitar elementos del panel de favoritos. */
.favorites-remove{position:relative;font-size:0}
.favorites-remove::before{content:"";position:absolute;inset:4px;background:url("/img/svg/heart-favorite-filled.svg") center/contain no-repeat;pointer-events:none}
