body{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    background:#f4f4f4;
}

.header-left{
    background:black;
    color:white;
    padding:5px 20px;
}

header{
    background:white;
    border-bottom:1px solid #ddd;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
}

.logo{
    font-size:22px;
    font-weight:bold;
}

.search-box input{
    padding:8px;
    width:250px;
    border:1px solid #ccc;
}

.search-box button{
    background:#000000;
    color:white;
    padding:8px 15px;
    border:none;
    border-radius:4px;
    cursor:pointer;
}

.search-box button:hover{
    background:#1558c0;
}

.icons{
    display:flex;
    gap:40px;
    align-items:center;
}

.icons a{
    text-decoration:none;
    color:black;
}

.icon-box{
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
}

.icon{
    font-size:22px;
}

.cart-count{
    position:absolute;
    top:-6px;
    left:16px;
    background:#000000;
    color:white;
    font-size:11px;
    padding:2px 6px;
    border-radius:50%;
}

.navbar{
    display:flex;
    gap:25px;
    padding:12px 40px;
    background:#eee;
}

.navbar a{
    text-decoration:none;
    color:black;
    font-weight:bold;
}

.navbar a:hover{
    color:#1a73e8;
}

.hero{
    height:300px;
    background:#000000;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
}

.blue-btn{
    background:white;
    color:#1a73e8;
    padding:10px 20px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
}

h1{
    text-align:center;
    margin:30px 0;
}

.product-grid,
.best-grid,
.gaming-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:25px;
    padding:30px 40px;
    align-items:stretch;
}

.product-card,
.best-card,
.gaming-card{
    background:white;
    padding:20px;
    border-radius:10px;
    border:1px solid #ddd;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:0.3s;
    height:100%;
}

.product-card:hover,
.best-card:hover,
.gaming-card:hover{
    transform:scale(1.05);
}

.product-card img,
.best-card img,
.gaming-card img{
    width:100%;
    height:160px;
    object-fit:contain;
}

.price{
    color:red;
    font-size:18px;
    font-weight:bold;
    margin:6px 0;
}

.add-cart{
    background:#1a73e8;
    color:white;
    border:none;
    padding:10px 15px;
    border-radius:6px;
    cursor:pointer;
    width:100%;
    font-weight:bold;
    margin-top:15px;
}

.add-cart:hover{
    background:#1558c0;
}

footer{
    margin-top:30px;
    background:#222;
    color:white;
    text-align:center;
    padding:20px;
}

.social a{
    margin:10px;
    color:white;
    text-decoration:none;
}

.social a:hover{
    color:#1a73e8;
}

.more button{
    background:#e6f0ff;
    color:#1a73e8;
    padding:10px 20px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}