/* ------------- */
/* HEADER -------- */
/* ------------- */

.site-header {
    font-family: var(--font-main-regular);
    height: 135px;


    .sticky-header {
        height: 100px !important;
    }


    .header-container {
        max-width: 1920px;
        padding-left: 40px;
        padding-right: 75px;
    }

    .site-header-wrapper {
        /* transition: */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        height: 135px;
        /* transition: transform .5s cubic-bezier(.4,0,0,1),-webkit-transform .5s cubic-bezier(.4,0,0,1);  */
        transition: .6s cubic-bezier(.19, 1, .22, 1) 0s;


    }

    .site-header-wrapper.sticky {
        transform: translateY(-55px);
        height: 100px;
        transition: all .7s cubic-bezier(.19, 1, .22, 1) 0s;

        .bottom-row {
            /* padding: 10px 0; */
            transition: all .7s cubic-bezier(.19, 1, .22, 1) 0s;
        }
    }

    a,
    span,
    p {
        font-family: var(--font-main-regular);
    }

    .header-support {
        font-size: var(--type-24);
        line-height: 1;
        margin-right: 20px;
    }

    .top-row {
        padding-top: 12px;
        padding-bottom: 12px;
        background-color: #1E1104;

        a {
            color: #ffffff;
        }
    }

    .bottom-row {
        padding-top: 18px;
        padding-bottom: 18px;
        background-color: #ffffff;
        border-bottom: 1px solid #B49E88;
    }

    .header-wishlist {
        margin-left:8px;
        margin-right: 11px;
    }

    .aws-container {
        .aws-search-form {
            height: auto;
        }

        .aws-search-field {
            border: unset;
            width: 200px;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
            display: inline-block;
            color: #ffffff;
            font-size: 20px;
            padding: 0;
            border-bottom: 1px solid #646363;


        }

        .aws-search-form .aws-form-btn {
            background: transparent;
            border: unset;
            margin: 0;

            svg {
                fill: #ffffff;
                display: none;
            }

            background-image: url('../../assets/icons/search-icon.svg');
            background-size: 19px 19px;
            background-repeat: no-repeat;
            background-position: center;
            width: 19px;
        }

        .aws-search-field:focus {
            outline: none;
            background-color: transparent;
        }

        .aws-search-field::placeholder {
            color: #646363;
        }

        /* &:hover {
            .aws-search-field {
                width: 190px;
                opacity: 1;
            }
        } */
    }


    .language-container {
        li {
            margin: 0;
            position: relative;

            a {
                font-size: var(--type-24);
                line-height: 1;
                width: 100%;
            }

            &:last-child {
                margin: 0;
                padding: 0;

                &:after {
                    content: none;
                }
            }

            &:hover {
                >.sub-menu {
                    display: block !important;
                }

                &:after {
                    transform: rotate(-180deg);
                }
            }
        }

        li.wpml-ls-current-language {
            padding-left: 0;
            padding-right: 20px;

            &:after {
                content: "";
                position: absolute;
                right: 0;
                top: 0;
                /* background-image: url('../assets/icons/down-arrow.svg'); */
                background-image: url('/../../assets/icons/down-arrow.svg');
                background-image: url('../../assets/icons/down-arrow.svg');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: bottom;
                width: 15px;
                height: 20px;
                transition: all .3s ease-in-out;
            }
        }

        .sub-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -4px;
            width: 100%;
            list-style: none;
            padding: 10px 0px 5px 7px;
            border-radius: 0 0 3px 3px;
            margin: 0;
            background: #1E1104;
            box-shadow: 1px 1px 14px rgba(0, 0, 0, .2);
            z-index: 100;
        }
    }
}




.site-header-logo {
    width: 143px;
}

