*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f4f4;
}

/* HEADER SECTION */
.page-header{
    padding:80px 5%;
    background:linear-gradient(to right,#f5f5f5,#eaeaea);
}

.page-header h1{
    font-size:100px;
    font-weight:500;
    color:#222;
    margin-left: 10%;
}

.breadcrumb{
    text-align:right;
    font-size:14px;
    margin-top:20px;
    color:#777;
}

.filter-btn{
    margin-top:20px;
    float:right;
    border:1px solid #333;
    padding:8px 20px;
    background:transparent;
    cursor:pointer;
}
.filter-btn:hover{
    background-color: #0055ff;
    color: #f5f5f5;
}

/* MAIN LAYOUT */
.container{
    display:flex;
    padding:50px 5%;
    gap:40px;
}

/* SIDEBAR */
.sidebar{
    width:250px;
}

.sidebar h3{
    font-size:20px;
    margin-bottom:20px;
    border-left:4px solid #0071bc;
    padding-left:10px;
}

.sidebar ul{
    list-style:none;
}

.sidebar ul li{
    margin-bottom:15px;
    color:#555;
    cursor:pointer;
    transition:.3s;
}
.sidebar ul li a{
    color: black;
    text-decoration: none;
}

.sidebar ul li:hover{
    color:#0071bc;
}

/* PRODUCT GRID */
.products{
    flex:1;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.product-card2{
    text-align:center;
    transition:.3s;
}
.product-card2 a{
    text-decoration: none;
}

.product-card2 img{
    width:100%;
    max-width:260px;
    transition:.4s;
}

.product-card2:hover img{
    transform:translateY(-10px);
}

.product-card2 h4{
    margin-top:20px;
    font-weight:400;
    font-size:16px;
    color:#333;
}

/* COLOR DOTS */
/* .colors{
    margin-top:15px;
}

.colors span{
    display:inline-block;
    width:14px;
    height:14px;
    border-radius:50%;
    margin:0 4px;
}

.black{background:#000;}
.gray{background:#aaa;}
.red{background:#d50000;}
.blue{background:#0055ff;} */


/* RESPONSIVE */
@media(max-width:992px){
    .products{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .container{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
        margin-bottom:40px;
    }
}

/* MOBILE → 2 per row */
@media(max-width:576px){
    .products{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .page-header h1{
        font-size:48px;
    }
}
