body{
    margin: 0px;
}
/* ===== TOP BAR ===== */
/* ================= TOP BAR ================= */
.top-bar {
    background: #000;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 6px 20px;
    font-size: 13px;
}

.top-bar a {
    color: #fff;
    margin-right: 10px;
}

.top-left {
    display: flex;
    align-items: center;
}

.divider {
    margin: 0 10px;
    opacity: 0.6;
}

.top-center {
    overflow: hidden;
    text-align: center;
}

.offer-slider {
    white-space: nowrap;
    animation: slideText 12s linear infinite;
}

.offer-slider span {
    display: inline-block;
    margin: 0 40px;
}

.top-right {
    text-align: right;
}

/* ================= HEADER ================= */
.main-header {
    background: #f4f7fb;
    border-bottom: 1px solid #e6e6e6;
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    max-height: 55px;
}

/* ================= NAV ================= */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

/* ================= MOBILE TOGGLE ================= */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #111;
    margin: 5px 0;
    transition: 0.3s;
}

/* ================= ANIMATION ================= */
@keyframes slideText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    /* TOP BAR */
    .top-bar {
        grid-template-columns: 1fr 1fr;
        font-size: 12px;
    }

    .top-center,
    .top-email {
        display: none;
    }

    /* HEADER */
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -124%;
        width: 280px;
        height: 100%;
        background: #fff;
        padding: 80px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,.15);
        transition: right 0.3s ease;
        z-index: 9999;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav.active {
        right: 0;
    }
}

.page-content{
    max-width:1200px;
    margin: 20px auto;
}

