.products-section {
    background-color: #EAE9F0;
    padding: 80px 20px;
    text-align: center;
     font-family: 'Nunito', sans-serif !important;
}
.products-section h2 {
    font-size: 35px !important;
    font-weight: bold;
    color: #000;
    margin-top: -30px;
    margin-bottom: 30px;
     font-family: 'Nunito', sans-serif !important;
}

.bonbloc-products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.bonbloc-product {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 365px;
    max-height: auto;
    width: 100%;
    overflow: hidden;
  padding: 15px; 
}
.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    
}
.product-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 12px;
}
.know-more-btn {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00000073;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}
.know-more-btn:hover {
    background: #2a2a2a;
    color: #fff;
}
.bonbloc-product h3 {
     font-family: 'Nunito', sans-serif !important;
    font-size: 24px;
    margin: 15px 0 10px;
    font-weight: bold;
    color: #000;
    
}
.bonbloc-product p {
    padding: 0px 20px 0px 20px;
    margin-bottom: -15px;
    font-size: 16px;
    align-items: center;
    color: #000;
    line-height: 25px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif !important;
}
