/* 💻 Ocultar el botón "Filtrar" en escritorio */
@media (min-width: 769px) {
  a.astra-shop-filter-button.ast-flyout-filter,
  .woocommerce .ast-shop-toolbar-container .ast-shop-toolbar-aside-wrap .astra-shop-filter-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* 📱 Mostrar y estilizar el botón "Filtrar" solo en móviles */
@media (max-width: 768px) {
  .woocommerce .ast-shop-toolbar-container .ast-shop-toolbar-aside-wrap .astra-shop-filter-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    /*background-color: #000 !important; /* negro */
    color: #fff !important; /* texto blanco */
  }

  .astra-shop-filter-button .astra-woo-filter-icon {
    color: #fff !important; /* ícono rojo */
  }
}

/* 💻 Márgenes del botón en pantallas pequeñas */
@media only screen and (max-width: 768px) {
  .woocommerce .ast-shop-toolbar-container .ast-shop-toolbar-aside-wrap {
    margin-bottom: 0px;
    margin-top: 10px;
    margin-left: 0px;
    margin-right: 10px;
  }
}

/* 💻 Oculta "Ordenar por" en pantallas pequeñas */
@media only screen and (max-width: 768px) {
  .woocommerce-js .woocommerce-ordering {
    display: none;
  }
}

/* 🧩 OPCIONAL — Ajuste de espacio entre botón y productos */
@media only screen and (max-width: 768px) {
  .woocommerce .ast-shop-toolbar-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  ul.products {
    margin-top: 5px !important;
  }
}





/* 🎯 Cambiar color del botón "Vista rápida" / "Quick View" */
.woocommerce ul.products li.product .button.yith-wcqv-button,
.woocommerce ul.products li.product .ast-quick-view-text,
.woocommerce ul.products li.product .quick-view-button,
button.yith-wcqv-button {
    background-color: #417DAA !important;  /* color de fondo */
    color: #fff !important;                /* texto blanco */
    border: none !important;
    border-radius: 4px !important;         /* opcional: esquinas suaves */
    transition: all 0.2s ease-in-out;      /* animación suave */
}

/* ✨ Efecto hover (un poco más oscuro) */
.woocommerce ul.products li.product .button.yith-wcqv-button:hover,
.woocommerce ul.products li.product .ast-quick-view-text:hover,
.woocommerce ul.products li.product .quick-view-button:hover,
button.yith-wcqv-button:hover {
    background-color: #2f6084 !important; /* tono más oscuro */
    color: #fff !important;
}





/* ✨ Quitar subrayados en los enlaces*/
a {
  text-decoration: none !important;
}

a:hover,
a:focus {
  text-decoration: none !important;
}



/* ✨ Quitar susbcripcion en el checkout*/
p.hostinger-reach-optin {
  display: none !important;
}