/* Start custom CSS for html, class: .elementor-element-1e996ef */.product-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* No gap between columns and rows */
    row-gap: 45px; /* Vertical gap between rows */
    justify-items: center; /* Centers the grid items horizontally */
    align-items: center; /* Centers the items vertically */
    text-align: center; /* Ensures text inside grid items is centered */
    margin: 0 auto; /* Centers the grid horizontally */
}
.heading {
   font-family: 'Roboto Slab', serif;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}
.card {
    
    overflow: hidden;
    text-align: center;
}
.card {
    width: 320px;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    
}

.card img {
    border-radius: 20px;
}

.image-container {
    position: relative;
}

.card-image {
    width: 320px !important;
    height: 320px !important;
    display: block;
}

.title {
    font-family: 'Roboto Slab', serif;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffffffb5;
    border-radius: 20px !important;
    color: #282C33;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 16px;
    z-index: 2; /* Ensure the title appears above the image */
}
.description {
    width: 100% !important;
    padding: 1px !important;
    text-align: left !important;
    font-size: 14px;
    color: #494949e0;
   margin-top: 5px;
   margin-bottom: 0px;
    padding: 10px !important;
}


@media only screen and (max-width: 767px) {
    .product-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px;
        justify-items: center;
        align-items: center;
        margin-left: 10px;
        margin-right:10px !important;
        
    }
}/* End custom CSS */