/* ------------------------------ */
/* ----------- Header ----------- */
/* ------------------------------ */

.shop_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1005;
    -webkit-transition: top var(--transition-1), background-color var(--transition-1);
    -o-transition: top var(--transition-1), background-color var(--transition-1);
    transition: top var(--transition-1), background-color var(--transition-1);
}

body.admin-bar .shop_header {
    top: 32px;
}

.header:not(.header--cover) .shop_header, .page-scrolled .header.header--cover .shop_header {
    background-color: var(--color-black);
}

.shop_links li {
    position: relative;
    display: inline-block;
}

.shop_links li a, .shop_links li.site_nav__icon {
    -webkit-transition: opacity var(--transition-1);
    -o-transition: opacity var(--transition-1);
    transition: opacity var(--transition-1);
}

.shop_links li a {
    position: relative;
    color: var(--color-white);
}

.no-touchevents .shop_links li a:hover, .no-touchevents .shop_links li.site_nav__icon:hover {
    opacity: var(--opacity-1);
}

.shop_links li svg {
    width: 24px;
    height: 24px;
}

.shop_links li svg.cart {
    width: 25px;
    height: 25px;
}

.shop_links li svg.account path {
    stroke-width: 0.25px;
}

.shop_links li svg.search {
    stroke-width: 0.55px;
}

.shop_links li svg.cart path {
    fill: transparent;
    stroke-width: 1px;
    stroke: var(--color-white);
}

.account_dropdown__content ul li.logout {
    line-height: 1.3;
}


/* Logo -> auch bei checkout.css anpassen*/
.shop_logo {
    position: absolute;
    z-index: 21;
    top: 0;
    line-height: 0;
}

.shop_logo a {
    display: block;
    overflow: hidden;
}

.shop_logo a svg {
    width: var(--logo-width);
    height: var(--logo-height);
    background-color: var(--color-black);
}

.shop_logo a svg use {
    fill: var(--color-white);
}


/* Links */
.shop_links, .shop_links > ul > li > a, .shop_links__cart__trigger {
    height: var(--header-height);
}

.shop_links {
    position: relative;
}

.shop_links > ul > li > a, .shop_links__cart__trigger {
    position: relative;
    display: block;
}

.shop_links a > svg, .shop_links__cart__trigger > svg {
    position: absolute;
    top: 50%;
    left: var(--spacing-2);
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.shop_links li svg:not(.cart) path {
    fill: var(--color-white);
    stroke: var(--color-white);
}

.shop_links li svg.cart path {
    fill: transparent;
    stroke: var(--color-white);
}

.shop_links__cart__trigger--count::after {
    content: "";
    position: absolute;
    background-color: var(--color-warning);
    border: 1px solid transparent;
    border-radius: 50%;

    -webkit-transition: border-color var(--transition-1);
    -o-transition: border-color var(--transition-1);
    transition: border-color var(--transition-1);
}

.shop_header:not(.shop_header--black) .shop_links__cart__trigger--count::after {
    border-color: var(--color-white);
}

.shop_header.shop_header--black .shop_links__cart__trigger--count::after, .header:not(.header--cover) .shop_header:not(.shop_header--black) .shop_links__cart__trigger--count::after,
.page-scrolled .header.header--cover .shop_header .shop_links__cart__trigger--count::after {
    border-color: var(--color-black);
}


/* ------------------------------ */
/* --------- Site Cover --------- */
/* ------------------------------ */

section.section--site_cover {
    padding-top: 0;
    padding-bottom: 0;
}

section.section--site_cover > div {
    max-width: 100%;
    padding: 0;
}

.site_cover {
    position: relative;
    z-index: 1;
    padding: 0;
    background-color: var(--color-black);
}

.site_cover__headline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    color: var(--color-white);
}

.site_cover__headline h1 {
    margin-bottom: 0;
}

.site_cover.site_cover--small .site_cover__headline h1 {
    max-width: unset;
    text-align: center;
}

.headline_subtitle h2 {
    font-size: var(--font-size-4);
    font-weight: normal;
    line-height: var(--line-height-2);
    margin-bottom: 0;
}

.site_cover__media {
    height: 100%;
}

.site_cover__media .picture_container::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(20%, rgba(0, 0, 0, 0.0)), color-stop(60%, rgba(0, 0, 0, 0.0)), to(rgba(0, 0, 0, 0.5)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0) 20%, rgba(0, 0, 0, 0.0) 60%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0) 20%, rgba(0, 0, 0, 0.0) 60%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.site_cover--video .video_container .picture_container {
    z-index: 1;
}
  
.site_cover--video #video_player.is-playing + .picture_container {
    opacity: 0;
}


