.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Adjust gap size as needed */
}

.product-box {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    background-color: #fff; /* Optional: Add a background color */
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-title h3 {
    font-size: 16px;
    margin-top: 10px;
}

.summary-page {
    padding: 20px;
}

.selected-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
