@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    *behavior: url(../../js/boxsizing.htc);
    /*
		If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

input[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
}

/*Scrollbar CSS*/
body *::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body *::-webkit-scrollbar-track {
    background: #cccccc;
}

body *::-webkit-scrollbar-thumb {
    background: #222;
}

/*font*/
@font-face {
    font-family: 'baskervville';
    src: url('../../fonts/Baskervville-Regular.ttf');
}

.ft-baskervville {
    font-family: 'baskervville';
}

@font-face {
    font-family: 'allison';
    src: url('../../fonts/Allison-Regular.ttf');
}

.ft-allison {
    font-family: 'allison';
}

@font-face {
    font-family: 'segoe-ui';
    src: url('../../fonts/segoeui.ttf');
}

.ft-segoe-ui {
    font-family: 'segoe-ui';
}

@font-face {
    font-family: 'segoe-ui bold';
    src: url('../../fonts/segoeuib.ttf');
}

.ft-segoe-ui-bold {
    font-family: 'segoe-ui bold';
}

@font-face {
    font-family: 'segoe-ui semibold';
    src: url('../../fonts/seguisb.ttf');
}

.ft-segoe-ui-semibold {
    font-family: 'segoe-ui semibold';
}

@font-face {
    font-family: 'segoe-ui italic';
    src: url('../../fonts/segoeuii.ttf');
}

.ft-segoe-ui-italic {
    font-family: 'segoe-ui italic';
}

.window-height {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 0px;
}

.window-width {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 0px;
}


/* Global */
html,
body {
    padding: 0px;
    margin: 0px;
    width: 100%;
    overflow-x: hidden;
    color: #222;
}

body {
    /* opacity: 0; */
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

a:focus {
    outline: 0;
}

input:focus {
    outline: 0px;
}

.container {
    position: relative;
    display: block;
}

.header-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 50px;
    padding: 15px 0px 0px;
    z-index: 10;
}

.header-container > * {
    align-items: end;
}

/* Header B — white pinned header */
.header-pinned {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    z-index: 11;
    display: none;
}

.header-pinned.is-visible {
    display: block;
}

.header-pinned.is-visible ~ .menu-pop {
    top: 80px;
    max-height: calc(100vh - 80px - 60px);
}

.header-pinned .header-logo {
    top: calc((100% - 30px) / 2);
}

.header-pinned .header-logo > img {
    height: 30px;
}

.header-pinned .header-nav-group {
    padding-top: 30px;
}

.header-pinned .header-nav-group > * {
    color: #222;
}

.header-pinned .header-right-group {
    padding-top: 15px;
}

.header-pinned .header-right-group > * {
    color: #222;
}

.header-pinned .currency-label {
    color: #222;
}

.header-pinned .currency-label:after {
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
}

.header-pinned .header-right-item.icon.search {
    background-image: url('../../img/front/temp/search-icon-dark.png');
}

.header-pinned .header-right-item.icon.search:before {
    opacity: 0;
}

.header-pinned .header-right-item.icon.profile {
    background-image: url('../../img/front/temp/profile-icon-dark.png');
}

.header-pinned .header-right-item.icon.profile:before {
    opacity: 0;
}

.header-pinned .header-right-item.icon.cart {
    background-image: url('../../img/front/temp/cart-icon-dark.png');
}

.header-pinned .header-right-item.icon.cart:before {
    opacity: 0;
}

.header-logo {
    position: absolute;
    top: calc((100% - 30px) / 2);
    left: 60px;
    display: block;
    z-index: 1;
    height: 30px;
}

.header-logo > img {
    height: 30px;
}

/* Logo switching */
.logo-black { display: none; }
.logo-white { display: block; }

/* Non-transparent pages: always show black logo */
.header-container:not(.header-transparent) .logo-white { display: none; }
.header-container:not(.header-transparent) .logo-black { display: block; }

