/* GLOBAL FIX */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

/* MAIN CONTENT */
/* Ako ti je glavni sadržaj u .container */
.container {
    flex: 1;
}

/* Ako neka stranica koristi main umesto .container */
main {
    flex: 1;
}

/* FOOTER */
.site-footer {
    width: 100%;
    margin-top: auto;
    padding: 10px 16px;
    background: #ffffff;
    color: #111111;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.footer-bottom {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-bottom span {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.48);
}

/* MOBILE */
@media (max-width: 768px) {
    .site-footer {
        padding: 9px 12px;
    }

    .footer-bottom {
        max-width: 100%;
    }

    .footer-bottom span {
        font-size: 11px;
        line-height: 1.3;
    }
}