/* Scroll bottom */
.scroll_bottom {
    position: relative;
}

.scroll_bottom a {
    position: relative;
    display: inline-block;
    bottom: 0;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 50%;

    -webkit-animation-name: toBottom;

            animation-name: toBottom;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

@-webkit-keyframes toBottom {
    50% {
        bottom: 20px;
    }
}

@keyframes toBottom {
    50% {
        bottom: 20px;
    }
}

.scroll_bottom svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    stroke: var(--color-white);
    stroke-width: 3px;
}



/* ------------------------------ */
/* -------- Media Queries ------- */
/* ------------------------------ */

@media all and (min-width: 768px) {

    .headline_subtitle {
        margin-top: var(--spacing-3);
    }

}


@media all and (min-width: 992px) {

    .shop_header--black {
        background-color: var(--color-black);
    }

    .shop_logo {
        left: var(--spacing-6-6);
    }

    .shop_links {
        right: -8px;
    }

    .headline_subtitle.row_simple h2 {
        max-width: calc(100% - 200px);
        padding-right: var(--spacing-6);
        margin-bottom: 0;
    }

    .site_cover__headline .button {
        margin-top: 0 !important;
    }

}


@media all and (min-width: 1240px) {

    .site_cover.site_cover--normal {
        height: 65svh;
        max-height: 650px;
        min-height: 500px;
    }

    .site_cover.site_cover--small {
        height: 50svh;
        max-height: 550px;
        min-height: 425px;
    }

    .site_cover.site_cover--full {
        height: 100svh;
        min-height: 650px;
    }

    .site_cover.site_cover--normal .site_cover__headline, .site_cover.site_cover--small .site_cover__headline {
        padding-bottom: var(--spacing-7);
    }

    .shop_links > ul > li:first-child {
        margin-left: 0;
    }

    .shop_links > ul > li:not(.hide-desktop) {
        margin-left: var(--spacing-4);
    }

    .shop_links > ul > li > a, .shop_links__cart__trigger {
        width: calc(22px + 2 * var(--spacing-2));
    }

    .shop_links__cart__trigger--count::after {
        top: 44px;
        right: 4px;
        width: 8px;
        height: 8px;
    }

    .scroll_bottom a {
        width: 60px;
        height: 60px;
    }
    
    .scroll_bottom svg {
        width: 20px;
        height: 20px;
    }

}


@media all and (min-width: 1400px) {

    .shop_logo a svg {
        padding: 24px 0px 0px;
    }

    .site_cover.site_cover--full .site_cover__headline {
        padding-bottom: var(--spacing-8);
    }

}


@media all and (max-width: 1399.98px) and (min-width: 1240px) { 

    .site_cover.site_cover--full .site_cover__headline {
        padding-bottom: var(--spacing-7);
    }

}


@media all and (max-width: 1399.98px) and (min-width: 1240px) {

    :root {
        --logo-height: 144px;
    }

    .shop_logo a svg {
        padding: 16px 0px 0px;
    }

}


@media all and (max-width: 1239.98px) and (min-width: 576px) {

    .site_cover.site_cover--full .site_cover__headline {
        padding-bottom: var(--spacing-6-5);
    }

    .shop_logo a svg {
        padding: 14px 0px 0px;
    }

}


@media all and (max-width: 1239.98px) and (min-width: 992px) {

    /* Header */
    .shop_links > ul > li {
        margin-left: 10px;
    }

    .shop_links > ul > li > a, .shop_links__cart__trigger {
        width: calc(20px + 2 * var(--spacing-2));
    }

    .shop_links > ul > li > a svg, .shop_links__cart__trigger svg {
        -webkit-transform: scale(.95) translateY(-50%);
            -ms-transform: scale(.95) translateY(-50%);
                transform: scale(.95) translateY(-50%);
    }

    .shop_links__cart__trigger--count::after {
        top: 40px;
        right: 3px;
        width: 7px;
        height: 7px;
    }

    /* Cover */
    .site_cover.site_cover--normal {
        height: 65vh;
        height: 65svh;
        max-height: 600px;
        min-height: 450px;
    }

    .site_cover.site_cover--small {
        height: 50vh;
        height: 50svh;
        max-height: 500px;
        min-height: 375px;
    }

    .site_cover.site_cover--full {
        height: 100vh;
        height: 100svh;
        min-height: 650px;
    }

    .site_cover.site_cover--normal .site_cover__headline, .site_cover.site_cover--small .site_cover__headline {
        padding-bottom: var(--spacing-6-5);
    }

    .scroll_bottom a {
        width: 54px;
        height: 54px;
    }
    
    .scroll_bottom svg {
        width: 18px;
        height: 18px;
    }

}