/* Non-transparent pages: currency label and arrow always dark */
.header-container:not(.header-transparent) .currency-label { color: #222; }
.header-container:not(.header-transparent) .currency-label:after {
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
}


.header-nav-group {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0px;
    top: 5px;
}

.header-nav-group > * {
    font-size: 16px;
    align-content: bottom;
    position: relative;
    display: inline-block;
    margin: 0px 14px;
    padding-bottom: 15px;
    cursor: pointer;
    color: #222;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

/* Transparent header pages (home, about, shoe-guides): white nav at top */
.header-transparent.headroom--top .header-nav-group > * {
    color: #fff;
}

.header-nav-group > *:hover {
    color: #222;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.header-nav-group > *:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 0px;
    background: transparent;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-transparent.headroom--top .header-logo:hover .logo-white {
    display: none;
}

.header-transparent.headroom--top .header-logo:hover .logo-black {
    display: block;
}

.header-transparent.headroom--top .header-nav-group > *:hover {
    color: #222;
}

.header-transparent.headroom--top .header-right-group > *:hover {
    color: #222;
}

.header-transparent.headroom--top .header-right-item.icon.search:hover {
    background: transparent;
}
.header-transparent.headroom--top .header-right-item.icon.search:hover:before {
    opacity: 1;
}
.header-transparent.headroom--top .header-right-item.icon.profile:hover {
    background: transparent;
}
.header-transparent.headroom--top .header-right-item.icon.profile:hover:before {
    opacity: 1;
}
.header-transparent.headroom--top .header-right-item.icon.cart:hover {
    background: transparent;
}
.header-transparent.headroom--top .header-right-item.icon.cart:hover:before {
    opacity: 1;
}

.header-nav-group > *:hover:after {
    background: #222;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-group {
    position: absolute;
    /* top: 0px; */
    top: 9px;
    right: 60px;
    display: block;
    text-align: right;
}

.header-right-group > * {
    font-size: 12px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0px 0px 0px 30px;
    padding-bottom: 15px;
    cursor: pointer;
    color: #222;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

/* Transparent header pages: white right-group at top */
.header-transparent.headroom--top .header-right-group > * {
    color: #fff;
}

.header-right-group > *:hover {
    color: #222;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.header-right-group > *.active {
    color: #222 !important;
}

.header-right-group > *:first-child {
    margin-left: 0px;
}

.header-right-item.icon {
    padding-bottom: 15px;
    height: calc(22px + 15px);
    top: 15px;
    font-size: 11px;
    line-height: 26px;
    text-align: center;

}

.header-right-item.icon.search {
    background: url('../../img/front/temp/search-icon-white.png') no-repeat top center;
    /* height: 22px; */
    width: 22px;
    padding-bottom: 15px;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-right-item.icon.search:hover {
    background: transparent;

    -webkit-transition: background 0.4s, color 0.4s;
    -moz-transition: background 0.4s, color 0.4s;
    -ms-transition: background 0.4s, color 0.4s;
    transition: background 0.4s, color 0.4s;
}

.header-right-item.icon.search:before {
    background: url('../../img/front/temp/search-icon-dark.png') no-repeat top center;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    content: '';
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.not-active.headroom-- .header-right-item.icon:before {
    /* opacity: 1 !important; */
}

/* Non-transparent pages: show dark icons */
.header-container:not(.header-transparent) .header-right-item.icon.search {
    background: transparent;
}
.header-container:not(.header-transparent) .header-right-item.icon.search:before {
    opacity: 1;
}
.header-container:not(.header-transparent) .header-right-item.icon.profile {
    background: transparent;
}
.header-container:not(.header-transparent) .header-right-item.icon.profile:before {
    opacity: 1;
}
.header-container:not(.header-transparent) .header-right-item.icon.cart {
    background: transparent;
}
.header-container:not(.header-transparent) .header-right-item.icon.cart:before {
    opacity: 1;
}

.header-right-item.icon.search:hover:before {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-right-item.icon.active:before {
    opacity: 1 !important;
}

.header-right-item.icon.profile {
    background: url('../../img/front/temp/profile-icon-white.png') no-repeat top center;
    /* height: 22px; */
    width: 22px;
    padding-bottom: 15px;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-item.icon.profile:hover {
    background: transparent;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-item.icon.active {
    background: transparent !important;
}

.header-right-item.icon.profile:before {
    background: url('../../img/front/temp/profile-icon-dark.png') no-repeat top center;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    content: '';
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-right-item.icon.profile:hover:before {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-right-item.icon.cart {
    background: url('../../img/front/temp/cart-icon-white.png') no-repeat top center;
    /* height: 22px; */
    width: 19px;
    padding-bottom: 15px;
    line-height: 27px;
    padding-left: 2px;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-item.icon.cart:hover {
    background: transparent;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-item.icon.cart:before {
    background: url('../../img/front/temp/cart-icon-dark.png') no-repeat top center;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    content: '';
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-right-item.icon.cart:hover:before {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}


.header-right-item.icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 0px;
    background: transparent;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-item.icon:hover:after {
    background: #222;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.header-right-item.icon.active:after {
    background: #222 !important;
}

.header-right-item.currency {
    width: calc(147px + (15px * 2));
}

.currency-label {
    line-height: 50px;
    color: #fff;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.currency-label:hover {
    color: #222;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -ms-transition: color 0.4s;
    transition: color 0.4s;
}

.currency-label.active {
    color: #222 !important;
}

.currency-label:after {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    top: -3px;
    width: 8px;
    aspect-ratio: 1/1;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);

    -webkit-transition: top 0.4s, -webkit-transform 0.4s, border 0.4s;
    -moz-transition: top 0.4s, -moz-transform 0.4s, border 0.4s;
    -ms-transition: top 0.4s, -ms-transform 0.4s, border 0.4s;
    transition: top 0.4s, transform 0.4s, border 0.4s;
}

.not-active.headroom-- .currency-label:after {
    /* border-left: 2px solid #222;
    border-bottom: 2px solid #222; */
}

.currency-label:hover:after {
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;

    -webkit-transition: border 0.4s, top 0.4s, -webkit-transform 0.4s;
    -moz-transition: border 0.4s, top 0.4s, -webkit-transform 0.4s;
    -ms-transition: border 0.4s, top 0.4s, -webkit-transform 0.4s;
    transition: border 0.4s, top 0.4s, -webkit-transform 0.4s;
}

.currency-label.active:after {
    top: 3px;
    border-left: 2px solid #222 !important;
    border-bottom: 2px solid #222 !important;

    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);

    -webkit-transition: top 0.4s, -webkit-transform 0.4s;
    -moz-transition: top 0.4s, -moz-transform 0.4s;
    -ms-transition: top 0.4s, -ms-transform 0.4s;
    transition: top 0.4s, transform 0.4s;
}

.currency-hide {
    position: absolute;
    display: none;
    right: 0px;
    top: 40px;
    line-height: 30px;
    padding: 0px 15px;
    background: #fff;
    color: #222 !important;
}




.not-active.headroom--unpinned {
    opacity: 0 !important;
    top: -80px !important;

    -webkit-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, left 0.4s;
}

.not-active.nav-opened .headroom--unpinned {
    opacity: 1 !important;
    top: 35px !important;

    -webkit-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, left 0.4s;
}

.not-active.headroom--pinned {
    opacity: 0 !important;
    top: -80px !important;

    -webkit-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, left 0.4s;
}

.not-active.headroom--top {
    opacity: 1 !important;
    top: 35px !important;

    -webkit-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, left 0.4s;
}

.active.headroom--top {
    opacity: 1 !important;
    top: 35px !important;
    /* color: #222;
    background: #fff !important; */

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}



.not-active.headroom-- {
    /* color: #222;
    background: #fff; */

    -webkit-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -moz-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    -ms-transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
    transition: opacity 0.4s, top 0.4s, background 0.4s, left 0.4s;
}

.not-active.headroom-- .header-nav-list.box {
    /* color: #222;
    border: 1px solid #fff;
    color: #222;
    background: #fff; */

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.not-active.headroom--not-top .header-nav-list.box:hover {
    /* border: 1px solid #ec3137;
    color: #222;
    background: #fff; */

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.not-active.headroom--not-top .header-nav-list.group .after {
    /* color: #222;
    border-left: 2px solid #fff;
    color: #222;
    border-bottom: 2px solid #fff; */
}

.not-active.headroom--not-top .header-nav-list.group:hover:after {
    /* border-left: 2px solid #ec3137;
    border-bottom: 2px solid #ec3137; */
}

.footer-container {
    position: fixed;
    bottom: 0px;
    left: 0px;
    display: block;
    width: 100%;
    text-align: center;
    background: #fff;
    font-size: 14px;
    height: 50px;
    align-content: center;
    align-items: center;
    letter-spacing: 1px;
}

.footer-container img {
    margin-right: 7px;
}

.footer-cp > * {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.footer-wa {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: block;
    width: 240px;
    height: 50px;
    background: #000;
    color: #fff;
    line-height: 48px;
    letter-spacing: 0.3px;
}

.footer-wa > * {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.menu-pop {
    position: fixed;
    top: 96px;
    left: 0px;
    display: none;
    width: 100%;
    text-align: center;
    background: #fff;
    max-height: calc(100vh - 96px - 60px);
    /* min-height: 563px; */
    /* align-content: center; */
    /* align-items: center; */
    z-index: 10;
    font-size: 0px;
    color: #fff;
    padding: 30px 0px 0px;
    overflow: auto;
}

.more-container > * {
    font-size: 16px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 256px;
    aspect-ratio: 256/385;
    margin: 0px 12px 60px;
    opacity: 0;
    left: 100px;
    text-decoration: none;
    color: #fff;
}

.more-item.about {
    background-size: cover !important;

    -webkit-transition: background 0.4s;
    -moz-transition: background 0.4s;
    -ms-transition: background 0.4s;
    transition: background 0.4s;
}

.more-item:before {
    content: '';
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    z-index: -1;
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.more-item:hover:before {
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.more-item:after {
    content: '';
    position: absolute;
    display: block;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    z-index: -1;
    opacity: 1;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.more-item:hover:after {
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.more-item.about:before {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_tailored_for_your_day_behind_the_shoes_about_us_menu_1.webp') no-repeat center center;
}

.more-item.about:after {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_tailored_for_your_day_behind_the_shoes_about_us_menu_2.webp') no-repeat center center;
}

.more-item.blogs:before {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_step_into_our_world_read_our_journal_blogs_menu_1.webp') no-repeat center center;
}

.more-item.blogs:after {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_step_into_our_world_read_our_journal_blogs_menu_2.webp') no-repeat center center;
}

.more-item.faq:before {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_looking_for_answers_find_it_here_faq_menu_1.webp') no-repeat center center;
}

.more-item.faq:after {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_looking_for_answers_find_it_here_faq_menu_2.webp') no-repeat center center;
}

.more-item.contact:before {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_we_love_to_hear_from_you_get_in_touch_contact_us_menu_1.webp') no-repeat center center;
}

.more-item.contact:after {
    background: url('../../img/front/Menu/jolie_moda_wedding_shoes_we_love_to_hear_from_you_get_in_touch_contact_us_menu_2.webp') no-repeat center center;
}

.more-item-inside-group {
    position: absolute;
    display: block;
    bottom: 30px;
    left: 0px;
    padding: 0px 20px;
}

.more-item-inside-group > * {
    position: relative;
    display: block;
    text-align: left;
}

.more-item-title {
    font-size: 52px;
    line-height: 28px;
    margin-bottom: 20px;
}

.more-item-link {
    display: table;
    font-size: 12px;
    padding-left: 0px;

    -webkit-transition: padding 0.4s;
    -moz-transition: padding 0.4s;
    -ms-transition: padding 0.4s;
    transition: padding 0.4s;
}

.more-item-link:after {
    content: '→';
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 3px;
    color: #fff;

    -webkit-transition: margin 0.4s;
    -moz-transition: margin 0.4s;
    -ms-transition: margin 0.4s;
    transition: margin 0.4s;
}

.more-item-link:hover {
    padding-left: 10px;

    -webkit-transition: padding 0.4s;
    -moz-transition: padding 0.4s;
    -ms-transition: padding 0.4s;
    transition: padding 0.4s;
}

.more-item-link:hover:after {
    margin-left: 8px;

    -webkit-transition: margin 0.4s;
    -moz-transition: margin 0.4s;
    -ms-transition: margin 0.4s;
    transition: margin 0.4s;
}

.more-item-caption {
    position: absolute;
    display: block;
    top: calc(100% + 10px);
    left: 20px;
    color: #222;
    font-size: 16px;
}

.blur {
    filter: blur(5px);
}

.search-container {
    padding: 60px 0px 0px;
    overflow: hidden;
}

.search-container > * {
    opacity: 0;
    left: 100px;
}

.search-text-group {
    position: relative;
    display: block;
    width: calc(100% - 40px);
    max-width: 1097px;
    margin: 0px auto 45px;
    height: 50px;
    font-size: 0px;
    text-align: left;
}

.search-text-group > * {
    font-size: 14px;
}

.search-text-input {
    width: calc(100% - 186px);
    height: 100%;
    padding: 0px 20px;
    border: 1px solid #8e8e8e;
}

.search-text-submit {
    width: 130px;
    height: 100%;
    padding: 0px 20px;
    height: 100%;
    text-align: center;
    background: #222;
    color: #fff;
    border: 1px solid #222;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.search-text-submit:hover {
    background: #fff;
    color: #222;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.search-close {
    position: absolute;
    display: block;
    width: 57px;
    height: 100%;
    right: 0px;
    top: 0px;
    cursor: pointer;
}

.search-close:before {
    content: '';
    position: absolute;
    display: block;
    width: 27px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc((100% - 27px) / 2);
    background: #222;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.search-close:after {
    content: '';
    position: absolute;
    display: block;
    width: 27px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc((100% - 27px) / 2);
    background: #222;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.search-check-group {
    position: relative;
    display: block;
    width: 100%;
    max-height: calc(100vh - 240px - 60px);
    font-size: 0px;
    overflow: auto;
    padding-left: 60px;
    /* padding-left: calc(60px / 1536 * 100%); */
    text-align: left;
    padding-bottom: 50px;
}

.search-check-group > * {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    width: calc((100% - (60px * 1)) / 6);
    color: #222;
}

.search-group > * {
    position: relative;
    display: block;
    margin-bottom: 7px;
}

.search-title {
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.search-list {
    margin-left: -3px;
}

.right-pop {
    position: fixed;
    top: 96px;
    right: 0px;
    display: none;
    width: 340px;
    text-align: left;
    background: #fff;
    height: calc(100vh - 96px);
    z-index: 10;
    color: #222;
    padding: 30px 0px 0px;
    overflow: auto;
    font-size: 14px;
}

.profile-container {
    padding: 60px 25px;
}

.profile-item {
    position: relative;
    display: block;
    width: 100%;
    line-height: 50px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.2);
    padding: 0px 0px 0px 0px;
    top: 100px;
    opacity: 0;

    -webkit-transition: padding 0.4s;
    -moz-transition: padding 0.4s;
    -ms-transition: padding 0.4s;
    transition: padding 0.4s;
}

.profile-item:hover {
    padding: 0px 0px 0px 10px;

    -webkit-transition: padding 0.4s;
    -moz-transition: padding 0.4s;
    -ms-transition: padding 0.4s;
    transition: padding 0.4s;
}

.right-close {
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 15px !important;
    cursor: pointer;
}

.right-close:before {
    content: '';
    position: absolute;
    display: block;
    width: 27px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc((100% - 27px) / 2);
    background: #222;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.right-close:after {
    content: '';
    position: absolute;
    display: block;
    width: 27px;
    height: 2px;
    top: calc(50% - 1px);
    left: calc((100% - 27px) / 2);
    background: #222;

    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.cart-container {
    padding: 60px 0 0;
    overflow: hidden;
    flex-direction: column;
}

.cart-empty {
    text-align: center;
    width: 100%;
    position: relative;
    display: block;
}

.cart-empty a {
    position: relative;
    display: inline-block;
    vertical-align: top;
    left: 0px;

    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    transition: left 0.4s;
}

.cart-empty a span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    left: 0px;

    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    transition: left 0.4s;
}

.cart-empty a:hover {
    left: 10px;

    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    transition: left 0.4s;
}

.cart-empty a:hover span {
    left: 5px;

    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    transition: left 0.4s;
}

.cart-list-group {
    position: relative;
    display: block;
    width: 100%;
    padding: 0px 25px;
    height: 100%;
    overflow: auto;
}

.cart-list-item {
    position: relative;
    display: block;
    padding: 15px 0px;
    border-bottom: 2px solid rgba(34, 34, 34, 0.2);
    margin-bottom: 15px;
}

.cart-list-img {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 95px;
}

.cart-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 24px;
    overflow: hidden;
    min-height: 0;
}

.cart-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.cart-empty .cart-link {
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cart-list-group {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.cart-list-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 16px 0;
}

.cart-list-divider {
    border: none;
    border-top: 1px solid #ede9e3;
    margin: 0;
}

.cart-list-img {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: #f0ede8;
}

.cart-list-img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-list-img-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e3db;
}

.cart-list-img-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    color: #999;
    padding: 0;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
    transition: color 0.15s;
}

.cart-list-img-close:hover {
    color: #1a1a1a;
}

.cart-list-desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-list-title {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.04em;
}

.cart-list-detail {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.cart-list-qty-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.cart-list-qty-minus,
.cart-list-qty-plus {
    width: 22px;
    height: 22px;
    border: 1px solid #c8c2ba;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #1a1a1a;
    flex-shrink: 0;
    padding: 0;
}

.cart-list-qty {
    font-size: 13px;
    color: #1a1a1a;
    min-width: 16px;
    text-align: center;
}

.cart-list-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.cart-list-price {
    font-size: 13px;
    color: #1a1a1a;
}

.cart-footer {
    border-top: 1px solid #e0dbd3;
    padding: 16px 0 24px;
    flex-shrink: 0;
}

.cart-subtotal-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-subtotal-label {
    font-size: 14px;
    color: #1a1a1a;
}

.cart-subtotal-price {
    font-size: 14px;
    color: #1a1a1a;
}

.cart-checkout {
    display: block;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.cart-checkout:hover {
    opacity: 0.8;
    color: #fff;
    text-decoration: none;
}

.cart-badge-count {
    font-size: 10px;
    line-height: 1;
}

/* ================================================================
   CTA / FOOTER SECTION (template global)
================================================================ */
.h2-cta {
    position: relative;
    display: block;
    overflow: hidden;
    background-image: url('../../img/front/jolie_moda_footer_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.h2-cta-upper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(400px, 47vw, 760px);
}

.h2-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 10, 0.55);
    z-index: 1;
}

.h2-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 760px;
    padding: clamp(40px, 5vw, 80px) 40px;
}

.h2-cta-title {
    font-size: clamp(36px, 4.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #fff;
}

.h2-cta-text {
    font-size: clamp(14px, 1.1vw, 18px);
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
    letter-spacing: 0.18px;
}

.h2-cta-btn {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1.8px;
    border: 1px solid #fff;
    padding: 0 48px;
    height: 72px;
    line-height: 72px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.h2-cta-btn:hover {
    background: #fff;
    color: #222;
    text-decoration: none;
}

/* ================================================================
   SITE FOOTER
================================================================ */
.site-footer {
    position: relative;
    display: block;
    width: 100%;
    z-index: 2;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 40px 0;
    clear: both;
}

.site-footer-inner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: flex-start;
}

/* Logo + social: 3 cols */
.site-footer-brand {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.site-footer-logo img {
    height: 28px;
    display: block;
}

.site-footer-tagline {
    padding-top: 5px;
}

.site-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #aaa;
}

.site-footer-social-link img {
    height: 16px;
    width: 16px;
    display: block;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.site-footer-social-link:hover img {
    opacity: 1;
}

.site-footer-copy {
    font-size: 11px;
    color: #666;
    margin: 0;
}

/* Description: 3 cols */
.site-footer-desc {
    grid-column: span 3;
}

/* Collections, Support, Explore: 2 cols each */
.site-footer-col {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 75px;
}

.site-footer-col-title {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.site-footer-desc-text {
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
    margin: 0;
    padding-top: 8px;
}

.site-footer-link {
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}

.site-footer-link:hover {
    color: #fff;
}

/* ================================================================
   MOBILE MENU
================================================================ */
.mobile-menu-trigger {
    display: none;
    position: absolute;
    top: 13px;
    right: 60px;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 20;
}

.mobile-menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: background 0.3s;
}

.header-container:not(.header-transparent) .mobile-menu-trigger span,
.header-transparent:not(.headroom--top) .mobile-menu-trigger span,
.header-pinned .mobile-menu-trigger span {
    background: #222;
}

.mobile-menu-container {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    overflow-y: auto;
    padding: 100px 40px 60px;
}

.mobile-menu-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.mobile-menu-close:before,
.mobile-menu-close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #222;
}

.mobile-menu-close:before {
    transform: rotate(45deg);
}

.mobile-menu-close:after {
    transform: rotate(-45deg);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu-item {
    position: relative;
    left: 100px;
    opacity: 0;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    padding: 10px 0;
}

.mobile-menu-item:hover {
    color: #222;
    text-decoration: none;
}

.mobile-menu-divider {
    position: relative;
    left: 100px;
    opacity: 0;
    border: none;
    border-top: 1px solid rgba(34, 34, 34, 0.2);
    margin: 24px 0;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
}

.mobile-menu-action {
    position: relative;
    left: 100px;
    opacity: 0;
    display: block;
    font-size: 15px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 0;
}

.mobile-menu-action:hover {
    color: #222;
    text-decoration: none;
}

.mobile-menu-action .cart-badge-count {
    display: inline-block;
    margin-left: 8px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 5px;
    font-size: 11px;
    text-align: center;
    background: #222;
    color: #fff;
    border-radius: 9px;
}

.mobile-menu-currency .currency-label {
    color: #222;
}

.mobile-menu-currency .currency-label:after {
    border-left: 2px solid #222;
    border-bottom: 2px solid #222;
}

.mobile-menu-currency .currency-hide {
    position: static;
    display: none;
    right: auto;
    top: auto;
    padding: 8px 0 0;
    background: transparent;
}

.mobile-menu-currency .currency-option {
    display: block;
    font-size: 13px;
    letter-spacing: normal;
    text-transform: none;
    color: #555;
    text-decoration: none;
    line-height: 1.8;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .header-nav-group,
    .header-right-group {
        display: none;
    }

    .mobile-menu-trigger {
        display: block;
    }

    .header-logo {
        left: 30px;
    }

    .search-check-group {
        padding-left: 24px;
        padding-right: 24px;
    }

    .search-check-group > * {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    .search-check-group > *:last-child {
        margin-bottom: 0;
    }

    .search-container,
    .cart-container,
    .header-pinned.is-visible ~ .search-container {
        inset: 0;
        width: auto;
        height: auto;
        max-height: none;
        padding-top: 100px;
        z-index: 1000;
        overflow-y: auto;
    }

    .search-check-group {
        max-height: none;
        overflow: visible;
    }

    .site-footer-inner {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 24px;
        gap: 24px 16px;
    }

    .site-footer-brand,
    .site-footer-desc {
        grid-column: 1 / -1;
    }

    .site-footer-col {
        grid-column: span 1;
        padding-left: 0;
    }
}
