.custom-inner-banner{
    background-color: #f0da83;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.custom-inner-banner h2{
    text-align: center;
    font-size: 400%;
}

.product-section {
    padding: 4%;
}

.product-title {
    text-align: center;
    margin-bottom: 20px;
}

.product-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-column {
    flex: 0 0 45%;
    max-width: 45%;
    margin: 10px;
    box-sizing: border-box;
}

.product-block {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 300px; /* Set a height for visibility */
}

.product-block img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the block */
    display: block;
}

.product-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-block:hover .product-hover {
    opacity: 1;
}

.product-text {
    color: black; /* Default text color */
    text-align: left;
    transition: color 0.3s;
}

.product-block:hover .product-text {
    color: #FFD700; /* Text color on hover */
}

.product-text h5 {
    margin: 0 0 5px;
}

.product-text p {
    margin: 0 0 10px;
}



.product-link {
    font-size: large;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline */
}

.product-hover:hover {
    background-color: #c3a321;
}

@media (max-width: 768px) {
    .product-section{
        padding: 0px;
        justify-items: center;
        align-items: center;
    }
    .product-row {
        padding: 0.5%;
        display: inline-block;
        justify-content: center;
        align-items: center;
    }
    
    .product-block {
        height: 190px;
        width: 380px;
        display: inline-block;
    }
    .col-product-1, .col-product-2, .col-product-3, 
    .col-product-4, .col-product-5, .col-product-6 {
        flex: 0 0 100%;
        max-width: 100%;
        display: inline-block;
    }
}