/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */




.hero-productos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-producto {
  text-align: center;
  max-width: 200px;
}

.titulo-producto {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.precio-producto {
  color: #d90000;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.imagen-producto img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}




/* Off-canvas */

/* Ocultar el botón en escritorio */
@media (min-width: 769px) {
  .boton-filtros {
    display: none !important;
  }
}

/* Mostrar solo en móviles */
@media (max-width: 768px) {
  .boton-filtros {
    display: inline-block;
    padding: 8px 14px;
    margin-left: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }


}
.boton-filtros {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.boton-filtros:hover {
  background-color: #efefef;
  border-color: #ccc;
}

.woof_reset_button_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.woof_reset_button_2:hover {
  background-color: #efefef;
  border-color: #ccc;
}



.irs-bar {
  background-color: #00509d !important;
}

.irs-handle {
  background-color: #ffffff !important;
  border: 3px solid #00509d !important;
  border-radius: 50% !important;
}

.irs-from,
.irs-to,
.irs-single {
  background-color: #00509d !important;
  color: #fff !important;
  
}






/* cambiar tamaño de combo box */

.woocommerce div.product form.cart .variations select {
  max-width: 300px; /* Ajustá según tu diseño */
  width: 100%;
  display: inline-block;
}







.blocksy-offcanvas {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  transform: translateX(0) !important;
  margin: 0 !important;
  width: 100vw !important; /* o el ancho que uses */
  max-width: 400px; /* ajustá según tu diseño */
  height: 100vh !important;
  z-index: 9999 !important;
}
body,
#page,
.site-content {
  overflow-x: visible !important;
  position: static !important;
}