#neumaticos-filter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 0px;
    border-radius: 10px;
    width: 100%;
}

#neumaticos-filter .filtros-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px; /* Espacio entre los selectores */
}

#neumaticos-filter .filtros-container select {
    width: 33.333%; /* Cada selector ocupa un tercio del ancho */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f8f8f8;
    font-size: 18px;
    color: #333;
    appearance: none;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
    height: 50px !important;
}

#neumaticos-filter .filtros-container select:disabled {
    background: #e0e0e0;
    cursor: not-allowed;
}

#neumaticos-filter .imagen-container {
    width: 100%;
    margin: 20px 0; /* Espacio arriba y abajo de la imagen */
    text-align: center;
}

#neumaticos-filter .imagen-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

#neumaticos-filter button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #ff6666;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

#neumaticos-filter button:hover {
    background: #ff4d4d;
}