@media all and (max-width: 991.98px) {

    /* Header */
    .shop_header {
        background-color: var(--color-black);
    }

    .shop_logo {
        left: var(--spacing-6-5);
    }

    .shop_logo a svg {
        position: relative;
        left: -45px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .shop_links > ul > li:first-child {
        margin-left: 0;
    }

    .shop_links > ul > li > a, .shop_links__cart__trigger {
        width: calc(24px + 2 * var(--spacing-3));
    }

    .shop_links li svg.icon--menu {
        width: 23px;
        height: 23px;
        stroke-width: 1.5px;
        stroke: var(--color-white);
    }

    .shop_links li svg.cart {
        margin-top: -1px;
    }

    .shop_links__cart__trigger--count::after {
        top: 44px;
        right: 11px;
        width: 8px;
        height: 8px;
    }

    .shop_header:not(.shop_header--black) .shop_links__cart__trigger--count::after {
        border-color: var(--color-black) !important;
    }

    /* Cover */
    section.section--site_cover {
        padding-top: var(--header-height);
    }

    .site_cover.site_cover--full {
        height: calc(100vh - var(--header-height));
        height: calc(100svh - var(--header-height));
    }

    .headline_subtitle.row_simple h2 {
        width: 100%;
    }

    .headline_subtitle h2 {
        margin-bottom: 0;
    }

}


@media all and (max-width: 991.98px) and (min-width: 576px) { 

    .site_cover__headline .button {
        margin-top: var(--spacing-5) !important;
    }

    .shop_links {
        right: -14px;
    }

    .shop_links > ul > li {
        margin-left: 5px;
    }

    .shop_links > ul > li.site_nav__icon {
        margin-left: 3px;
        margin-right: 1px;
    }

    .scroll_bottom a {
        width: 54px;
        height: 54px;
    }
    
    .scroll_bottom svg {
        width: 18px;
        height: 18px;
    }

}


@media all and (max-width: 991.98px) and (min-width: 768px) { 

    .site_cover.site_cover--full {
        min-height: 600px;
    }

    .site_cover.site_cover--normal {
        height: 60vh;
        height: 60svh;
        max-height: 450px;
        min-height: 375px;
    }

    .site_cover.site_cover--small {
        height: 45vh;
        height: 45svh;
        max-height: 350px;
        min-height: 300px;
    }

    .site_cover.site_cover--normal .site_cover__headline, .site_cover.site_cover--small .site_cover__headline {
        padding-bottom: var(--spacing-6-5);
    }

    

}


@media all and (max-width: 767.98px) {

    .site_cover.site_cover--full {
        min-height: 400px;
        max-height: 500px;
    }

    .site_cover.site_cover--video {
        aspect-ratio: 768 / 500;
    }

    .site_cover.site_cover--normal, .site_cover.site_cover--small {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .site_cover.site_cover--normal:not(.site_cover--video) .picture_container--cover, .site_cover.site_cover--normal:not(.site_cover--video) .picture_container--cover picture,
    .site_cover.site_cover--small:not(.site_cover--video) .picture_container--cover, .site_cover.site_cover--small:not(.site_cover--video) .picture_container--cover picture {
        position: relative;
        height: auto;
    }

    .site_cover.site_cover--normal .site_cover__headline, .site_cover.site_cover--small .site_cover__headline {
        padding-bottom: var(--spacing-6-5);
    }

    .headline_subtitle {
        margin-top: var(--spacing-2);
    }
    
}


@media all and (max-width: 575.98px) {

    .shop_logo a {
        width: 72px;
    }

    .site_cover.site_cover--small .site_cover__headline h1 {
        font-size: var(--font-size-8);
    }

    .shop_links {
        right: -14px;
    }

    .site_cover.site_cover--full .site_cover__headline {
        padding-bottom: 32px;
    }

    .site_cover__headline .button {
        margin-top: var(--spacing-5) !important;
    }

    .scroll_bottom a {
        width: 50px;
        height: 50px;
    }
    
    .scroll_bottom svg {
        width: 16px;
        height: 16px;
    }

}


@media all and (max-width: 575.98px) and (min-width: 360px) {

    .shop_links > ul > li {
        margin-left: 3px;
    }

    .shop_links > ul > li.site_nav__icon {
        margin-left: 1px;
        margin-right: 1px;
    }

    .headline_subtitle h2 {
        font-size: calc(var(--font-size-4) - 2px)
    }

}


@media all and (max-width: 359.98px) {

    .shop_links > ul > li.site_nav__icon {
        margin-left: -2px;
        margin-right: 1px;
    }

    .headline_subtitle {
        margin-top: 2px;
    }

    .headline_subtitle h2 {
        font-size: calc(var(--font-size-4) - 3px)
    }

}