/* =========================
   FEATURED PRODUCTS
========================= */

.featured-products{

    position:relative;

    overflow:hidden;

    padding:110px 0;

    background:linear-gradient(180deg,#ffffff 0%,#f7f7f7 100%);
}


/* BACKGROUND SHAPE */

.products-bg-shape{

    position:absolute;

    width:450px;

    height:450px;

    background:
    radial-gradient(
    rgba(229,57,53,.08),
    transparent 70%
    );

    top:-100px;

    left:-100px;

    border-radius:50%;
}


/* SECTION HEADING */

.section-heading{

    max-width:850px;

    margin:auto;
}

.section-subtitle{

    display:inline-block;

    color:#E53935;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;
}

.section-title{

    font-size:54px;

    font-weight:900;

    line-height:1.2;

    color:#1f1f1f;

    margin-bottom:20px;
}

.section-title span{

    color:#E53935;
}

.section-description{

    font-size:18px;

    line-height:1.9;

    color:#666;
}


/* =========================
   PRODUCT CARD
========================= */

.product-card{

    position:relative;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 10px 35px rgba(0,0,0,.06);

    height:100%;
}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}


/* IMAGE */

.product-image{

    position:relative;

    overflow:hidden;
}

.product-image img{

    width:100%;

    height: 190px;

    object-fit:revert;

    transition:.5s ease;
}

.product-card:hover .product-image img{

    transform:scale(1.08);
}


/* OVERLAY */

.product-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.65),
    transparent
    );

    display:flex;

    align-items:flex-end;

    justify-content:center;

    opacity:0;

    transition:.4s ease;

    padding-bottom:25px;
}

.product-card:hover .product-overlay{

    opacity:1;
}

.product-overlay a{

    background:#E53935;

    color:#fff;

    padding:12px 24px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;
}

.product-overlay a:hover{

    background:#cf2e2e;
}


/* CONTENT */

.product-content{

    /* padding:30px 25px; */
}


/* ICON */

.product-icon{

    width:58px;

    height:58px;

    background:#E53935;

    color:#fff;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    margin-bottom:20px;

    box-shadow:
    0 10px 25px rgba(229,57,53,.18);
}


/* TITLE */

.product-content h4{

    font-size:28px;

    font-weight:800;

    color:#1f1f1f;

    margin-bottom:14px;
}


/* TEXT */

.product-content p{

    font-size:16px;

    line-height:1.8;

    color:#666;

    margin-bottom:25px;
}


/* LINK */

.product-link{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* margin-top: 40px; */
    padding: 10px 25px;
    background: #E53935;
    color: #fff;
    border-radius: 50px;
    font-weight: 400;
    text-decoration: none;
    transition: .3s ease;
}

.product-link:hover{
    background: #cf2e2e;
    color: #fff;
    transform: translateY(-4px);
}


/* =========================
   RESPONSIVE
========================= */

/* LARGE DESKTOP */

@media (min-width:1600px){

    .featured-products{

        padding:140px 0;
    }

    .section-title{

        font-size:68px;
    }

    .section-description{

        font-size:20px;
    }

    .product-image img{

        height:220px;
    }

    .product-content{

        /* padding:35px 30px; */
    }

}


/* DESKTOP */

@media (max-width:1400px){

    .section-title{

        font-size:50px;
    }

}


/* LAPTOP */

@media(max-width:1199px){

    .featured-products{

        padding:100px 0;
    }

    .section-title{

        font-size:46px;
    }

    .product-content{

        /* padding:25px 22px; */
    }

    .product-content h4{

        font-size:24px;
    }

    .product-image img{

        height:200px;
    }

}


/* TABLET */

@media(max-width:991px){

    .featured-products{

        padding:90px 0;
    }

    .section-subtitle{

        font-size:13px;

        letter-spacing:1.5px;
    }

    .section-title{

        font-size:40px;

        line-height:1.25;
    }

    .section-description{

        font-size:16px;
    }

    .product-card{

        border-radius:20px;
    }

    .product-content{

        /* padding:24px 20px; */
    }

    .product-content h4{

        font-size:22px;
    }

    .product-icon{

        width:52px;

        height:52px;

        font-size:20px;
    }

    .product-image img{

        height:190px;
    }

}


/* MOBILE */

@media(max-width:767px){

    .featured-products{

        padding:70px 0;
    }

    .products-bg-shape{

        width:280px;

        height:280px;
    }

    .section-subtitle{

        font-size:12px;

        letter-spacing:1px;
    }

    .section-title{

        font-size:30px;

        line-height:1.3;
    }

    .section-description{

        font-size:15px;

        line-height:1.8;
    }

    .product-card{

        border-radius:18px;
    }

    .product-image img{

        height:220px;

        object-fit:contain;
    }

    .product-content{

        /* padding:22px 18px; */
    }

    .product-icon{

        width:48px;

        height:48px;

        font-size:18px;

        border-radius:14px;

        margin-bottom:15px;
    }

    .product-content h4{

        font-size:20px;

        margin-bottom:10px;
    }

    .product-content p{

        font-size:14px;

        margin-bottom:18px;
    }

    .product-link{

        width:100%;

        justify-content:center;

        padding:12px 20px;
    }

    .product-overlay{

        opacity:1;

        background:
        linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
        );
    }

}


/* SMALL MOBILE */

@media(max-width:575px){

    .featured-products{

        padding:60px 0;
    }

    .section-title{

        font-size:26px;
    }

    .section-description{

        font-size:14px;
    }

    .product-content{

        padding:18px 16px;
    }

    .product-content h4{

        font-size:18px;
    }

    .product-content p{

        font-size:13px;

        line-height:1.7;
    }

    .product-image img{

        height:130px;
    }

    .product-icon{

        width:44px;

        height:44px;

        font-size:16px;
    }

    .product-link{

        font-size:14px;

        padding:10px 16px;
    }

}


/* EXTRA SMALL DEVICES */

@media(max-width:380px){

    .section-title{

        font-size:22px;
    }

    .section-subtitle{

        font-size:11px;
    }

    .product-image img{

        height:120px;
    }

    .product-content h4{

        font-size:17px;
    }

    .product-link{

        font-size:13px;
    }

}