.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.order-form-fields {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eee;
}

.total-price {
    font-size: 1.5em;
    font-weight: bold;
    margin: 20px 0;
}

.submit-order {
    background: #2271b1;
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
}