/*==============================================================
FEATURED PRODUCTS
==============================================================*/
.products-section{
    padding:120px 0;
    background:#fff;
}

.products-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:30px;
    margin-bottom:60px;
}

.products-filter{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.products-filter button{
    border:none;
    background:#f3f4f7;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    color:#666;
    transition:.3s;
    cursor:pointer;
}

.products-filter button.active,
.products-filter button:hover{
    background:var(--primary);
    color:#fff;
}

/*==============================================================
PRODUCT GRID
==============================================================*/

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/*==============================================================
CARD
==============================================================*/

.product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;
    transition:.35s;
    border:1px solid #ececec;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

/*==============================================================
IMAGE
==============================================================*/

.product-image{
    position:relative;
    background:#f8f8f8;
    padding:35px;
    text-align:center;
}

.product-image img{
    height:260px;
    width:auto;
    transition:.4s;
}

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

/*==============================================================
BADGES
==============================================================*/
.product-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:var(--primary);
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.product-badge.new{
    background:#16a34a;
}

.product-badge.hot{
    background:#ff7a00;
}

/*==============================================================
QUICK ACTION
==============================================================*/
.product-actions{
    position:absolute;
    top:18px;
    right:18px;
    display:flex;
    flex-direction:column;
    gap:10px;
    opacity:0;
    transition:.3s;
}

.product-card:hover .product-actions{
    opacity:1;
}

.product-actions a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#333;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
    transition:.3s;
}

.product-actions a:hover{
    background:var(--primary);
    color:#fff;
}

/*==============================================================
BODY
==============================================================*/
.product-body{
    padding:30px;
}

.product-category{
    font-size:13px;
    text-transform:uppercase;
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
}

.product-title{
    font-size:24px;
    margin:12px 0;
}

.product-desc{
    color:#666;
    line-height:1.7;
    min-height:70px;
}

/*==============================================================
FEATURES
==============================================================*/
.product-features{
    margin:22px 0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.product-features li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#555;
}

.product-features i{
    color:var(--primary);
}

/*==============================================================
BOTTOM
==============================================================*/
.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;
}

.product-size{
    font-weight:700;
    color:#333;
}

.product-footer a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.product-footer a:hover{
    background:var(--primary-dark);
    transform:translateX(3px);
}

/*==============================================================
HOVER BORDER
==============================================================*/
.product-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    border:2px solid transparent;
    transition:.3s;
    pointer-events:none;
}

.product-card:hover::before{
    border-color:var(--primary);
}

/*==============================================================
BOTTOM CTA
==============================================================*/

.products-more{
    margin-top:70px;
    text-align:center;
}

.products-more .btn{
    min-width:230px;
}

/*==============================================================
RESPONSIVE
==============================================================*/

@media(max-width:1200px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .products-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .products-filter{
        width:100%;
        overflow:auto;
        padding-bottom:8px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-image img{
        height:220px;
    }

    .product-title{
        font-size:22px;
    }

}


/*==============================================================
PRODUCTS HERO
==============================================================*/

.products-hero{
    position:relative;
    padding:120px 0 90px;
    overflow:hidden;
    background:#fff;
}

/*==============================================================*/

.products-hero::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-120px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(225,29,36,.05);
}

/*==============================================================*/

.products-hero>.container{
    position:relative;
    z-index:2;
}

/*==============================================================*/

.products-hero-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 26px;
    border-radius:999px;
    background:#fff5f5;
    color:var(--primary);
    font-weight:700;
    font-size:.9rem;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.products-hero-subtitle i{
    font-size:18px;
}

/*==============================================================*/

.products-hero-title{
    margin:0 0 28px;
    font-size:4.5rem;
    line-height:1.08;
    font-weight:800;
    color:#1f1f1f;
}

/*==============================================================*/

.products-hero-description{
    max-width:700px;
    margin:0;
    font-size:1.2rem;
    line-height:1.9;
    color:#666;
}

/*==============================================================*/

.products-hero-image{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.products-hero-image img{
    display:block;
    width:100%;
    height:430px;
    object-fit:cover;
    transition:.5s;
}

.products-hero-image:hover img{
    transform:scale(1.05);
}

/*==============================================================*/

@media(max-width:991px){
    .products-hero{
        padding:90px 0 70px;
        text-align:center;
    }

    .products-hero-description{
        margin:auto;
    }

    .products-hero-image{
        margin-top:40px;
    }

}

/*==============================================================*/

@media(max-width:768px){

    .products-hero{
        padding:70px 0 50px;
    }

    .products-hero-title{
        font-size:2.8rem;
    }

    .products-hero-description{
        font-size:1rem;
    }

    .products-hero-image img{
        height:280px;
    }

}


/*==============================================================
CONTACT EXPERT BUTTON
==============================================================*/

.contact-expert-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-width:340px;
    height:72px;
    padding:0 40px;
    border-radius:999px;
    font-size:1.35rem;
    font-weight:700;
    line-height:1;
}

.contact-expert-btn i{
    margin:0 !important;
    font-size:1.35rem;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
}
