*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Inter', sans-serif;
    color:#111111;
    background:#FFFFFF;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 90px;
}

.logo{
    text-decoration:none;
    color:#111111;
    font-size:28px;
    font-weight:700;
    letter-spacing:-1px;
}

.header{
    height:72px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 24px;
    background:#FFFFFF;
    border-bottom:1px solid #F2F2F2;
    position:sticky;
    top:0;
    z-index:1000;
}

.menu-button {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    color: #111111;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color .2s ease;
}

.menu-button:hover {
    background: #F5F5F5;
}

.menu-button:active {
    background: #EEEEEE;
}

/* ======================================
   BOTTOM NAVIGATION
====================================== */

.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:72px;
    background:#FFFFFF;
    border-top:1px solid #EEEEEE;
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:1000;
}

.nav-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:4px;
    text-decoration:none;
    color: #7A7A7A;
    font-size:12px;
    font-weight:500;
    flex:1;
    transition: color .2s ease;
}

.nav-item svg{
    width:22px;
    height:22px;
}

.nav-item.active{
    color:#111111;
}

.nav-item:hover {
    color: #111111;
}