
.container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.products-container {
    flex: 1 1 60%; /* Occupy 60% of the space */
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;

}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.product {
    flex: 1 1 auto; /* Equal width for each item in the row */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px; /* Add right margin between items */
}

.product:last-child {
    margin-right: 0;
}

.product img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.product input {
    width: 80px; /* Match the width of the logo image */
    text-align: center;
}

.right-side {
    flex: 1;
    text-align: right;
    padding: 10px; /* Add padding for better separation */
    border-left: 1px solid #ccc; /* Add a vertical border */
    background-color: #f5f5f5; /* Add a background color */
    height: 800px;
    overflow-y: auto; /* Add vertical scroll if content overflows */
    padding: 10px 20px;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    max-height: 150px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 1px;
}

.product {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    text-align: center;
}

.product i {
    font-size: 24px;
    margin-bottom: 10px;
}

.product p {
    margin-bottom: 5px;
}

.product input {
    width: 80px;
    text-align: center;
    margin-top: 10px;
}

.intro-text {
    text-align: center;
    margin: 20px 0;
    font-size: 1.2rem;
    color: #555;
}

.right-side p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