#primary-menu {
    display: flex;
    gap: 9px;

    .menu-item {
        margin-left: 40px;

        &:first-child {
            margin-left: 0;
        }
    }

    .menu-item>a {
        font-size: var(--type-24);
        padding: 28px 0;
        position: relative;
        color:#1E1104;

        &:after {
            content: "";
            position: absolute;
            display: block;
            bottom: 0;
            left: 0;
            width: 100%;
            transform: scaleX(0);
            border-top: 1px solid #1E1104;
            padding-bottom: inherit;
            transform-origin: right;
            transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1), border-color 0.35s cubic-bezier(0.52, 0.01, 0.16, 1);
        }
    }

    a {
        position: relative;

        &:after {
            content: "";
            position: absolute;
            display: block;
            bottom: 0;
            left: 0;
            width: 100%;
            transform: scaleX(0);
            border-top: 1px solid #884538;
            padding-bottom: inherit;
            transform-origin: right;
            transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1), border-color 0.35s cubic-bezier(0.52, 0.01, 0.16, 1);
        }

        &:hover {
            &:after {
                transform: scaleX(1);
                transform-origin: left;
            }
        }
    }

    a.active {
        &:after {
            transform: scaleX(1);
            transform-origin: left;
        }
    }

    .mobile-back {
        display: none;
    }

    .submenu-level-2 {
        /* display: block !important; */
        display: none;
        width: 100%;
        max-width: 1111px;
        height: 632px;
        overflow: hidden;
        position: absolute;
        top: 65px;
        right: 75px;
        z-index: 100;
        background: #E6C6B1;
        padding-top: 57px;
        padding-left: 87px;

        .sub-menu-level-2 {
            width: 260px;
            padding-top: 16px;
            position: relative;

            &:after {
                content: "";
                position: absolute;
                right: 0;
                top: 0;
                width: 1px;
                height: 591px;
                background: #FFFFFF;
            }
        }

        .submenu-item {
            margin-bottom: 8px;

            >a {
                font-size: 24px;
                line-height: 1.2;
                color: #884538;
                transition: all .3s ease-in-out;

                &:after {
                    border-top: 1px solid #884538;
                }
            }
        }

        .color-red {
            a {
                color: #BE3A13;

                &:after {
                    border-top: 1px solid #BE3A13;
                }
            }
        }

    }

    .sub-menu-level-3 {
        padding-top: 16px;
        padding-bottom: 8px;
        display: none;

        .submenu-item-level-3 {
            >a {
                font-size: 14px;
                line-height: 22px;
                color: #884538;

                &:after {
                    border-top: 1px solid #884538;
                }
            }
        }
    }

    .submenu-level-4 {
        position: absolute;
        /* left: 347px;
        top: 0;
        padding-top: 57px;
        padding-left: 16px;
        width: calc(100% - 347px); */
        left: 260px;
        top: 0;
        padding-left: 16px;
        padding-top: 16px;
        width: 600px;
        display: none;

        .submenu-level-4-title {
            display: block;
            width: fit-content;
            color: #884538;
            font-size: 24px;
            line-height: 1.2;
            margin-bottom: 16px;

            &:after {
                border-top: 1px solid #884538;
            }

        }

        .submenu-items {
            .submenu-level-4-title {
                margin-bottom: 12px;
            }

            .sub-menu-level-4 {
                a {
                    font-size: 14px;
                    line-height: 22px;
                    color: #884538;
                }
            }
        }
    }

    .side-image-wrapper {
        .side-image {
            padding-left: 16px;

            img {
                height: 452px;
                width: 276px;
                object-fit: cover;
            }
        }
    }

    .side-image-menu {
        width: 173px;

        a {
            &:hover {
                &:after {
                    border-top: 1px solid #884538;
                    transform: scaleX(1);
                    transform-origin: left;
                }
            }
        }
    }

    .side-image-wrapper {
        position: relative;
        width: 100%;

        &:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 1px;
            height: 591px;
            background: #FFFFFF;
        }

        .side-image {
            height: 534px;

            img {
                position: absolute;
                top: -44px;
                left: 33px;
                opacity: 0;
                transition: opacity 0.3s ease;
                /* smooth fade */
            }
        }
    }


    .has-side-image {
        .submenu-level-4 {
            width: 500px;
        }
    }

    .megamenu-trends-row {
        max-width: 765px;
        width: calc(100% - 346px);
        position: absolute;
        right: 0;
        bottom: 0;
        /* &:before {
            content: "";
            width: 1px;
            height: 591px;
            background: #FFFFFF;
            position: absolute;
            left: 0;
            bottom: 0;
        } */
    }

    .trends-title {
        display: block;
        width: 100%;
        color: #BE3A13;
        font-size: 24px;
        margin-bottom: 22px;
        margin-left: 16px;
        width: fit-content;

        &:after {
            border-top: 1px solid #BE3A13;
        }
    }

    .megamenu-trends {
        display: flex;

        .megamenu-image {
            position: relative;
            flex: 1;
            text-align: center;

            span {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                left: 0;
                margin: 0 auto;
                font-size: 24px;
                color: #ffffff;
                text-align: center;
                width: fit-content;

                &:after {
                    content: "";
                    position: absolute;
                    display: block;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    transform: scaleX(0);
                    border-top: 1px solid #ffffff;
                    padding-bottom: inherit;
                    transform-origin: right;
                    transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1), border-color 0.35s cubic-bezier(0.52, 0.01, 0.16, 1);
                }
            }

            &:hover {
                span {
                    &:after {
                        transform: scaleX(1);
                        transform-origin: left;
                    }
                }
            }

            img {
                object-fit: cover;
                height: 233px;
                width: 100%;
            }
        }
    }
}

.margin-top-120 {
    margin-top: 120px;
}



