/*==================================
PRODUCT HERO
==================================*/

.products-hero{

padding:30px 0;
background:linear-gradient(135deg,#F8FAF5,#EDF7EC);
position:relative;
overflow:hidden;

}

.products-hero::before{

content:"";
position:absolute;
width:500px;
height:500px;
background:#C8E6C9;
border-radius:50%;
right:-150px;
top:-180px;
opacity:.4;

}

.products-hero::after{

content:"";
position:absolute;
width:350px;
height:350px;
background:#A5D6A7;
border-radius:50%;
left:-100px;
bottom:-100px;
opacity:.35;

}

.products-hero .container{

position:relative;
z-index:2;

}

.products-hero h1{

font-family:'Poppins',sans-serif;
font-size:35px;
font-weight:600;
line-height:1.25;
margin:5px 0;

}

.products-hero p{

font-size:14px;
line-height:1.9;
color:var(--text);

}



.products-hero-image{

position:relative;
text-align:center;

}

.products-hero-image img{

width:100%;
max-width:620px;
animation:float 5s infinite ease-in-out;

}

.hero-highlights{

display:flex;
gap:25px;
margin-top:40px;
flex-wrap:wrap;

}

.hero-highlights div{

background:#fff;
padding:15px 22px;
border-radius:50px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-weight:600;

}

.hero-highlights i{

color:var(--primary);
margin-right:8px;

}

.floating-tag{

position:absolute;
background:#fff;
padding:15px 22px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
font-weight:600;

}

.floating-tag.one{

top:30px;
left:0;

}

.floating-tag.two{

bottom:80px;
right:0;

}

.floating-tag.three{

bottom:10px;
left:50px;

}

/*==================================
SEARCH TOOLBAR
==================================*/

.product-toolbar{

    position:sticky;
    top:-1px;
    z-index:99;
    padding:25px 0;
    background:rgba(248,250,245,.95);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(0,0,0,.05);

}

.toolbar-wrapper{

    display:flex;
    flex-direction:column;
    gap:25px;

}

/* Search */

.toolbar-search{

    position:relative;

}

.toolbar-search input{

    width:100%;
    height:65px;
    border:none;
    outline:none;
    border-radius:60px;
    padding:0 25px 0 65px;
    font-size:17px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.toolbar-search i{

    position:absolute;
    left:28px;
    top:50%;
    transform:translateY(-50%);
    color:var(--primary);
    font-size:20px;

}

/* Filters */

.toolbar-filters{

    display:flex;
    gap:15px;
    overflow-x:auto;
    padding-bottom:5px;

}

.toolbar-filters::-webkit-scrollbar{

    display:none;

}

.filter-btn{

    border:none;
    background:#fff;
    border-radius:50px;
    padding:14px 22px;
    white-space:nowrap;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.filter-btn span{

    margin-left:8px;
    background:#EDF7EC;
    color:var(--primary);
    padding:4px 10px;
    border-radius:30px;
    font-size:13px;

}

.filter-btn.active{

    background:var(--primary);
    color:#fff;

}

.filter-btn.active span{

    background:#fff;
    color:var(--primary);

}

.filter-btn:hover{

    transform:translateY(-3px);

}
.download-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px!important;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
    font-size: 13px;
}
.price-overlay-text{
    font-size: 13px;
}

.product-card{

background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
height:100%;
display:flex;
flex-direction:column;

}

.product-card:hover{

transform:translateY(-12px);
box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.product-image{

height:250px;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
position:relative;
overflow:hidden;

}

.product-image img{

width:180px;
transition:.4s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-body{
background:#f8faf4;
padding:28px;

}

.product-category{

text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
color:#2E7D32;
font-weight:600;

}

.product-body h3{

margin:5px 0 10px 0;
font-size:17px;
color:#256628;
font-weight:600;

}

.availability{

margin-bottom:22px;
color:#555;

}

.price-lock{

background:#f2f9e8;
border-radius:15px;
padding: 13px 15px;
display:flex;
gap:15px;
margin-bottom:25px;

}

.price-lock i{

font-size:20px;
color:#2E7D32;

}

.price-lock strong{
font-size:13px;
display:block;

}

.price-lock span{

font-size:13px;
color:#777;

}

.p-d{

width:100%;
height:54px;
border:none;
border-radius:50px;
background:#2E7D32;
color:#fff;
font-weight:600;
transition:.3s;

}

.download-btn:hover{

background:#256528;

}