/* ==================================================
   YUME – FOOTER
   ================================================== */

/* Skryje pouze obsah originální Shoptet patičky */

#footer > * {
    display: none !important;
}

#footer {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
}


/* ==================================================
   VLASTNÍ PATIČKA
   ================================================== */

.yume-footer {
    width: 100%;

    padding: 22px 20px;

    background: var(--yume-green);
    color: var(--yume-white);
}

.yume-footer__inner {
    width: min(
        calc(100% - 40px),
        var(--yume-container)
    );

    margin-inline: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px 16px;

    text-align: center;
}


/* ==================================================
   COPYRIGHT + ODKAZY
   ================================================== */

.yume-footer__copyright,
.yume-footer__links {
    margin: 0;

    font-size: 11px;
    line-height: 1.5;
}

.yume-footer__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


/* ==================================================
   ODKAZY
   ================================================== */

.yume-footer__link {
    position: relative;

    padding: 0 9px;

    color: var(--yume-white);

    font-weight: 600;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


/* Hover – tmavě růžový */

.yume-footer__link:hover,
.yume-footer__link:focus {
    color: var(--yume-hot-pink);
}


/* ==================================================
   ODDĚLOVACÍ ČÁRY
   ================================================== */

.yume-footer__link:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 1px;
    height: 11px;

    background: rgba(255, 255, 255, 0.55);
}


/* ==================================================
   MOBIL
   ================================================== */

@media (max-width: 767px) {

    .yume-footer {
        padding: 24px 14px;
    }

    .yume-footer__inner {
        width: 100%;

        flex-direction: column;

        gap: 12px;
    }

    .yume-footer__copyright,
    .yume-footer__links {
        font-size: 10px;
    }

    .yume-footer__links {
        row-gap: 8px;
    }

    .yume-footer__link {
        padding: 0 7px;
    }

}