.aws-container .aws-search-form .aws-search-btn_icon{
    width:24px !important;
}
.aws-container .aws-search-form .aws-search-btn{background-color: none !important;}
.aws-search-result .aws_result_title{
    font-family: var(--font-main-regular);
}
.aws-search-result .aws_result_title{
    color: #000;
}





.lg\:margin-top-120 {
    @media (width >= 64rem) {
      margin-top: 120px;
    }
}

@media(max-width:1024px){
    /* Homepage slider */
    .hero-slider {
        width: 100%;
        height: calc(100vh - 130px);
    }

    
    /* Header */
    .site-header-logo {
        width: 123px;
    }
    .site-header {
        height: 130px;
        .site-header-wrapper.sticky {
            transform: translateY(-37px);
            height: 62px;

            .main-navigation {
                top: 52px;
                 height: calc(100dvh - 62px);
            }
        }
        .site-header-wrapper {
            height: 130px;
        }
        #mobile-language-menu {
            color: #884538;
            font-size: 24px;
            li {
                display: flex;
            }
            .sub-menu {
                padding-left: 10px;
                position: relative;
                &:before {
                    content: "/";
                    position: absolute;
                    left: 0;
                    top: 0;
                }
            }
        }
        .header-container {
            padding-left: 20px;
            padding-right: 20px;
        }
        .header-wishlist {
            padding-left: 0;
            padding-right: 0;
            margin: 0;
        }

        .aws-container {
            .aws-search-form .aws-form-btn {
                background-size: 21px 21px;
                width: 21px;
            }
            .aws-search-field {
                font-size: 16px;
                font-size: 17px;
                line-height: 1;
                width: 130px;
            }
        }
        .top-row {
            padding-top: 6px;
            padding-bottom: 6px;
        }
        .bottom-row {
            padding-top: 26px;
            padding-bottom: 26px;
        }

        .main-navigation {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* padding-top: 80px; */
            position: absolute;
            top: 67px;
            width: 100%;
            height: calc(100dvh - 130px);
            background: #E6C6B1;
            left: 0;
            padding-left: 20px;
            transform: translateX(-100%);
            transition: all .3s ease-in-out;
        }
        #primary-menu {
            flex-direction: column;
            padding-top: 80px;
            .menu-item {
                margin-left: 0;
            }
            .menu-item {
                width: 100%;
            }
            .menu-item > a {
                font-size: 24px;
                padding: 3px 0;
                position: relative;
                display: inline-block;
                width: 100%;
                &:after {
                    content: none;
                }
            }
            a {
                color: #884538;
            }
            .color-red {
                a {
                    color: #BE3A13;
                    &:after {
                        border-top: 1px solid #BE3A13;
                    }
                }
            }
            .mobile-back {
                display: block;
                a {
                    margin-bottom: 20px;
                    &:before {
                        transform: matrix(1, 0.02, -0.02, 1, 0, 0) !important;
                    }
                }
            }
            a.mobile-back {
                /* margin-bottom: 20px; */
                &:before {
                    transform: matrix(1, 0.02, -0.02, 1, 0, 0) !important;
                }
            }
            .toggle-submenu.submenu-level-4-title {
                width: 100%;
                position: relative;
                &:before {
                    content: "←";
                    transform: matrix(-1, 0, 0, -1, 0, 0);
                    font-family: var(--font-main-regular);
                    font-size: 28px;
                    position: absolute;
                    right: 20px;
                    top: 0;
                    color: #884538;
                    transition: transform .3s ease-in-out;
                }
            }
            .toggle-submenu.submenu-level-4-title.active {
                &:before {
                    transform: matrix(0, -1, 1, 0, 0, 0);
                }
            }
            .side-image-menu {
                width: 100%;
                .sub-menu-level-4 {
                    width: 100%;
                    display: block !important;
                    li {
                        padding-bottom: 6px;
                    }
                    .side-image-hover {
                        &:before {
                            content: none;
                        }
                    }
                }
            }
            .side-image-wrapper {
                display: none;
            }
            .submenu-level-2.sf-mega.megamenu { display: none; position: static;}
            .submenu-level-2 {
                display: block;
                padding: 0;
                position: relative;
                height: auto;
                top: unset;
                right: unset;
                max-width: unset;
                .sub-menu-level-2 {
                    padding-top: 30px;
                    padding-bottom: 50px;
                    width: 100%;
                    position: static;
                    &:after {
                        content: none;
                    }
                }
                .submenu-item {
                     > a {
                        &:after {
                            content: none;
                        }
                    }
                }
            }
            .sub-menu-level-3 {
                padding: 0;
                .submenu-item-level-3 {
                    margin-bottom: 6px;
                    > a {
                       font-size: 24px;
                        padding: 3px 0;
                        position: relative;
                        display: inline-block;
                        width: 100%; 
                    }
                }
            }
            .has-submenu {
                a {
                    position: relative;
                    width: 100%;
                    display: inline-block;
                    font-size: 24px;
                    &:after {
                        content: none;
                    }
                    &:before {
                        content: "←";
                        transform: matrix(-1, 0, 0, -1, 0, 0);
                        font-family: var(--font-main-regular);
                        font-size: 28px;
                        position: absolute;
                        right: 20px;
                        top: 0;
                        color: #884538;
                        transition: transform .3s ease-in-out;
                    }
                }
                a.active {
                    &:before {
                        transform: matrix(0, -1, 1, 0, 0, 0);
                    }
                }
            }
            .no-submenu.has-submenu {
                .submenu-items {
                    margin-top: 0;
                    .sub-menu-level-4 {
                        display: block !important;
                    }
                    .sub-menu-level-4.level4 {
                        padding-top: 20px;
                    }
                }
            }
            /* .sf-with-ul {
                &:before {
                    content: "←";
                    transform: matrix(-1, 0, 0, -1, 0, 0);
                    font-family: var(--font-main-bold);
                    font-size: 28px;
                    position: absolute;
                    right: 20px;
                    top: 0;
                }
                &:after {
                    content: none;
                }
                &:focus-visible {
                    outline: none;
                }
            } */
           
            .megamenu-trends-row { 
                display: none !important;
            }
            .submenu-level-4-title.hidden {
                display: none;
            }
            .submenu-items {
                .sub-menu-level-4 {
                    display: none;
                    a {
                        font-size: 24px;
                        line-height: 28px;
                        &:before {
                            content: none;
                        }
                    }
                }
                .level4 {
                    padding: 30px 0 40px;
                    li {
                        padding-bottom: 6px;
                    }
                }
            }
            
            .sub-menu-level-3{
                z-index: 10;
            }
            .submenu-level-4 {
                z-index: 11;
                .submenu-items {
                    flex-direction: column;
                    margin-top: 20px;
                }
            }

            .sub-menu-level-3{
                display: block ;
                position: absolute;
                background:#E6C6B1;
                /* background-color: #5044f3; */
                top: 0;
                width: 100%;
                /* height: calc(100dvh - 300px); */
                height: 100%;
                left: 0;
                padding-left: 20px;
                padding-top: 28px;
                transition: transform .3s ease-in-out;
                transform: translateX(-100%);
                z-index: 10;
                max-height: calc(100% - 220px);
            }
            .submenu-level-4 {
                display: block ;
                position: absolute;
                background:#E6C6B1;
                /* background-color: #e63119; */
                top: 0;
                width: 100%;
                /* height: calc(100dvh - 300px); */
                height: 100%;
                left: 0;
                padding-left: 20px;
                padding-top: 28px;
                transition: transform .3s ease-in-out;
                transform: translateX(-100%);
                z-index: 10;
                /* max-height: calc(100% - 247px); */
                overflow-y: scroll;
            }
            .sub-menu-level-3.open,
            .submenu-level-4.open {
                transform: translateX(0%);

            }
        }
        .mobile-bottom-menu {
            /* background-color: #49e619; */
            height:220px;

            padding-bottom: 40px;
        }
        .mobile-extra-links {
            a {
                font-size: 24px;
                padding: 3px 0;
                position: relative;
            }
            a {
                color: #884538;
            }
            .color-red {
                a {
                    color: #BE3A13;
                    &:after {
                        border-top: 1px solid #BE3A13;
                    }
                }
            }
        }
    }
    .site-header.open-menu {
        .main-navigation {
            transform: translateX(0);
        }
    }

   
    


}







/* Hamburger Nav Icon  */
#nav-icon {
    width: 26px;
    height: 19px;
    position: relative;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 50%;
  background: var(--color-black);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 ;
}

#nav-icon span:nth-child(odd) {
  left:0px;
  border-radius: 0;
}

#nav-icon span:nth-child(1), #nav-icon span:nth-child(2) {
  top: 0px;
}

#nav-icon span:nth-child(3), #nav-icon span:nth-child(4) {
  top: 6px;
}
#nav-icon span:nth-child(4) {
  left: 49%;
}

#nav-icon span:nth-child(5), #nav-icon span:nth-child(6) {
  top: 12px;
}

#nav-icon.open span:nth-child(1),#nav-icon.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(2),#nav-icon.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(1) {
  left: 2px;
  top: 3px;
}

#nav-icon.open span:nth-child(2) {
  left: calc(50% - 2px);
  top: 3px;
}

#nav-icon.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon.open span:nth-child(5) {
  left: 1px;
  top: 12px;
}

#nav-icon.open span:nth-child(6) {
  left: calc(50% - 1px);
  top: 12px;
}