/*==========================
PRODUCT HERO
===========================*/

.products-hero{

    background:#071c2c;

    color:#fff;

    padding:160px 0 90px;

}

.hero-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}

.hero-text{

    flex:1;

}

.hero-text span{

    color:#1EA6E8;

    font-weight:700;

    letter-spacing:2px;

}

.hero-text h1{

    font-size:60px;

    margin:20px 0;

    line-height:1.1;

}

.hero-text p{

    font-size:18px;

    color:#dbe7f2;

    max-width:550px;

    line-height:1.8;

}

.hero-image{

    flex:1;

    text-align:right;

}

.hero-image img{

    width:100%;

    max-width:600px;

}

/*==========================
COMMON
===========================*/

.products-section,
.category-section,
.gallery-section{

    padding:70px 0;

    background:#fff;

}

.section-heading{

    text-align:center;

    font-size:40px;

    color:#081B29;

    margin-bottom:10px;

}

.section-subtitle{

    text-align:center;

    color:#777;

    margin-bottom:45px;

}

/*==========================
BRANDS
===========================*/

.brand-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.brand-card{

    background:#fff;

    border:2px solid #e5e5e5;

    border-radius:18px;

    text-align:center;

    padding:30px;

    cursor:pointer;

    transition:.35s;

}

.brand-card img{

    width:180px;

    height:80px;

    object-fit:contain;

}

.brand-card h3{

    margin-top:20px;

    color:#081B29;

}

.brand-card:hover{

    transform:translateY(-6px);

    border-color:#1EA6E8;

}

.brand-card.active{

    border:2px solid #1EA6E8;

    box-shadow:0 15px 35px rgba(30,166,232,.18);

}

/*==========================
CATEGORY
===========================*/

.category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:25px;

}

.category-card{

    background:#fff;

    border:1px solid #ddd;

    border-radius:16px;

    padding:25px;

    text-align:center;

    cursor:pointer;

    transition:.3s;

}

.category-card img{

    width:70px;

    height:70px;

    object-fit:contain;

    margin-bottom:18px;

}

.category-card h3{

    font-size:18px;

    color:#081B29;

}

.category-card:hover{

    transform:translateY(-6px);

    border-color:#1EA6E8;

    box-shadow:0 12px 25px rgba(0,0,0,.08);

}

.category-card.active{

    border:2px solid #1EA6E8;

}

/*==========================
GALLERY
===========================*/

.gallery-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;

}

.gallery-top input{

    width:300px;

    padding:14px 18px;

    border-radius:8px;

    border:1px solid #ddd;

    outline:none;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

}

.product-card{

    background:#fff;

    border:1px solid #ddd;

    border-radius:15px;

    overflow:hidden;

    transition:.35s;

}

.product-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.product-card img{

    width:100%;

    height:220px;

    object-fit:contain;

    padding:20px;

}

.product-name{

    padding:18px;

    text-align:center;

    font-weight:600;

}

.product-btn{

    display:block;

    margin:0 18px 20px;

    padding:12px;

    text-align:center;

    background:#1EA6E8;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;

}

.product-btn:hover{

    background:#081B29;

}