/*
 * Sakrivanje originalnog Salient footera.
 *
 * Ako je neki od selektora drugačiji na tvojoj verziji teme,
 * pregledaj originalni footer kroz Inspect Element.
 */
#footer-outer,
#footer-widgets,
#copyright {
    display: none !important;
}


/* =========================================================
   Glavni footer
   ========================================================= */

.tarafarm-footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #526175;
    font-family: inherit;
}

.tarafarm-footer,
.tarafarm-footer * {
    box-sizing: border-box;
}

.tarafarm-footer__main {
    padding: 62px 0 50px;
    display: grid;
    grid-template-columns:
        minmax(220px, 1.35fr)
        minmax(160px, 0.9fr)
        minmax(200px, 1.05fr)
        minmax(230px, 1.3fr);
    gap: 55px;
    align-items: start;
}

/* =========================================================
   Logo i osnovni podaci
   ========================================================= */

.tarafarm-footer__logo {
    display: inline-flex;
    max-width: 170px;
    margin: 0 0 24px;
    text-decoration: none;
}

.tarafarm-footer__logo img {
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 0;
}

.tarafarm-footer__text {
    font-size: 13px;
    line-height: 1.65;
    color: #526175;
}

.tarafarm-footer__text p {
    margin: 0 0 15px;
    padding: 0;
}

.tarafarm-footer__text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Naslovi
   ========================================================= */

.tarafarm-footer .tarafarm-footer__title {
    margin: 0 0 17px;
    padding: 0;
    color: #3f5167;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
}

.tarafarm-footer__accordion-toggle {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: default;
}

.tarafarm-footer__accordion-toggle .tarafarm-footer__title {
    display: block;
    margin: 0 0 17px;
}

.tarafarm-footer__accordion-icon {
    display: none;
}




/* =========================================================
   Footer meniji
   ========================================================= */

.tarafarm-footer__navigation {
    display: block;
}

.tarafarm-footer__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.tarafarm-footer__menu > li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none !important;
}

.tarafarm-footer__menu > li::before,
.tarafarm-footer__menu > li::after {
    display: none !important;
}

.tarafarm-footer__menu a {
    display: inline-block;
    padding: 0 !important;
    color: #526175 !important;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.tarafarm-footer__menu a:hover,
.tarafarm-footer__menu a:focus-visible {
    color: #3c8b4c !important;
    transform: translateX(2px);
}

.tarafarm-footer__menu a:hover img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(3%) saturate(7500%) hue-rotate(170deg) brightness(97%) contrast(103%);
}


/* =========================================================
   Kontakt
   ========================================================= */

.tarafarm-footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tarafarm-footer__contact-details a {
    width: fit-content;
    color: #526175 !important;
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tarafarm-footer__contact-details a:hover,
.tarafarm-footer__contact-details a:focus-visible {
    color: #3c8b4c !important;
}

.tarafarm-footer__payment {
    margin-top: 26px;
}

.tarafarm-footer .tarafarm-footer__payment-title {
    margin-bottom: 13px;
}

.tarafarm-footer__payment .payment-cards {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tarafarm-footer__payment .payment-cards li {
    list-style: none;
}

/* =========================================================
   Socialne mreže
   ========================================================= */

.tarafarm-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 21px;
}

.tarafarm-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    background: #f3f4f2;
    color: #738092 !important;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.tarafarm-footer__social svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.tarafarm-footer__social a:hover,
.tarafarm-footer__social a:focus-visible {
    background: #3c8b4c;
    color: #ffffff !important;
    transform: translateY(-2px);
}




/* =========================================================
   Donji footer
   ========================================================= */

.tarafarm-footer__bottom {
    border-top: 1px solid #e6e9ec;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    gap: 25px;
}

.tarafarm-footer__copyright {
    margin: 0 !important;
    padding: 0;
    color: #778291;
    font-size: 11px;
    line-height: 1.5;
}

/* =========================================================
   Fokus za tastaturu
   ========================================================= */

.tarafarm-footer a:focus-visible {
    outline: 2px solid #3c8b4c;
    outline-offset: 3px;
}


/* =========================================================
   Tablet
   ========================================================= */

@media only screen and (max-width: 1100px) {
    .tarafarm-footer__main {
        padding: 52px 0 42px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 60px;
    }
}


/* =========================================================
   Mobitel
   ========================================================= */

@media only screen and (max-width: 690px) {

    .tarafarm-footer__main {
        padding: 42px 0 35px;
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tarafarm-footer__logo {
        margin-bottom: 20px;
    }

    .tarafarm-footer .tarafarm-footer__title {
        margin-bottom: 14px;
        font-size: 17px;
    }

    .tarafarm-footer__payment {
        margin-top: 24px;
    }

    .tarafarm-footer__copyright {
        max-width: 290px;
    }

    .tarafarm-footer__accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        cursor: pointer;
        padding: 4px 0 14px;
    }

    .tarafarm-footer__accordion-toggle .tarafarm-footer__title {
        margin: 0;
    }

    .tarafarm-footer__accordion-icon {
        position: relative;
        display: block;
        flex: 0 0 12px;
        width: 12px;
        height: 12px;
        transition: transform 0.25s ease;
    }

    .tarafarm-footer__accordion-icon::before,
    .tarafarm-footer__accordion-icon::after {
        position: absolute;
        top: 50%;
        width: 8px;
        height: 2px;
        content: "";
        background-color: currentColor;
        border-radius: 2px;
    }

    .tarafarm-footer__accordion-icon::before {
        left: 0;
        transform: rotate(45deg);
    }

    .tarafarm-footer__accordion-icon::after {
        right: 0;
        transform: rotate(-45deg);
    }

    .tarafarm-footer__accordion-toggle[aria-expanded="true"]
    .tarafarm-footer__accordion-icon {
        transform: rotate(180deg);
    }

    .tarafarm-footer__accordion .tarafarm-footer__navigation {
        display: grid;
        grid-template-rows: 0fr;
        visibility: hidden;
        opacity: 0;
        transition:
            grid-template-rows 0.3s ease,
            opacity 0.25s ease,
            visibility 0.3s ease;
    }

    .tarafarm-footer__accordion .tarafarm-footer__navigation > ul {
        min-height: 0;
        overflow: hidden;
    }

    .tarafarm-footer__accordion.is-open .tarafarm-footer__navigation {
        grid-template-rows: 1fr;
        visibility: visible;
        opacity: 1;
    }

    .tarafarm-footer__accordion.is-open .tarafarm-footer__menu {
        padding-bottom: 10px !important;
    }
}