span.BadgeExpirado {
  background: #f8d7da;
  color: #721C24;
  border-radius: 10px;
  font-family: 'tt_normsregular';
  padding: 5px 10px;
  display: inline-block;
  font-size: 14px;
}

.filterH li h2 {
  width: 100%;
  color: #213391;
  font-size: 14px !important;
  line-height: 0px;
  margin-bottom: 0px;
  padding: 10px 20px;
}
#breadcrumbs {
    color: #203391 !important;
    padding: 20px 0;
}
.expirada-grey {
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

#loaderBeneficios {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #203391;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#ArchivePromoProducts .AllPromos .ItemPromo .WrappImagePromo {
  -webkit-border-top-left-radius: 15px;
  -webkit-border-top-right-radius: 15px;
  -moz-border-radius-topleft: 15px;
  -moz-border-radius-topright: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  width: 100%;
  height: 250px;
}

#ArchivePromoProducts .AllPromos .ItemPromo .WrappImagePromo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#ArchivePromoProducts .AllPromos .ItemPromo .WrappInfoPromo .InfoPromo {
  background-color: #ffffff;
  padding: 15px !important;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  z-index: 10;
  position: relative;
  width: 100%;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fade-wrapper {
  display: flex;
  flex-wrap: wrap;
}

/* Skeletons */
.placeholder-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 15px;
  background: #F3F5FF;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}

.placeholder-card .img-placeholder,
.placeholder-card .title-placeholder {
  background-color: #e0e0e0;
  border-radius: 4px;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.title-placeholder {
  height: 20px;
  width: 80%;
  margin-top: 15px;
}

.placeholder-card .text-placeholder {
  padding: 15px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shimmer loading animation */
.shimmer {
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Transición fade-in del contenedor principal */
#beneficiosContainer.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0.2; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Fade-in de cada ItemPromo */
#ArchivePromoProducts .AllPromos .ItemPromo {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInCard 0.3s ease forwards;
}

@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Evita saltos al cambiar contenido */
#beneficiosContainer {
  min-height: 500px;
  transition: min-height 0.3s ease;
}

/* Tabs desactivados mientras carga */
.Promofilters li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}