/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f0f2f5;
    padding-top:135px;
    padding-bottom:80px;
}

/* =========================
   TOP BAR
========================= */

.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:999;
}

.menu-btn{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

.logo{
    font-size:34px;
    font-weight:bold;
    color:#0d6efd;
}

.top-icons{
    display:flex;
    gap:15px;
}

.top-icons i{
    font-size:24px;
    cursor:pointer;
}

/* =========================
   SEARCH
========================= */


/* =========================
   SHOP CARD
========================= */

.shop-card{
    background:#fff;
    border-radius:18px;
    padding:18px;
    margin-bottom:25px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.shop-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.shop-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.shop-logo{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.shop-info h3{
    font-size:24px;
}

.shop-info p{
    color:#666;
    margin-top:6px;
}

/* =========================
   VISIT BUTTON
========================= */

.visit-btn{
    text-decoration:none;
    background:#0d6efd;
    color:white;
    padding:12px 18px;
    border-radius:14px;
    font-weight:bold;
}

/* =========================
   NEWS
========================= */

.offer-box{
    margin-top:18px;
    background:#fff5d6;
    border-radius:12px;
    padding:15px;
    font-size:18px;
}

/* =========================
   PRODUCTS
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:20px;
}

.product-card{
    background:#fafafa;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-card h4{
    margin:12px;
    font-size:18px;
}

.product-card h2{
    color:red;
    margin-bottom:10px;
}

.product-card button{
    width:90%;
    margin-bottom:15px;
    border:none;
    background:#198754;
    color:#fff;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
}

/* =========================
   MORE
========================= */

.more{
    margin-top:20px;
    text-align:center;
}

.more a{
    text-decoration:none;
    color:#0d6efd;
    font-weight:bold;
    font-size:18px;
}

/* =========================
   BOTTOM NAVIGATION
========================= */


/* =========================
   TABLET
========================= */

@media(max-width:991px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

.shop-top{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.visit-btn{
    width:100%;
    text-align:center;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){
    
    .sidebar{
    position:fixed;
    top:0;
    left:-270px;
    width:260px;
    height:100%;
    background:#fff;
    z-index:9999;
    transition:.3s;
    overflow-y:auto;
}

.sidebar.active{
    left:0;
}

.overlay{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.4);
    display:none;
    z-index:9998;
}

.overlay.active{
    display:block;
}
    
    

.logo{
    font-size:22px;
}

.top-icons i{
    font-size:22px;
}

.shop-logo{
    width:55px;
    height:55px;
}

.shop-info h3{
    font-size:18px;
}

.offer-box{
    font-size:15px;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.product-card img{
    height:150px;
}

.product-card h4{
    font-size:15px;
}

.product-card h2{
    font-size:18px;
}

.product-card button{
    font-size:14px;
    padding:10px;
}



}