.featured-products-section {
    /* padding: 100px 0; */
    /* background-color: #f8fafc; */
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.featured-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

.featured-products-section .section-title {
    margin-bottom: 60px;
}

.featured-products-section .title-text p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--paragraph-color);
}

.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.product-card .image-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card .image-box .product-title-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    padding: 40px 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    margin-bottom: 0px;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: left;
}

.product-card .image-box .product-title-overlay h4 {
    position: relative;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0px;
    font-family: var(--manjari);
    letter-spacing: 0.5px;
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}



.product-card:hover .image-box img {
    transform: scale(1.1);
}

.product-card:hover .image-box .product-title-overlay {
    padding-bottom: 45px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
}

.product-card:hover .image-box .product-title-overlay h4 {
    transform: translateY(-8px);
}

.product-card .content-box {
    background: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card .content-box .link-btn {
    width: 100%;
}

.product-card .content-box .link-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
    width: 100%;
}

.product-card .content-box .link-btn a i {
    margin-left: 10px;
    font-size: 14px;
}

.product-card .content-box .link-btn a:hover {
    background: var(--title-color);
}

/* Responsiveness */
@media only screen and (max-width: 991px) {
    .product-card .content-box {
        padding: 20px;
    }

    .product-card .content-box h4 {
        font-size: 18px;
    }
}