.elementor-208 .elementor-element.elementor-element-d09f851{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--flex-wrap:wrap;}.elementor-208 .elementor-element.elementor-element-cad07f9{--spacer-size:50px;}@media(min-width:768px){.elementor-208 .elementor-element.elementor-element-d09f851{--width:75%;}}/* Start custom CSS for html, class: .elementor-element-9cedce6 */* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 0px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
}

.product {
    flex: 0 0 48%; /* Two products per row, taking 48% of the width with space between */
    margin-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
}

.product-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.product-info p {
    font-size: 1rem;
    color: #777;
}

@media (max-width: 768px) {
    .product {
        flex: 0 0 100%; /* On smaller screens, each product takes full width */
    }
}/* End custom CSS */