
form select, form button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
    padding: 8px;
    font-size: 16px;
}

.vw-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vw-product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}

.vw-product:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.vw-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.vw-product h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.vw-product p {
    font-weight: bold;
    color: #007cba;
}
