.etiquetasPagina{
    margin-left: 2%;
    text-decoration: none;
    color: rgb(38, 51, 87);
}

.etiquetasPagina a{
    color: rgb(255, 78, 0);
}

.etiquetasPagina a:hover{
    margin-left: 5px;
}

.zoneProducts{
    display: flex;
}

.filters{
    max-width: 25%;
    width: 25%;
    margin-top: 10px;
    margin-left: 2%;
    display: block;
    border: 1px solid rgba(179, 138, 31, 0.8);
    padding: 5px;
    color: rgb(38, 51, 87);
    height: auto;
}

.categorias, .precioRange{
    margin-top: 10px;
}

.categoriasSelect, .subcategorias, .marcas{
    width: 80%;
    height: 30px;
    margin-top: 10px;
    border: 1px solid rgb(179, 138, 31);
    color: rgb(38, 51, 87);
    background: none;
    padding-left: 5px;
    border-radius: 5px;
}

.categoriasSelect:hover, .subcategorias:hover, .marcas:hover{
    cursor: pointer;
    background: rgba(235, 235, 235, 0.781);
}

.price-range-form {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.price-range-form span {
    margin: 0 8px;
    font-weight: bold;
}

.price-range-form input[type="number"] {
    width: 100px;
    padding: 5px;
    border: 2px solid #ddd; /* Borde por defecto */
    border-radius: 5px;
    outline: none;
    text-align: center;
}

.price-range-form input[type="number"]::placeholder {
    color: #666;
}

.input-min {
    border-color: blue;
}

.input-max {
    border-color: red;
}

.price-range-form input[type="number"]:focus {
    border-color: #333; /* Borde más oscuro al enfocar */
}

/* Para eliminar las flechas en navegadores modernos */
input[type="number"] {
    -webkit-appearance: none; /* Para navegadores basados en WebKit */
    -moz-appearance: textfield; /* Para Firefox */
    appearance: textfield; /* Propiedad estándar */
}

.buttonPriceRange{
    font-size: 16px;
    color: rgb(179, 138, 31);
    background: rgb(38, 51, 87);
    border: 1px solid rgb(38, 51, 87);
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-weight: bold;
    border-radius: 100%;
    margin-left: 5px;

}

.buttonPriceRange:hover{
    cursor: pointer;
    background: rgba(38, 51, 87, 0.822);
}

.productsZone{
     margin: 10px;
     width: 70%;
     /*border: 1px solid black;*/
}

.informationProducts{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgb(38, 51, 87);
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.informationProducts p{
    color: rgb(179, 138, 31);
    font-size: 18px;
    font-weight: bold;
}

.informationProducts label{
    color: rgb(179, 138, 31);
    font-size: 14px;
    font-weight: bold;
}

.informationProducts select{
    width: 200px;
    height: 30px;
    border: 1px solid rgb(179, 138, 31);
    border-radius: 8px;
    padding-left: 5px;
    color: rgb(38, 51, 87);
}

.etiquetasProducts{
    display: none;
    border: 1px solid rgb(179, 138, 31);
    margin-top: 10px;
}

.etiquetaFiltro {
    display: flex;
    align-items: center;
    border: 1px solid #FFB6A6; /* Cambia el color según tu preferencia */
    border-radius: 8px; /* Bordes redondeados */
    padding: 5px 10px;
    margin: 5px;
    font-size: 12px;
    color: #263357; /* Color del texto principal */
    background-color: #FFF5F3; /* Fondo suave */
    position: relative;
}

.typeCategoriaFiltroText {
    color: #263357;
    margin-right: 5px;
}

.filtroEscogido {
    font-weight: bold;
    margin-right: auto;
    color: #263357;
}

.cerrar-icono {
    color: #FF6F61; /* Color del ícono de cierre */
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
}


.productsContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
}

.productItem {
    display: flex;
    align-items: normal;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    gap: 15px;
    height: 150px;
}

.productImage{
    width: 150px;
    height: 100%;
}

.productImage img {
    width: 150px; /* Ajusta el tamaño según tus necesidades */
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.productDetails {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.productName{
    font-size: 24px;
    text-decoration: none;
    color: rgb(38, 51, 87);
    margin-bottom: 10px;
}

.productBrand{
    font-size: 16px;
    text-decoration: none;
    color: rgb(255, 78, 0);
    margin-bottom: 5px;
}

.productPrice {
    font-size: 22px;
    color: rgb(38, 51, 87);
    font-weight: bold;
}

.ivaTag {
    font-size: 12px; /* Ajusta el tamaño relativo al precio */
    margin-left: 4px; /* Espacio entre el precio y el texto */
}

.priceBase {
    font-size: 0.9em;
    color: #d9534f; /* Rojo para destacar el precio tachado */
}

.discountTag {
    font-size: 0.9em;
    color: #d9534f; /* Rojo para el descuento */
    font-weight: bold;
    margin-left: 5px;
}

.priceDiscount {
    font-size: 1.1em;
    color: #5cb85c; /* Verde para destacar el precio con descuento */
    font-weight: bold;
    display: block;
    margin-top: 5px;
}


.productButtons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.productButtons button {
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-right: 20px;
}

.productButtons button:first-child {
    background-color: #ffffff; /* Color para el botón de WhatsApp */
    color: rgb(70, 165, 41);
    border: 1px solid rgb(70, 165, 41);
    font-size: 14px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.productButtons button:last-child {
    background-color: rgb(179, 138, 31); /* Color para el botón de Carrito */
    color: white;
    border: 1px solid rgb(179, 137, 31);
    transition: background-color 0.3s ease;
}

.productButtons button:first-child:hover{
    background-color: rgb(70, 165, 41);
    cursor: pointer;
    color: white;
}

.productButtons button:last-child:hover {
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    color: rgb(179, 137, 31);
    border: 1px solid rgb(179, 137, 31);
}

@media (max-width: 768px) {
    .filters{
        display: none;
    }

    .productsZone{
        width: 100%;
        margin: 0px;
        margin-top: 10px;
    }

    .productName{
        font-size: 16px;
    }
}