#filtro-productos-form {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

#filtro-productos-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

#filtro-productos-form .opciones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

#filtro-productos-form .opcion {
    width: 140px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#filtro-productos-form .opcion:hover {
    border-color: #007bff;
    background-color: #e9f4ff;
    transform: translateY(-2px);
}

#filtro-productos-form .opcion img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

#filtro-productos-form .opcion p {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0;
}

#form-nombre-edad label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

#form-nombre-edad input[type="text"],
#form-nombre-edad input[type="number"] {
    width: 100%;
    max-width: 400px;
    padding: 0.6rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    display: block;
    margin-top: 0.5rem;
}

#form-nombre-edad button {
    margin-top: 1rem;
}

.add-to-cart-button {
    background-color: #198754;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.add-to-cart-button:hover {
    background-color: #146c43;
    color: white;
}

/* Recomendaciones */
#filtro-productos-form ul {
    padding-left: 0;
}

#filtro-productos-form li {
    list-style: none;
}

#filtro-productos-form hr {
    margin: 2rem 0;
}
