/* ==================================================
   YUME – HEADER
================================================== */

/* Skryje původní hlavičku šablony Samba */
#header {
    display: none;
}


/* ==================================================
   HORNÍ INFORMAČNÍ PROUŽEK
================================================== */

.yume-topbar {
    width: 100%;
    min-height: 30px;

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

    padding: 6px 20px;

    background: #1E3D16;
    color: #F5F5F5;

    font-size: 12px;
    font-weight: 600;
    text-align: center;

    text-transform: none !important;
    letter-spacing: 0;
}


/* ==================================================
   HLAVNÍ HEADER
================================================== */

.yume-header {
    position: relative;

    width: 100%;

    background: #F5F5F5;
    color: #1E3D16;

    z-index: 1000;
}

.yume-header__inner {
    position: relative;

    width: 100%;
    min-height: 125px;

    margin-inline: auto;
    padding: 9px 40px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* ==================================================
   LOGO
================================================== */

.yume-header__logo {
    display: block;

    width: 350px;
    max-width: 60vw;

    margin: -4px 0 5px;
}

.yume-header__logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==================================================
   NAVIGACE
================================================== */

.yume-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: nowrap;

    gap: 32px;

    min-height: 30px;

    transform: translateX(-15px);
}

.yume-nav a {
    position: relative;

    padding: 0;

    color: #1E3D16;

    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    white-space: nowrap;

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

.yume-nav a:hover {
    color: var(--yume-hot-pink);
}

.yume-nav a::after {
    display: none !important;
    content: none !important;
}


/* ==================================================
   IKONY / KOŠÍK
================================================== */

.yume-header__icons {
    position: absolute;

    left: calc(50% + 185px);
    bottom: 12px;

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

    z-index: 5;
}


/* Schová ikonku zákaznického účtu */
.yume-header__icons .yume-header__icon:first-child {
    display: none;
}


/* ==================================================
   KOŠÍK
================================================== */

.yume-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    color: #1E3D16;

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

.yume-header__icon:hover {
    color: var(--yume-hot-pink);
    transform: scale(1.06);
}

.yume-header__icon svg {
    display: block;

    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;

    transform: translateY(-1px);
}


/* ==================================================
   MOBILNÍ TLAČÍTKO
================================================== */

.yume-menu-toggle {
    display: none;
}


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

@media (max-width: 767px) {

    .yume-topbar {
        min-height: 26px;

        padding: 5px 10px;

        background: #1E3D16;
        color: #F5F5F5;

        font-size: 10px;
        font-weight: 600;

        text-transform: none !important;
        letter-spacing: 0;
    }


    /* Header */

    .yume-header {
        background: #F5F5F5;
    }


    .yume-header__inner {
        min-height: 105px;

        padding: 8px 16px 9px;
    }


    /* Logo */

    .yume-header__logo {
        width: 215px;
        max-width: 58vw;

        margin: -2px 0 8px;
    }


    /* ==================================================
       MOBILNÍ NAVIGACE
       ================================================== */

    .yume-nav {
        width: calc(100% - 54px);

        gap: 0;

        min-height: 30px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        transform: translateX(-16px);
    }

    .yume-nav a {
        padding: 0;

        color: #1E3D16;

        font-size: 11px;
        font-weight: 500;
        line-height: 1.2;

        letter-spacing: 0.055em;

        white-space: nowrap;
    }

    .yume-nav a::after {
        display: none !important;
        content: none !important;
    }


    /* ==================================================
       MOBILNÍ KOŠÍK
       ================================================== */

    .yume-header__icons {
        left: auto;

        /* Košík opticky hned za Kontakt */
        right: 15px;
        bottom: 9px;
    }

    .yume-header__icon {
        width: 27px;
        height: 27px;

        color: #1E3D16;
    }

    .yume-header__icon svg {
        width: 20px;
        height: 20px;

        stroke-width: 1.6;

        transform: translateY(-1px);
    }
}


/* ==================================================
   MENŠÍ MOBILY
================================================== */

@media (max-width: 480px) {

    .yume-header__inner {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* Menu pořád zůstane dobře čitelné */

    .yume-nav {
        width: calc(100% - 48px);

        gap: 0;

        transform: translateX(-15px);
    }

    .yume-nav a {
        font-size: 10.5px;

        letter-spacing: 0.04em;
    }


    /* Košík */

    .yume-header__icons {
        right: 9px;
        bottom: 9px;
    }

    .yume-header__icon {
        width: 26px;
        height: 26px;
    }

    .yume-header__icon svg {
        width: 19px;
        height: 19px;
    }
}


/* ==================================================
   MENU JEN NA HOMEPAGE
================================================== */

/* Defaultně menu schováme */
.yume-nav {
    display: none;
}

/* Na homepage ho zase ukážeme */
body.in-index .yume-nav,
body.type-index .yume-nav,
body.homepage .yume-nav {
    display: flex;
}