body{
    margin:0;
    padding:0;
    font-family:Arial,sans-serif;
    background:#f8fafc;
}

.site-header{
    background:#ffffff;
    padding:20px 0;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    text-decoration:none;
}

.logo h2{
    margin:0;
    color:#2563eb;
    font-weight:800;
}

.main-menu{
    display:flex;
    justify-content:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.main-menu li{
    list-style:none;
}

.main-menu a{
    text-decoration:none;
    color:#111827;
    font-weight:600;
}

.main-menu a:hover{
    color:#2563eb;
}

.hero-section{
    padding:100px 0;
    text-align:center;
}

.hero-section h1{
    font-size:48px;
    font-weight:800;
}

.hero-section p{
    font-size:18px;
    color:#666;
}

.site-footer{
    background:#111827;
    color:#fff;
    text-align:center;
    padding:40px 0;
    margin-top:80px;
}

/* ===========================
   HERO SECTION
=========================== */

.hero-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff,#eef5ff);
}

.hero-content{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.hero-badge{
    display:inline-block;
    background:#e8f1ff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    color:#666;
    margin-bottom:40px;
}

.hero-search{
    display:flex;
    gap:15px;
    justify-content:center;
    margin-bottom:35px;
}

.hero-search input{
    max-width:550px;
    height:56px;
}

.hero-search button{
    padding:0 30px;
}

.trending-searches{
    margin-top:20px;
}

.trending-searches a{
    display:inline-block;
    margin:6px;
    text-decoration:none;
    background:#fff;
    color:#333;
    padding:8px 16px;
    border-radius:30px;
    border:1px solid #ddd;
    transition:.3s;
}

.trending-searches a:hover{
    background:#2563eb;
    color:#fff;
}

@media(max-width:768px){

.hero-content h1{
    font-size:36px;
}

.hero-search{
    flex-direction:column;
}

.hero-search input{
    max-width:100%;
}

}

/* ===========================
   FEATURED STORES
=========================== */

.featured-stores{
    background:#fff;
    padding:80px 0;
}

.featured-stores h2{
    font-size:40px;
    font-weight:800;
    margin-bottom:10px;
}

.featured-stores p{
    color:#666;
    margin-bottom:40px;
}

.brand-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    transition:.3s;
    cursor:pointer;
    height:100%;
}

.brand-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.brand-card h5{
    margin:0;
    font-weight:700;
}