	/* Related Products Section */
    .sec-relate-product {
        background-color: #f9f9f9;
        padding: 45px 0 105px;
    }
    
    .sec-relate-product h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    /* Grid Layout */
    .row {
        display: flex;
        flex-wrap: wrap;
        margin: -15px;
    }
    
    .col-md-3,
    .col-sm-6 {
        padding: 15px;
        box-sizing: border-box;
    }
    
    /* Product Panel */
    .panel {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .panel:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    /* Product Image */
    .pro-img-box {
        position: relative;
        overflow: hidden;
    }
    
    .pro-img-box img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }
    
    .pro-img-box:hover img {
        transform: scale(1.1);
    }
    
    /* Heart Icon */
    .adtocart {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
        padding: 5px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .adtocart:hover {
        background-color: #f44336;
        transform: scale(1.3);
    }
    
    .adtocart i {
        color: #ff3838;
        font-size: 18px;
    }
    
    .adtocart:hover i {
        color: #fff;
    }
    
    /* Product Details */
    .panel-body {
        padding: 8.5px;
        text-align: center;
    }
    
    .panel-body h4 {
        
        font-size: 16px;
        font-weight: bold;
        margin: 10px 0;
    }
    
    .panel-body h4 a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .panel-body h4 a:hover {
        color: #f44336;
    }
    
    .panel-body .price {
        font-size: 14px;
        color: #555;
        margin: 5px 0;
    }
    


    