/* ===============================
   MUFTY HUB MAIN STYLES
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f4f6f9;
    color:#222;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

.top-header{
    background:#000;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.top-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:65px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:35px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#0d6efd;
}

.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.cart{
    position:relative;
}

.cart span{
    position:absolute;
    top:-10px;
    right:-10px;
    background:#0d6efd;
    color:#fff;
    width:20px;
    height:20px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:11px;
}
/* HERO */

.hero{
    background:url("../images/hero.jpg") center center/cover no-repeat;
    height:650px;
    position:relative;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
}

.hero-content{
    color:white;
}

.hero h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero h1 span{
    color:#0d6efd;
}

.hero p{
    margin:25px 0;
    font-size:22px;
}

.btn-shop{
    display:inline-block;
    background:#0d6efd;
    color:white;
    padding:15px 40px;
    border-radius:8px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
}

.btn-shop:hover{
    background:#0056d2;
}

.features{
    display:flex;
    gap:40px;
    margin-top:45px;
}

.features div{
    text-align:center;
}

.features i{
    font-size:32px;
    color:#0d6efd;
    margin-bottom:10px;
}