/* CabnRide Common Header + Footer */

.site-header {
    background: #101828;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.12);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 72px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: #ffffff;
}

.brand span {
    color: #4ea1ff;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #eaecf0;
    text-decoration: none;
    transition: 0.2s;
}

.desktop-nav a:hover {
    color: #ffffff;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;

    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 14px;

    color: #ffffff;
    text-decoration: none;
}

.cart-link:hover {
    color: #ffffff;
}

.cart-icon {
    font-size: 20px;
}

.number-order {
    min-width: 21px;
    height: 21px;
    padding: 0 6px;

    border-radius: 20px;

    background: #ffffff;
    color: #101828;

    font-size: 12px;
    font-weight: 700;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* FOOTER */

.site-footer {
    background: #101828;
    color: #ffffff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #d0d5dd;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #98a2b3;
    font-size: 13px;
    margin-top: 8px;
}


/* MOBILE */

@media (max-width: 780px) {

    .desktop-nav {
        display: none;
    }

    .header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {

    .brand {
        font-size: 22px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
