/* Estilos para filters-home.php */

@import url("https://fonts.googleapis.com/css2?family=Climate+Crisis:YEAR@1979..2050&display=swap");
@font-face {
  font-family: "JustLovely";
  src: url("../fonts/JustLovely.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.new-home-shop h1 {
  text-align: center;
}
/* Contenedor principal */
.filters-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filters-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

/* Título - Oculto */
.titleShop {
  display: none;
}

/* Estilos para los selects */
.filter-select-wrapper {
  position: relative;
  min-width: auto;
}

.filter-select {
  width: auto;
  padding: 8px 30px 8px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s ease;
  color: #343434;
}

.filter-select:hover {
  opacity: 0.7;
}

.filter-select:focus {
  outline: none;
}

/* Flecha personalizada para el select */
.filter-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 10px;
  color: #343434;
}

/* Opciones del select - Estilo mejorado */
.filter-select option {
  padding: 12px 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #343434;
  border-bottom: 1px solid #e0e0e0;
}

.filter-select option:hover {
  background-color: #f5f5f5;
}

.filter-select option:first-child {
  font-weight: 600;
  background-color: #f9f9f9;
}

/* Link único (cuando solo hay un item) */
.single-filter-link {
  display: inline-block;
  padding: 8px 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #343434;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
  min-width: auto;
  text-align: center;
}

.single-filter-link:hover {
  opacity: 0.7;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .filters-wrapper {
    /* flex-direction: column; */
    gap: 15px;
    padding: 0 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  #ht-ctc-chat {
    display: none !important;
  }
  .filter-select-wrapper {
    /* width: 100%; */
    min-width: unset;
  }

  .filter-select {
    width: 100%;
    /* padding: 8px 12px;
    font-size: 12px; */
  }

  .single-filter-link {
    width: 100%;
    min-width: unset;
  }

  .titleShop {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filters-wrapper > * {
  animation: fadeIn 0.3s ease;
}

.shop-view-all-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
}

/* Botón Ver todos los productos - Estilo inspirado en favorites-dg-link */
.shop-view-all-link {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b12b21;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #b12b21;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.shop-view-all-link:hover {
  background-color: #b12b21;
  border-color: #b12b21;
  color: #fff;
}

.bf-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 888;
  width: 100%;
  overflow: hidden;
  background: #FDC603;
  color: #000;
  padding: 3px 0;
  font-size: 26px;
  text-transform: uppercase;
  font-family: "JustLovely", sans-serif;
  font-weight: 400;
  letter-spacing: 3px;
  font-style: normal;
}

.bf-track {
  white-space: nowrap;
  display: inline-block;
  padding-left: 100%;
  animation: bf-scroll 12s linear infinite;
}

.bf-marquee:hover .bf-track {
  animation-play-state: paused;
}

/* Respeto a accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .bf-track {
    animation: none;
    padding-left: 0;
  }
}

/* Animación */
@keyframes bf-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.product-price-sale {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
  color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5rem;
  font-family: "Barlow Semi Condensed";
  background-color: #FDC603;
  z-index: 2;
  margin: 0px;
}

@media (max-width: 768px) {
  .shop-view-all-link {
    padding: 10px 25px;
    font-size: 16px;
  }
}
