/* style.css */
.custom-product-container {
    display: flex;
    gap:20px;
}
.custom-recent-products {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    gap:20px;
}
.newcustom-recent-products {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
}

.product-item {
    width: calc(50% - 15px); /* Adjusting for padding and margin */
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.product-item:nth-child(1){
    width: 100%;
}
.product-item:nth-child(2n) {
    margin-left: 10px; /* Space between items */
}

.product-item h3 {
    margin: 0;
    font-size: 16px;
}

.product-item p {
    margin: 5px 0 0;
    font-size: 14px;
}

.product-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.fourth-product {
    width: 100%; /* Occupying full width */
}
.titlearrow{
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    clear: both;
}
.custom-recent-products .product-item{
background: #D9F8F8;
    border-radius: 20px;
    padding: 20px;
}
.productimgnew{
    float: right;
}
.product-info p a{
    padding: 5px 15px 5px 15px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #28A4BB;
    border-radius: 5px 5px 5px 5px;
    color: #28A4BB;
}
.newcustom-recent-products .product-item{
    background: #D9F8F8;
    border-radius: 20px;
    padding: 20px;
    
}
.product-item{
    margin-bottom: 0px !important;
}
.titlearrow h3{
    color: #002B44;
    font-family: "filision-pro", Sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.newcustom-recent-products .product-info{
    height: 100%;
}