:root {
    --windowHeight: 100vh;
    --windowScrollY: 0px;
    --scrollbar-width: 0px;
    --headerHeight: 0px;
    --red: #A6192E;
    --gold: #caba7c;
    --text: #4E566D;
    --text-light: #777E91;
    --text-dark: #242436;
}

.faux-body{
    padding-top: 0;
}
.faux-body main{
    padding-top: var(--headerHeight);
}
.faux-body .modern p{
    margin-bottom: 1em;
}
.faux-body .modern p:last-child{
    margin-bottom: 0;
}
.modern{
    font-family: 'Lora', serif;
}
.modern a{
    transition: all 0.3s linear;
}
.modern .btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 48px;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    margin: 0;
    padding: 0 16px;
    background: transparent;
    color: var(--text);
    box-sizing: border-box;
    transition: all 0.3s linear;
}
.modern .btn:hover{
    color: var(--red);
}
.modern .btn.small{
    height: 40px;
    font-size: 14px;
}
.modern .btn.btn-red{
    background: var(--red);
    color: #fff;
}
.modern .btn.btn-red:hover{
    background: var(--gold);
}
.modern .btn.btn-gold{
    background: var(--gold);
    color: #fff;
}
.modern .btn.btn-gold:hover{
    background: var(--red);
}
.modern .btn.btn-red-border{
    border: solid 2px var(--gold);
}
.modern .btn.btn-red-border:hover{
    background: var(--red);
    color: #fff; 
}
.modern .btn.btn-gold-border{
    border: solid 2px var(--gold);
}
.modern .btn.btn-gold-border:hover{
    background: var(--gold);
    color: #fff;
}
.modern .btn.right-arrow{
    padding-right: 40px;
}
.modern .btn.right-arrow::after{
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(images/new/arrow-right.png);
    background-image: url(images/new/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    transition: all 0.3s linear;
}
.modern .btn.right-arrow:hover::after{
    filter: invert(100%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
}
.modern .btn.right-arrow.btn-red::after, .modern .btn.right-arrow.btn-gold::after{
    filter: invert(100%);
}
.modern input:not([type="radio"],[type="checkbox"]){
    width: 100%;
    height: 52px;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    padding: 0 16px;
    border: solid 1px var(--text);
    color: var(--text);
    box-sizing: border-box;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
}
.modern input:focus{
    outline: none;
}
.modern .checkbox{
    display: flex;
    position: relative;
    margin: 0;
}
.modern .checkbox input[type="checkbox"]{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0.01;
    z-index: -1;
    overflow: hidden;
}
.modern .checkbox, .modern .checkbox label{
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--text);
    cursor: default;
}
.modern .checkbox{
    position: relative;
    min-height: 20px;
}
.modern input[type="checkbox"] + label{
    margin-left: 28px;
    margin-right: auto;
    cursor: pointer;
}
.modern input[type="checkbox"] + label:hover{
    color: var(--gold);
}
.modern input[type="checkbox"] + label::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: solid 1px #E6E8EC;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.3s linear;
}
.modern input[type="checkbox"]:checked + label::before{
    border-color: var(--gold);
}
.modern input[type="checkbox"] + label::after{
    position: absolute;
    content: '';
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-image: url(images/new/icon-checked.png);
    background-image: url(images/new/icon-checked.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s linear;
}
.modern input[type="checkbox"]:checked + label::after{
    opacity: 1;
}

.modern .section-header{
    padding-top: 24px;
    padding-bottom: 32px;
}
.modern .breadcrumbs{
    margin-bottom: 16px;
    padding: 0;
}
.modern .breadcrumbs ul{
    display: flex;
    justify-content: center;
}
.modern .breadcrumbs ul li{
    font-family: 'Inter', sans-serif!important;
    font-size: 14px!important;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000!important;
}
.modern .breadcrumbs li + li::before{
    content: '/';
    margin: 0;
    padding: 0 8px;
    color: var(--text-light);
}
.modern .breadcrumbs ul li a{
    text-decoration: none;
    color: var(--text-light);
}
.modern .breadcrumbs ul li a:hover{
    color: var(--red);
}
.modern .section-header h1{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center!important;
    margin-bottom: 16px;
    padding: 0;
    color: #000;
}
.modern .section-header h2, .modern .section-header h3, .modern .section-header h4, .modern .section-header h5, .modern .section-header h6{
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    line-height: 1.2;
    text-align: center!important;
    margin-bottom: 16px;
    padding: 0;
    color: #000;
}
.modern .section-header p + h1, .modern .section-header p + h2, .modern .section-header p + h3, .modern .section-header p + h4, .modern .section-header p + h5, .modern .section-header p + h6{
    margin-top: 24px;
}
.modern .section-header p{
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    text-align: center!important;
    margin-top: 0!important;
    margin-bottom: 16px!important;
    padding: 0;
    color: var(--text);
}
.modern .section-header p:last-of-type{
    margin-bottom: 24px!important;
}
.modern .section-header .woocommerce-products-header ul:not(.tabs ul), .modern .section-header .woocommerce-products-header ol:not(.tabs ol){
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;
    justify-content: center;
    margin: 0 -30px;*/
    padding: 16px 0;
}
.modern .section-header .woocommerce-products-header ul li:not(.tabs ul li), .modern .section-header .woocommerce-products-header ol li:not(.tabs ol li){
    font-family: 'Inter', sans-serif !important;
    font-size: 16px!important;
    font-weight: 500;
    line-height: 1.2;
    text-align: center!important;
    /*margin: 0 30px;*/
    margin: auto;
    margin-bottom: 16px;
    color: var(--text)!important;
}
.modern .section-header .woocommerce-products-header ul li:not(.tabs ul li):last-child, .modern .section-header .woocommerce-products-header ol li:not(.tabs ol li):last-child{
    margin: 0;
}
.modern .tabs{
    display: flex;
}
.modern .tabs ul{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    margin: auto;
}
.modern .tabs ul li{
    font-family: 'Inter', sans-serif!important;
    font-size: 16px!important;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 4px!important;
}
.modern .tabs ul li a{
    text-decoration: none;
    color: var(--text);
}
.modern .tabs ul li a:hover{
    color: var(--gold);
}
.modern .tabs ul li.selected a{
    color: var(--red);
}

.container{
    padding-left: 16px;
    padding-right: 16px;
}
.vc_row[data-vc-full-width]{
    position: relative;
    width: 100vw;
    max-width: 100vw;
    left: -1px;
    box-sizing: border-box;
}

body{
    max-width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
}
body.mobile-menu-opened {
    height: 100vh;
    margin-right: var(--scrollbar-width);
    overflow-y: hidden;
}
body::before{
    position: fixed;
    content: '';
    top: var(--headerHeight);
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    background: #000000;
    -ms-transform: translateX(-200vw);
    -moz-transform: translateX(-200vw);
    -webkit-transform: translateX(-200vw);
    -o-transform: translateX(-200vw);
    transform: translateX(-200vw);
    opacity: 0;
    transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
}
body.customize-support::before{
    top: max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY)));
}
body.mobile-menu-opened::before{
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 0.2;
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}

.side-filter, .wishlist, .shopping-cart, .map-sidebar, .mobile-nav{
    padding-top: var(--headerHeight);
}
body.customize-support .side-filter, body.customize-support .wishlist, body.customize-support .shopping-cart, body.customize-support .map-sidebar, body.customize-support .mobile-nav{
    padding-top: max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY)));
}
.icon-left-open-big.close-filter, .icon-right-open-big.close-filter{
    top: var(--headerHeight);
}
body.customize-support .icon-left-open-big.close-filter, body.customize-support .icon-right-open-big.close-filter{
    top: max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY)));
}

body > header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: solid 1px rgba(240,240,240,1);
    background: rgba(255,255,255,1);
    box-sizing: border-box;
    transition: background 0.3s linear, border 0.3s linear;
}
body.home > header{
    border-bottom: solid 1px rgba(240,240,240,0);
    background: rgba(255,255,255,0);
}
body.home > header.active{
    border-color: rgba(240,240,240,1);
    background: rgba(255,255,255,0.95);
}
body.incl-cart > header, body.incl-side-filter > header{
    border-color: rgba(240,240,240,1);
    background: rgba(255,255,255,1);
}
body.customize-support > header{
    top: max(0px, calc(46px - var(--windowScrollY)));
}
body.compose-mode > header, body.vc_editor > header{
    top: 0!important;
}
header .header-top{
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: 'Lora', serif;
    font-size: 14px;
    background: var(--red);
    color: #fff;
}
header .header-top .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1110px;
    padding: 0;
}
header .header-top .container > div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}
header .header-top .top-left{
    position: relative;
    margin-left: auto;
    padding-right: 16px;
}
header .header-top .top-left .trustpilot img{
    width: 160px;
    height: 60px;
    object-fit: contain;
    object-position: center;
}
header .header-top .top-right{
    position: relative;
    margin-right: auto;
    padding-left: 16px;
}
header .header-top .container .widgets{
    width: 100%;
    height: 40px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    transform: scaleY(1) translateY(0);
    transition: all 0.3s linear;
}
header.active .header-top .container .widgets{
    transform: scaleY(0) translateY(-20px);
    height: 0;
}
header .header-top .widgets > div{
    margin: auto;
}
header .header-top .widgets ul{
    display: flex;
    align-items: center;
    height: 40px;
    margin: 0;
    padding: 0;
}
header .header-top .widgets ul li{
    position: relative;
    list-style: none;
    padding: 0 16px;
}
header .header-top .widgets ul li a{
    text-decoration: none;
    color: #fff;
}
header .header-top .widgets ul li a:hover{
    text-decoration: underline;
}
header .header-top .top-right::before, header .header-top .widgets ul li + li::before, header .header-top .widgets .widget + .widget ul li::before{
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 1px;
    height: 10px;
    margin-top: -5px;
    background: #fff;
}
header .header-top .ship-destination{
    display: flex;
    align-items: center;
    padding: 0;
    color: #fff;
}
header .header-top .ship-destination .ship-to-head{
    height: 24px;
    margin-left: 8px;
    border: solid 1px #fff;
    background: transparent;
    cursor: pointer;
}
header .header-top .ship-destination .ship-to-head option{
    color: #000;
    cursor: pointer;
}
header .header .container{
    display: flex;
    height: 72px;
    align-items: center;
}
header .header .logo{
    margin-right: 32px;
}
header .header .logo img{
    width: auto;
    height: 38px;
}
header .main-menu{
    display: none;
}
header .search{
    width: 24px;
    height: 24px;
    margin-left: auto;
    background: url(images/new/icon-search.png);
    background: url(images/new/icon-search.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    transition: all 0.3s linear;
}
body.search-popup-opened header .search{
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
}
header .cart{
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 12px;
    cursor: pointer;
}
header .cart .icon{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(images/new/icon-cart.png);
    background: url(images/new/icon-cart.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    transition: all 0.3s linear;
}
body.incl-cart header .cart .icon{
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
}
header .cart .badge{
    position: absolute;
    top: -7.5px;
    right: -12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    filter: invert(0);
}
header .btn{
    margin: 0;
    margin-left: 8px;
}
header .profile{
    display: none;
    margin-left: 8px;
}
header .profile > *{
    margin-left: 8px;
}
header .mobile-menu-open{
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: 16px;
    cursor: pointer;
}
header .mobile-menu-open span{
    display: block;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 3px;
    width: 18px;
    border: 1.5px solid var(--text);
    -ms-transform: rotate(0deg) translateY(0);
    -moz-transform: rotate(0deg) translateY(0);
    -webkit-transform: rotate(0deg) translateY(0);
    -o-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0);
    opacity: 1;
    transition: all 0.3s linear;
}
header .mobile-menu-open span:first-child{
    /*top: 29.17%;
    bottom: 70.83%;*/
    -ms-transform: rotate(0deg) translateY(-5px);
    -moz-transform: rotate(0deg) translateY(-5px);
    -webkit-transform: rotate(0deg) translateY(-5px);
    -o-transform: rotate(0deg) translateY(-5px);
    transform: rotate(0deg) translateY(-5px);
}
header .mobile-menu-open span:last-child{
    /*top: 70.83%;
    bottom: 29.17%;*/
    -ms-transform: rotate(0deg) translateY(5px);
    -moz-transform: rotate(0deg) translateY(5px);
    -webkit-transform: rotate(0deg) translateY(5px);
    -o-transform: rotate(0deg) translateY(5px);
    transform: rotate(0deg) translateY(5px);
}
body.mobile-menu-opened header .mobile-menu-open span{
    opacity: 0;
}
body.mobile-menu-opened header .mobile-menu-open span:first-child{
    opacity: 1;
    top: 50%;
    bottom: 50%;
    -ms-transform: rotate(45deg) translateY(0);
    -moz-transform: rotate(45deg) translateY(0);
    -webkit-transform: rotate(45deg) translateY(0);
    -o-transform: rotate(45deg) translateY(0);
    transform: rotate(45deg) translateY(0);
}
body.mobile-menu-opened header .mobile-menu-open span:last-child{
    opacity: 1;
    top: 50%;
    bottom: 50%;
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mobile-menu{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--headerHeight);
    right: 0;
    bottom: auto;
    width: 260px;
    max-height: var(--windowHeight);
    max-height: calc(var(--windowHeight) - max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY))));
    background: #fff;
    z-index: 1000;
    box-sizing: border-box;
    -ms-transform: translateX(-200vw);
    -moz-transform: translateX(-200vw);
    -webkit-transform: translateX(-200vw);
    -o-transform: translateX(-200vw);
    transform: translateX(-200vw);
    opacity: 0;
    transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
}
body.mobile-menu-opened .mobile-menu{
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}
body.customize-support .mobile-menu{
    top: max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY)));
}
.mobile-menu .mobile-menu-container{
    width: 100%;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 0;
    box-sizing: border-box;
}
.mobile-menu .mobile-menu-container ul{
    margin: 0;
    padding: 0;
}
.mobile-menu .mobile-menu-container ul li{
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile-menu .mobile-menu-container ul li a{
    position: relative;
    display: block;
    text-decoration: none;
    padding: 16px 15px;
    color: var(--text);
}
.mobile-menu .mobile-menu-container ul li.has-submenu > a::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 6px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(images/new/arrow-down.png);
    background-image: url(images/new/arrow-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.3s linear;
}
.mobile-menu .mobile-menu-container ul li.has-submenu.active > a::after{
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.mobile-menu .mobile-menu-container ul li .sub-menu{
    padding-left: 10px!important;
    display: none;
}
.mobile-menu .mobile-menu-container ul li.active > .sub-menu{
    display: block;
}
.mobile-menu .mobile-menu-container ul li .sub-menu{
    padding: 5px 0;
}
.mobile-menu .mobile-menu-container ul li .sub-menu li a{
    display: block;
    padding: 10px 15px;
}
.mobile-menu .mobile-menu-container ul li .sub-menu li.menu-desc > span{
    display: block;
    line-height: 1.2;
    padding-left: 15px;
    padding-bottom: 10px;
    color: var(--red);
}
.mobile-menu .mobile-menu-container ul li .sub-menu .sub-menu{
    padding: 8px 0;
}
.mobile-menu .mobile-menu-container ul li .sub-menu .sub-menu li a{
    padding: 7px 15px;
}
.mobile-menu .mobile-menu-container ul li.wine-menu > .sub-menu > li > .sub-menu{
    display: block;
    padding: 0!important
}
.mobile-menu .mobile-menu-container ul li.wine-menu > .sub-menu .sub-menu{
    padding: 5px 0;
}
.mobile-menu .mobile-menu-container ul li.wine-menu > .sub-menu .sub-menu li a{
    padding: 10px 15px;
}
.mobile-menu .mobile-menu-container ul li.wine-menu > .sub-menu .sub-menu .sub-menu{
    padding: 8px 0;
}
.mobile-menu .mobile-menu-container ul li.wine-menu > .sub-menu .sub-menu .sub-menu li a{
    padding: 7px 15px;
}
.mobile-menu .profile{
    display: flex;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}
.mobile-menu .profile > *{
    flex: 1;
}
.mobile-menu .special-offer{
    display: none!important;
}

.search-popup{
    position: fixed;
    top: var(--headerHeight);
    right: 16px;
    width: 100%;
    width: calc(100% - 32px);
    max-width: 360px;
    padding: 24px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-sizing: border-box;
    -ms-transform: translateX(-200vw);
    -moz-transform: translateX(-200vw);
    -webkit-transform: translateX(-200vw);
    -o-transform: translateX(-200vw);
    transform: translateX(-200vw);
    opacity: 0;
    transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
}
body.search-popup-opened .search-popup{
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}
body.customize-support .search-popup{
    top: max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY)));
}
.search-popup form{
    position: relative;
}
.search-popup input:not([type="radio"], [type="checkbox"]){
    padding-left: 44px;
}
.search-popup button{
    position: absolute;
    top: 50%;
    left: 15px;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    margin: 0;
    margin-top: -10px;
    padding: 0;
    border: 0;
    background: url(images/new/icon-search.png);
    background: url(images/new/icon-search.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
}
.search-popup .search-result a:first-child{
    margin-top: 24px;
}
.search-popup .search-result a{
    display: block;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-decoration: none;
    padding: 12px 16px;
}
.search-popup .search-result a:hover{
    background: #F4F5F6;
}

body.home .faux-body, body.home main{
    padding-top: 0;
}
.wnm-intro{
    padding: 0 16px;
    padding-top: 150px;
    background-size: cover;
    background-position: center top;
}
.wnm-intro .column-image{
    max-width: 480px;
    margin: auto;
}
.wnm-intro .image{
    position: relative;
    height: 0;
    display: flex;
    justify-content: center;
    margin: 0 22px;
}
.wnm-intro .image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}
.wnm-intro .column-text .title{
    font-family: 'Noto Serif', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}
.wnm-intro .column-text .desc{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--text);
}
.wnm-intro .column-text .desc p{
    margin-bottom: 16px;
}
.wnm-intro .column-text .buttons{
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: -8px;
    margin-right: -8px;
}
.wnm-intro .column-text .buttons .btn{
    width: calc(50% - 16px);
    padding: 0 16px;
    margin: 8px 8px 0 8px;
}
.wnm-intro .column-text .buttons .btn-no-border{
    width: auto;
    padding-right: 40px;
}
.wnm-intro .column-text .buttons .btn-no-border::after{
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(images/new/arrow-right.png);
    background-image: url(images/new/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    transition: all 0.3s linear;
}
.wnm-intro .column-text .buttons .btn-no-border:hover::after{
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
}

.wnm-text{
    padding: 40px 0;
}
.wnm-text .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}
.wnm-text .desc, .wnm-text .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--text);
}

.wnm-stories{
    font-family: 'Lora', serif;
    text-align: center;
    padding: 40px 0;
}
.wnm-stories > .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}
.wnm-stories > .desc, .wnm-stories > .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--text);
}
.wnm-stories .articles{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.wnm-stories .articles .article{
    position: relative;
    margin: 16px 0;
}
.wnm-stories .articles .article .thumb{
    display: block;
    position: relative;
    overflow: hidden;
}
.wnm-stories .articles .article .thumb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1) rotate(0deg);
    transition: transform 0.3s linear;
}
.wnm-stories .articles .article .thumb:hover img{
    transform: scale(1.1) rotate(1deg);
}
.wnm-stories .articles .article .caption{
    text-align: left;
}
.wnm-stories .articles .article .caption .meta{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-weight: 16px;
    line-height: 1.2;
    color: var(--gold);
}
.wnm-stories .articles .article .caption .meta .category a{
    text-decoration: none;
    color: var(--gold);
}
.wnm-stories .articles .article .caption .meta .category a:hover{
    color: var(--red);
}
.wnm-stories .articles .article .caption .meta .category::before{
    content: ' • ';
}
.wnm-stories .articles .article .caption .title-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wnm-stories .articles .article .caption .title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.wnm-stories .articles .article .caption .title a{
    text-decoration: none;
    color: #000;
}
.wnm-stories .articles .article .caption .title a:hover{
    color: var(--red);
}
.wnm-stories .articles .article .caption .desc{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin: 0;
    color: var(--text);
}
.wnm-stories .articles .article.main{
    position: relative;
    width: 100%;
    height: auto;
    padding-top: min(145.7726%, 500px);
    box-sizing: border-box;
}
.wnm-stories .articles .article.main .thumb{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wnm-stories .articles .article.main .thumb::after{
    display: block;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    z-index: 2;
}
.wnm-stories .articles .article.main .caption{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    z-index: 3;
}
.wnm-stories .articles .article.main .caption .meta{
    font-size: 14px;
}
.wnm-stories .articles .article.main .caption .meta .category{
    text-transform: uppercase;
}
.wnm-stories .articles .article.main .caption .meta .category a:hover{
    text-decoration: underline;
    color: var(--gold);
}
.wnm-stories .articles .article.main .caption .title{
    margin-bottom: 8px;
}
.wnm-stories .articles .article.main .caption .title a{
    color: #fff;
}
.wnm-stories .articles .article.main .caption .title a:hover{
    text-decoration: underline;
}
.wnm-stories .articles .article.main .caption .desc{
    margin-bottom: 20px;
    color: #fff;
}
.wnm-stories .articles .article.main .caption .btn{
    height: 40px;
    border: solid 1px #fff;
    color: #fff;
}
.wnm-stories .articles .article.main .caption .btn:hover{
    background: #fff;
    color: var(--text);
}
.wnm-stories .articles .article.main .caption .btn.right-arrow::after{
    filter: invert(100%);
}
.wnm-stories .articles .article.main .caption .btn.right-arrow:hover::after{
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
}
.wnm-stories .articles .article:not(.main) .thumb{
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
}
.wnm-stories .articles .article:not(.main) .caption .title-box{
    min-height: 80px;
    margin-bottom: 16px;
    padding-left: 96px;
}
.wnm-stories .articles .article:not(.main) .caption .btn{
    height: 32px;
    padding-left: 0;
    color: var(--red);
}
.wnm-stories .articles .article:not(.main) .caption .btn:hover{
    color: var(--gold);
}
.wnm-stories .articles .article:not(.main) .caption .btn.right-arrow::before{
    display: block;
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(images/new/arrow-right.png);
    background-image: url(images/new/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
    opacity: 1;
    transition: all 0.3s linear;
}
.wnm-stories .articles .article:not(.main) .caption .btn.right-arrow:hover::before{
    opacity: 0;
}
.wnm-stories .articles .article:not(.main) .caption .btn.right-arrow::after{
    opacity: 0;
    filter: invert(81%) sepia(8%) saturate(1430%) hue-rotate(10deg) brightness(91%) contrast(90%);
}
.wnm-stories .articles .article:not(.main) .caption .btn.right-arrow:hover::after{
    opacity: 1;
}
.wnm-stories .categories{
    display: flex;
    flex-wrap: wrap;
    margin: -10px -12px;
    padding-top: 6px;
}
.wnm-stories .categories .category{
    width: 100%;
    width: calc(100% - 24px);
    margin: 10px 12px;
}
.wnm-stories .categories .category .thumb{
    display: block;
    position: relative;
    width: 100%;
    font-size: 0;
    line-height: 0;
    padding-top: 58.31%;
    background: #eee;
    overflow: hidden;
}
.wnm-stories .categories .category .thumb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1) rotate(0deg);
    transition: transform 0.3s linear;
}
.wnm-stories .categories .category .thumb:hover img{
    transform: scale(1.1) rotate(1deg);
}
.wnm-stories .categories .category .caption{
    text-align: left;
    padding: 16px;
}
.wnm-stories .categories .category .meta{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--red);
}
.wnm-stories .categories .category .title a{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-decoration: none;
    margin-bottom: 8px;
    color: #000;
}
.wnm-stories .categories .category .title a:hover{
    color: var(--gold);
}
.wnm-stories .categories .category .desc{
    font-size: 16px;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: var(--text);
}

.wnm-winemakers .heading{
    position: relative;
}
.wnm-winemakers .heading .image img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.wnm-winemakers .heading .image::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.wnm-winemakers .heading .caption{
    position: relative;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 100px;
    z-index: 2;
}
.wnm-winemakers .heading .caption .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}
.wnm-winemakers .heading .caption .desc, .wnm-winemakers .heading .caption .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #fff;
}
.wnm-winemakers .winemakers-body{
    position: relative;
    margin-top: -61px;
    margin-bottom: 40px;
    text-align: center;
    z-index: 3;
}
.wnm-winemakers .winemakers-body .wines-list{
    text-align: left;
    margin: 0;
    padding: 20px 0;
    background: #fff;
}

.wnm-about{
    font-family: 'Lora', serif;
    padding: 40px 0;
}
.wnm-about .about-url{
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 8px;
    color: var(--gold);
}
.wnm-about .about-url:hover{
    color: var(--red);
}
.wnm-about .title{
    font-family: 'Noto Serif', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 56px;
    color: #000;
}
.wnm-about .title br{
    display: none;
}
.wnm-about .row{
    margin: 0;
}
.wnm-about .row .column.images{
    /*text-align: center;*/
}
.wnm-about .thumbs{
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 433px;
    margin-bottom: 24px;
}
.wnm-about .row .thumb img{
    position: absolute;
    width: 220px;
    height: 300px;
    border: solid 5px #fff;
    object-fit: cover;
    object-position: center;
}
.wnm-about .row .thumb:nth-child(1) img{
    top: 0;
    left: 0;
    z-index: 2;
}
.wnm-about .row .thumb:nth-child(2) img{
    right: 0;
    bottom: 0;
}
.wnm-about .desc{
    margin-bottom: 27px;
}
.wnm-about .desc, .wnm-about .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6em;
    letter-spacing: 0.02em;
    color: var(--text);
}

.wnm-wine-club{
    margin-bottom: 40px;
}
.wnm-wine-club .background{
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 58.13vw;
}
.wnm-wine-club .background img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.wnm-wine-club .row{
    margin: 0;
}
.wnm-wine-club .column.image{
    /*text-align: center;*/
}
.wnm-wine-club .thumb{
    display: inline-block;
    position: relative;
    width: 343px;
    height: 358px;
    margin-top: -158px;
    margin-bottom: 24px;
}
.wnm-wine-club .thumb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 5px #fff;
    object-fit: cover;
    object-position: center;
}
.wnm-wine-club .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}
.wnm-wine-club .desc{
    margin-bottom: 24px;
}
.wnm-wine-club .desc, .wnm-wine-club .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--text);
}

.wnm-wines{
    text-align: center;
    padding: 40px 0;
}
.wnm-wines .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}
.wnm-wines .desc, .wnm-wines .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
}
.wnm-wines .wines-list{
    margin-top: 0;
    margin-bottom: 0;
    padding: 24px 0;
}

.wnm-wine-types{
    padding: 40px 0;
    overflow-x: hidden;
}
.wnm-wine-types .heading{
    text-align: center;
    margin-bottom: 24px;
}
.wnm-wine-types .heading .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}
.wnm-wine-types .heading .desc, .wnm-wine-types .heading .desc p{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
}
.wnm-wine-types .wnm-wine-types-slick{
    min-height: calc(168vw / 1.5);
    margin: 0 -2px;
}
.wnm-wine-types .wnm-wine-types-slick.slick-initialized{
    min-height: 0!important;
}
.wnm-wine-types .slide{
    display: none;
    padding: 0 2px;
}
.wnm-wine-types .slick-initialized .slide{
    display: block;
}
.wnm-wine-types .slide a{
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 168%
}
.wnm-wine-types .slide .background img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.wnm-wine-types .slide .background::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.66) 100%);
    transition: all 0.3s linear;
}
.wnm-wine-types .slide a:hover .background::after{
    background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.wnm-wine-types .slide .caption{
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    transform: translateX(-50%) translateY(-50%);
    color: #fff;
    z-index: 3;
}

.wnm-principles{
    font-family: 'Lora', serif;
    padding: 40px 0;
    background: rgba(202, 186, 124, 0.2);
}
.wnm-principles > .container > .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    color: #000;
}
.wnm-principles .row{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}
.wnm-principles .row .column{
    width: 50%;
    padding: 12px 8px;
    box-sizing: border-box;
}
.wnm-principles .row .column .icon{
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}
.wnm-principles .row .column .icon img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.wnm-principles .row .column .title{
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
    color: #000;
}
.wnm-principles .row .column .desc{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

main.single-post .article-box{
    padding-top: 32px;
    padding-bottom: 32px;
}
main.single-post .article-box > article{
    margin-bottom: 32px;
}
main.single-post .meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 16px;
}
main.single-post .meta > *{
    margin-bottom: 16px;
}
main.single-post .meta .avatar{
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
}
main.single-post .meta .avatar img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
main.single-post .meta .info{
    position: relative;
    margin-right: 19px;
    padding-right: 17px;
}
main.single-post .meta .info::after{
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    top: 50%;
    right: 0;
    margin-top: -7.5px;
    background: #E6E8EC;
}
main.single-post .meta .speechify{
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    margin-right: auto;
    padding-right: 16px;
    color: var(--gold);
    transition: opacity 0.3s linear;
}
main.single-post .meta .speechify > *{
    position: relative;
    height: 26px;
    padding-left: 33px;
    cursor: pointer;
}
main.single-post .meta .speechify > *::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
main.single-post .meta .speechify .play{
    opacity: 1;
}
main.single-post .meta .speechify.playing .play{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}
main.single-post .meta .speechify .play::before{
    background-image: url(images/new/button-play.png);
    background-image: url(images/new/button-play.svg);
}
main.single-post .meta .speechify .pause{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}
main.single-post .meta .speechify.playing .pause{
    position: relative;
    opacity: 1;
    z-index: 2;
}
main.single-post .meta .speechify .pause::before{
    background-image: url(images/new/button-pause.png);
    background-image: url(images/new/button-pause.svg);
}
main.single-post .meta .info .article-author{
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
    color: #000;
}
main.single-post .meta .info .article-author a{
    text-decoration: none;
    color: #000;
}
main.single-post .meta .info .article-author a:hover{
    text-decoration: underline;
}
main.single-post .meta .info .article-info{
    display: flex;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-light);
}
main.single-post .meta .info .article-info > * + *{
    position: relative;
    margin-left: 8px;
    padding-left: 12px;
}
main.single-post .meta .info .article-info > * + *:before{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-top: -2px;
    background: var(--text-light);
}
main.single-post .meta .social{
    margin: 0 -5px;
}
main.single-post .meta .social > a{
    display: block;
    width: 17px;
    height: 17px;
    margin: 0 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(86%) sepia(11%) saturate(266%) hue-rotate(189deg) brightness(83%) contrast(89%);
}
main.single-post .meta .social > a:hover{
    filter: invert(81%) sepia(8%) saturate(1430%) hue-rotate(10deg) brightness(91%) contrast(90%);
}
main.single-post .meta .social > a.twitter{
    background-image: url(images/new/social/twitter.png);
    background-image: url(images/new/social/twitter.svg);
}
main.single-post .meta .social > a.facebook{
    background-image: url(images/new/social/facebook.png);
    background-image: url(images/new/social/facebook.svg);
}
main.single-post .meta .social > a.copy{
    background-image: url(images/new/social/www.png);
    background-image: url(images/new/social/www.svg);
}
main.single-post .title{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    padding: 0;
    color: #000;
}
main.single-post .article .content img{
    margin-top: 16px;
}
main.single-post figure{
    width: 100%;
    margin: 0;
    margin-bottom: 16px;
}
main.single-post figure img{
    width: 100%;
    height: auto;
}
main.single-post .embed-container{
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%;
    margin: 0;
    margin-bottom: 16px;
}
main.single-post .wine{
    margin: 0;
    margin-right: 32px;
    margin-bottom: 16px;
}
main.single-post .content{
    margin-bottom: 32px;
}
main.single-post .content h2{
    font-family: 'Noto Serif', serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-top: 32px;
    margin-bottom: 16px;
    padding: 0;
    color: var(--text-dark);
}

main.single-post .content h3{
    font-family: 'Noto Serif', serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0;
    color: var(--text-dark);
}

main.single-post .content h4{
    font-family: 'Noto Serif', serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0;
    color: var(--text-dark);
}

main.single-post .content h5{
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0;
    color: var(--text-dark);
}
/*
main.single-post .content h2:first-child, main.single-post .content h2 + h2{
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 32px;
}
main.single-post .content h2:first-child strong, main.single-post .content h2 + h2 strong{
    font-weight: 500;
}*/
main.single-post .content p{
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 1em;
    color: var(--text-dark);
}
main.single-post .content p:first-child, main.single-post .content h2 + p{
    font-size: 18px;
    line-height: 1.6;
}
main.single-post .content blockquote{
    margin: 0;
    padding: 25px;
}
main.single-post .content blockquote p{
    font-size: 16px!important;
    font-weight: 500;
    line-height: 1.3em!important;
    color: var(--text-light);
}
main.single-post .content blockquote p strong{
    font-weight: 700;
    color: var(--text);
}
main.single-post .content blockquote p em{
    color: var(--text);
}
main.single-post .content blockquote p strong:only-child{
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    color: var(--text);
}
main.single-post .content ul, main.single-post .content ol{
    padding-left: 30px;
}
main.single-post .content ul li, main.single-post .content ol li{
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #000;
}
main.single-post .tags{
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
    margin-bottom: 24px;
    padding: 0;
}
main.single-post .tags .tag{
    display: block;
    height: auto;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin: 8px;
    padding: 8px 12px;
    background: #F4F5F6;
    color: var(--text);
}
main.single-post .tags .tag:hover{
    background: var(--gold);
    color: #fff;
}
main.single-post .author-sidebar{
    font-family: 'Inter', sans-serif;
    margin-bottom: 40px;
}
main.single-post .author-sidebar .avatar{
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 8px;
    overflow: hidden;
}
main.single-post .author-sidebar .avatar img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
main.single-post .author-sidebar .author-name{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #000;
}
main.single-post .author-sidebar .author-name a{
    display: inline-block;
    text-decoration: none;
    color: #000;
}
main.single-post .author-sidebar .author-name a:hover{
    text-decoration: underline;
}
main.single-post .author-sidebar .job-title{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-light);
}
main.single-post .author-sidebar .author-social{
    display: flex;
    margin: 0 -5px;
    margin-top: -6px;
    margin-bottom: 10px;
}
main.single-post .author-sidebar .author-social .icon-social{
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
}
main.single-post .author-sidebar .author-social .icon-social:hover{
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
}
main.single-post .author-sidebar .author-social .icon-social.i-facebook{
    background-image: url(images/new/social/facebook.png);
    background-image: url(images/new/social/facebook.svg);
}
main.single-post .author-sidebar .author-social .icon-social.i-instagram{
    background-image: url(images/new/social/instagram.png);
    background-image: url(images/new/social/instagram.svg);
}
main.single-post .author-sidebar .author-social .icon-social.i-twitter{
    background-image: url(images/new/social/twitter.png);
    background-image: url(images/new/social/twitter.svg);
}
main.single-post .author-sidebar .author-social .icon-social.i-email{
    background-image: url(images/new/social/icon-email.png);
    background-image: url(images/new/social/icon-email.svg);
}
main.single-post .author-sidebar .desc, main.single-post .author-sidebar .desc p{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-light);
}
main.single-post .author-sidebar .desc p{
    margin-bottom: 16px;
}
main.single-post .author-sidebar .desc:last-child p:last-child{
    margin-bottom: 0;
}
main.single-post .author-blogs h3{
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #000;
}
main.single-post .author-blogs .blog{
    display: flex;
    margin-bottom: 16px;
}
main.single-post .author-blogs .blog .thumb{
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 16px;
    overflow: hidden;
}
main.single-post .author-blogs .blog .thumb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1) rotate(0deg);
    transition: transform 0.3s linear;
}
main.single-post .author-blogs .blog .thumb:hover img{
    transform: scale(1.1) rotate(1deg);
}
main.single-post .author-blogs .blog .caption{
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
main.single-post .author-blogs .blog .caption .blog-author{
    display: flex;
    margin-bottom: 4px;
}
main.single-post .author-blogs .blog .caption .blog-author .avatar{
    position: relative;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border-radius: 50%;
    overflow: hidden;
}
main.single-post .author-blogs .blog .caption .blog-author .avatar img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
main.single-post .author-blogs .blog .caption .blog-author .author-name{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: var(--text);
}
main.single-post .author-blogs .blog .caption .title{
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-top: 0;
    margin-bottom: 0;
    color: #000;
}
main.single-post .author-blogs .blog .caption .title a{
    text-decoration: none;
    color: #000;
}
main.single-post .author-blogs .blog .caption .title a:hover{
    color: var(--red);
}
main.single-post .article-comments > h3, main.single-post .article-comments > h3#comments{
    display: block;
    font-family: 'Noto Serif', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #000;
}
main.single-post .article-comments .commentlist {
  margin: 0;
  padding: 0;
  list-style: none;
}
main.single-post .article-comments .comment{
    position: relative;
    margin: 0;
    margin-bottom: 24px;
    padding: 0;
    padding-left: 48px;
    border: 0;
    max-height: 100vh;
    opacity: 1;
    transition: all 0.3s linear;
    overflow: hidden;
}
main.single-post .article-comments .reply-mode .comment{
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
}
main.single-post .article-comments .reply-mode .comment.visible{
    max-height: 100vh;
    margin-bottom: 24px;
    opacity: 1;
}
main.single-post .article-comments .comment .children{
    margin: 0;
    padding-top: 24px;
}
main.single-post .article-comments .comment .children > .comment:last-child{
    margin-bottom: 0;
}
main.single-post .article-comments .comment .comment-body{
    display: flex;
    flex-wrap: wrap;
}
main.single-post .article-comments .comment .comment-body p{
    width: 100%;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px;
    color: var(--text-light);
}
main.single-post .article-comments .comment .avatar{
    position: absolute;
    top: 0;
    left: -48px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    overflow: hidden;
}
main.single-post .article-comments .comment img.avatar{
    object-fit: cover;
    object-position: center;
}
main.single-post .article-comments .comment .avatar img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
main.single-post .article-comments .comment .comment-author{
    display: flex;
    position: relative;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
    margin-right: 8px;
    padding-right: 12px;
    color: #000;
}
main.single-post .article-comments .comment .comment-author::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    border-radius: 50%;
    background-color: var(--text-light);
}
main.single-post .article-comments .comment .comment-author .says{
    display: none;
}
main.single-post .article-comments .comment .comment-meta{
    display: flex;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: none;
}
main.single-post .article-comments .comment .comment-meta a:not(.comment-edit-link){
    pointer-events: none;
}
main.single-post .article-comments .comment .comment-meta a:first-child{
    color: var(--text-light);
}
main.single-post .article-comments .comment .comment-reply-link, main.single-post .article-comments .comment .comment-reply-login{
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: none;
    color: var(--text-light);
}
main.single-post .article-comments .comment .comment-reply-login{
    color: var(--red);
}
main.single-post .article-comments .comment .comment-reply-login:hover{
    color: var(--gold);
}
main.single-post .article-comments .comment .comment-reply-link{
    padding-left: 28px;
}
main.single-post .article-comments .comment .comment-reply-link:hover{
    color: var(--red);
}
main.single-post .article-comments .comment .comment-reply-link.active{
    color: var(--gold);
}
main.single-post .article-comments .comment .comment-reply-link::before, main.single-post .article-comments .comment .comment-reply-link::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background-image: url(images/new/icon-reply.png);
    background-image: url(images/new/icon-reply.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(86%) sepia(11%) saturate(266%) hue-rotate(189deg) brightness(83%) contrast(89%);
    transition: all 0.3s linear;
}
main.single-post .article-comments .comment .comment-reply-link::after{
    filter: invert(81%) sepia(8%) saturate(1430%) hue-rotate(10deg) brightness(91%) contrast(90%);
    opacity: 0;
}
main.single-post .article-comments .comment .comment-reply-link:hover::before{
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
}
main.single-post .article-comments .comment .comment-reply-link.active::before{
    opacity: 0;
}
main.single-post .article-comments .comment .comment-reply-link.active::after{
    opacity: 1;
}
main.single-post .article-comments .comment-respond{
    margin: 0;
}
main.single-post .article-comments .comment-respond .comment-reply-title{
    font-family: 'Noto Serif', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #000;
}
main.single-post .article-comments .comment-respond .logged-in-as, main.single-post .article-comments .comment-respond .must-log-in{
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: none;
    margin-bottom: 24px;
    color: var(--text-light);
}
main.single-post .article-comments .comment-respond .logged-in-as a, main.single-post .article-comments .comment-respond .must-log-in a{
    text-decoration: none;
    color: var(--red);
}
main.single-post .article-comments .comment-respond .logged-in-as a:hover, main.single-post .article-comments .comment-respond .must-log-in a:hover{
    color: var(--gold);
}
main.single-post .article-comments .comment-respond .comment-form-comment{
    margin-bottom: 15px;
    padding: 0!important;
}
main.single-post .article-comments .comment-respond .comment-form-comment textarea{
    height: 160px;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    padding: 15px;
    border: solid 1px #000;
    color: var(--text-light);
    box-sizing: border-box;
}
main.single-post .article-comments .comment-respond .form-submit{
    margin-bottom: 0;
}
main.single-post .article-comments .comment-respond .form-submit .submit{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 48px;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    margin: 0;
    padding: 0 24px;
    background: var(--red);
    color: #fff;
    box-sizing: border-box;
    transition: all 0.3s linear;
}
main.single-post .article-comments .comment-respond .form-submit .submit:hover{
    background: var(--gold);
}
main.single-post .related-articles h3{
    font-family: 'Noto Serif', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
    color: #000;
}
main.single-post .related-articles .textwidget{
    max-width: 664px;
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
    color: var(--text);
}
main.single-post .related-articles .textwidget p{
    margin-bottom: 1em;
}
main.single-post .related-articles .textwidget p:last-child{
    margin-bottom: 0;
}
main.single-post .related-articles .stories{
    margin-bottom: 0;
}
main.single-post .related-articles .stories .story{
    font-family: 'Lora', serif;
    text-align: left;
}
main.single-post .related-articles .stories .story .thumb{
    display: block;
    position: relative;
    width: 100%;
    padding-top: 56.5%;
}
main.single-post .related-articles .stories .story .thumb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
main.single-post .related-articles .stories .story .caption{
    padding: 16px;
}
main.single-post .related-articles .stories .story .caption .category{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}
main.single-post .related-articles .stories .story .caption .category a{
    display: inline-block;
    position: relative;
    color: var(--red);
}
main.single-post .related-articles .stories .story .caption .category a::before{
    position: absolute;
    content: '';
    top: -2px;
    left: -5px;
    right: -5px;
    bottom: -2px;
    z-index: -1;
    background: var(--red);
    opacity: 0;
    transition: all 0.3s linear;
}
main.single-post .related-articles .stories .story .caption .category a:hover{
    color: #fff;
}
main.single-post .related-articles .stories .story .caption .category a:hover::before{
    opacity: 1;
}
main.single-post .related-articles .stories .story .caption .title{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}
main.single-post .related-articles .stories .story .caption .title a{
    color: #000;
}
main.single-post .related-articles .stories .story .caption .title a:hover{
    color: var(--gold);
}
main.single-post .related-articles .stories .story .caption .desc{
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: var(--text);
}


#wine-filters h2{
    display: none;
}
.filter-content .filter-desktop{
    display: none;
}
.filter-content .filter-box{
    margin-bottom: 16px;
    border: solid 1px #E6E8EC;
}
.filter-content .filter-box .filter-name{
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: 52px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: -1px;
    padding: 0 16px;
    border-bottom: solid 1px #E6E8EC;
    background: #FCFCFD;
    color: #000;
    cursor: pointer;
}
.filter-content .filter-box .filter-name::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background-image: url(images/new/arrow-down.png);
    background-image: url(images/new/arrow-down.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s linear;
}
.filter-content .filter-box.extended .filter-name::after{
    transform: rotate(-180deg);
}
.filter-content .filter-box .filter-options{
    width: 100%!important;
}
.filter-content .filter-box .filter-options .filter-search{
    height: 42px;
    border: 0;
    border-bottom: solid 1px #E6E8EC;
}
.filter-content .filter-box.has-search .filter-options .box{
    max-height: 260px;
    overflow-y: auto;
}
.filter-content .filter-box .filter-options p{
    width: auto;
    margin: 0;
}
.filter-content .filter-box .filter-options .option{
    width: 100%!important;
    max-height: 100px;
    padding: 12px 16px;
    transition: all 0.3s linear;
}
.filter-content .filter-box .filter-options .option.has-childs{
    max-height: none;
}
.filter-content .filter-box .filter-options .option.count-hidden, .filter-content .filter-box .filter-options .option.search-hidden, .filter-content .filter-box .filter-options .option.more-tags{
    display: block;
    max-height: 0;
    padding: 0 16px;
    transform: scaleY(0);
}
.filter-content .filter-box .filter-options .option .count{
    padding-left: 8px;
    opacity: 1;
    transition: opacity 0.3s linear;
}
.filter-content .filter-box .filter-options .option .count.hidden{
    display: block!important;
    opacity: 0;
}
.filter-content .filter-box .filter-options .filter-childs{
    width: 100%!important;
}
.filter-content .filter-box .filter-options .filter-childs p{
    margin-top: 16px;
    margin-left: 16px;
}
.filter-content .filter-box .load-more-button{
    width: 100%!important;
    width: calc(100% - 32px)!important;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    margin: 12px 16px;
    padding: 0;
    border: 0;
    background: #fff;
    color: var(--red);
    box-sizing: border-box;
}
.filter-content .filter-box .load-more-button:hover{
    color: var(--gold);
}
.filter-content .filter-slider{
    height: 48px;
    padding: 16px;
    box-sizing: border-box;
}
.filter-content .irs{
    width: auto;
    height: 16px;
    margin: 0;
}
.filter-content .irs-line{
    position: absolute;
    top: 50%;
    width: 100%;
    height: 3px;
    margin-top: -1.5px;
    background: #E6E8EC;
}
.filter-content .irs-line > span{
    height: 3px;
}
.filter-content .irs-bar{
    top: 50%;
    height: 3px;
    margin-top: -1.5px;
    background: var(--gold);
}
.filter-content .irs-slider{
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 0;
    background: var(--gold);
}
.filter-content .irs-slider::before{
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
    border-radius: 0;
    background: #fff;
}
.filter-content .slider-range{
    display: flex;
    position: relative;
    margin: 16px;
    margin-top: 10px;
}
.filter-content .slider-range::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    margin-top: -0.5px;
    margin-left: -5px;
    background: #000;
}
.filter-content .slider-range *{
    height: 40px;
    background: #fff;
}
.filter-content .slider-range *:first-child{
    margin-right: 15px;
}
.filter-content .slider-range *:last-child{
    margin-left: 15px;
}
#wine-filters .buttons{
    display: flex;
}
#wine-filters .buttons > *{
    flex: 1;
}

.wines-list, .specials-list, #relwines {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-left: -12px;
    margin-right: -12px;
    padding: 0;
    list-style: none;
}
.wines-list .wine, .specials-list .wine, #relwines .wine{
    display: flex;
    flex-direction: column;
    font-family: 'Lora', serif;
    margin: 0 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    background: transparent;
    transition: all 0.3s linear;
    overflow: hidden;
}
.wines-list .wine.hovered, .specials-list .wine.hovered, #relwines .wine.hovered{
    background: #F4F5F6;
}
.wines-list .wine, #relwines .wine{
    width: 100%;
    width: calc(100% - 16px);
}
.specials-list .wine{
    width: 100%;
    width: calc(100% - 16px);
}
.wine .photo{
    position: relative;
    margin: 0;
    margin-bottom: 16px;
    border: solid 1px #E6E8EC;
}
.wine .photo > a{
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 137.6%;
    padding-bottom: 48px;
}
.specials-list .wine .photo > a{
    padding-top: 61%;
    padding-bottom: 96px;
}
.wine .photo img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
}
.wine .photo:hover img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.wine .photo.special > a::before {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: attr(data-discount);
    top: 16px;
    right: 16px;
    width: 62px;
    height: 62px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    /*background-image: url(images/new/badge-special.png);
    background-image: url(images/new/badge-special.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;*/
    background: var(--red);
    color: #fff;
    z-index: 3;
}
.wine .photo.soldout > a::before {
    position: absolute;
    content: '';
    top: 16px;
    right: 16px;
    width: 62px;
    height: 62px;
    border-radius: 0;
    background-color: transparent;
    background-image: url(images/new/badge-sold.png);
    background-image: url(images/new/badge-sold.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
}
.wine .photo .caption{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    z-index: 4;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s linear 0s, transform 0s linear 3s;
}
.wine.hovered .photo .caption{
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}
.wine .photo .caption .stock-text{
    font-family: 'Noto Serif', serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.wine .photo .caption .icon{
    display: block;
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
}
.wine .photo .caption .icon::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -12px;
    background-image: url(images/new/icon-view.png);
    background-image: url(images/new/icon-view.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(100%);
}
.wine .add-cart-box{
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 48px;
    background: #fff;
    z-index: 4;
    opacity: 0;
    transform: translateX(-100vw);
    transition: opacity 0.3s linear 0s, transform 0s linear 3s;
}
.wine.hovered .add-cart-box{
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}
.wine .add-cart-box .quantity{
    position: relative;
    flex: 1;
    text-align: left;
}
.wine .add-cart-box .quantity .select-box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 0 16px;
    color: var(--text);
}
.wine .add-cart-box .quantity.enabled .select-box{
    cursor: pointer;
}
.wine .add-cart-box .quantity.enabled .select-box::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(images/new/arrow-down.png);
    background-image: url(images/new/arrow-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    pointer-events: none;
}
.wine .add-cart-box .quantity .select-options{
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 144px;
    border: 1px solid #E6E8EC;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.3s linear 0s, transform 0s linear 3s;
}
.wine .add-cart-box .quantity.active .select-options{
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}
.wine .add-cart-box .quantity .select-options .option{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 0 16px;
    background: #fff;
    color: var(--text);
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s linear;
}
.wine .add-cart-box .quantity .select-options .option + .option{
    border-top: solid 1px #F4F5F6;
}
.wine .add-cart-box .quantity .select-options .option:hover{
    background: #F4F5F6;
    color: #000;
}
.wine .add-cart-box .quantity .select-options .option.selected{
    background: var(--gold);
    color: #fff;
}
.wine .add-cart-box .add-to-cart{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    min-width: 50%;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    margin: 0;
    padding: 0 12px;
    border: 0;
    border-radius: 0;
    background: var(--red);
    color: #fff;
}
.wine .add-cart-box .add-to-cart:hover{
    background: var(--gold);
}
.wine .rating{
    display: flex;
    justify-content: center;
    position: static;
    margin-bottom: 8px;
    padding: 0;
}
.wine .rating .star{
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0 2.5px;
    background: transparent;
}
.wine .vivino-widget .vivino-widget-wine{
    background: transparent;
}
.wine .vivino-widget .vivino-widget-wine .vivino-widget-rating-stars .vivino-widget-stars{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.wine .vivino-widget .vivino-widget-wine .vivino-widget-rating-stars .vivino-widget-stars i{
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 0 2.5px;
}
.wine .wine-country{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.wine .wine-country a{
    text-decoration: none;
    color: var(--red);
}
.wine .wine-country a:hover{
    color: var(--gold);
}
.wine .wine-title{
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 16px;
    padding: 0 16px;
}
.wine .wine-title a{
    font-weight: 400;
    text-decoration: none;
    color: #000;
}
.wine .wine-title a:hover{
    text-decoration: underline;
}
.wine div.price, .wine div.price-hrk{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    padding: 0;
}
.wine div.price{
    margin-top: auto;
    margin-bottom: 0px;
}
.wine div.price > span, .wine div.price-hrk > span{
    margin: 0;
    padding: 0 0.15em;
}
.wine div.price, .wine .price span{
    font-family: 'Noto Serif', serif;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 700;
    color: var(--red);
}
.wine div.price .price-old, .wine div.price .price-old span{
    font-size: 18px;
    font-weight: 500;
}
.wine div.price-hrk, .wine .price-hrk span{
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
}

main.archive-product .sidebar{
    margin-bottom: 40px;
}
main.archive-product .container > .section-header{
    max-width: 1100px;
    margin: auto;
}
main.archive-product .products-box{
    position: relative;
}
main.archive-product .products-box > *{
    opacity: 1;
    transition: all 0.3s linear;
}
main.archive-product .products-box.loading > *{
    opacity: 0.1;
}
main.archive-product .products-box .loading-animation{
    position: absolute;
    top: 100px;
    left: 50%;
    margin-left: -40px;
    z-index: 999;
    transform: translateX(-100vw);
    opacity: 0;
    transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
}
main.archive-product .products-box.loading .loading-animation{
    transform: translateX(0);
    opacity: 1;
    transition: opacity 0.3s linear 0s, transform 0s linear 0s;
}
main.archive-product .top-options{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
main.archive-product .top-options > *{
    margin-bottom: 20px;
}
main.archive-product .top-options .sidebar-open{
    width: 100%;
    cursor: pointer;
}
main.archive-product .top-options .sidebar-open .icon{
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
main.archive-product .top-options .sidebar-open .icon span {
    display: block;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 3px;
    width: 18px;
    border: 1.5px solid #fff;
    -ms-transform: rotate(0deg) translateY(0);
    -moz-transform: rotate(0deg) translateY(0);
    -webkit-transform: rotate(0deg) translateY(0);
    -o-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0);
    opacity: 1;
    transition: all 0.3s linear;
}
main.archive-product .top-options .sidebar-open .icon span:first-child {
    -ms-transform: rotate(0deg) translateY(-5px);
    -moz-transform: rotate(0deg) translateY(-5px);
    -webkit-transform: rotate(0deg) translateY(-5px);
    -o-transform: rotate(0deg) translateY(-5px);
    transform: rotate(0deg) translateY(-5px);
}
main.archive-product .top-options .sidebar-open .icon span:last-child {
    -ms-transform: rotate(0deg) translateY(5px);
    -moz-transform: rotate(0deg) translateY(5px);
    -webkit-transform: rotate(0deg) translateY(5px);
    -o-transform: rotate(0deg) translateY(5px);
    transform: rotate(0deg) translateY(5px);
}
main.archive-product .top-options .unavailable-items{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-right: 16px;
    padding-right: 17px;
    color: var(--text);
}
main.archive-product .top-options .unavailable-items:after{
    position: absolute;
    content: '';
    top: 50%;
    right: 0;
    width: 1px;
    height: 24px;
    margin-top: -12px;
    background: #E6E8EC;
}
main.archive-product .top-options .unavailable-items input[type="checkbox"]{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0.1;
    overflow: hidden;
}
main.archive-product .top-options .unavailable-items input[type="checkbox"] + label{
    position: relative;
    width: 36px;
    height: 20px;
    margin: 0;
    margin-left: 8px;
    padding: 0;
    border-radius: 12px;
    background: #E6E8EC;
    transition: all 0.3s linear;
}
main.archive-product .top-options .unavailable-items input[type="checkbox"]:checked + label{
    background: var(--gold);
}
main.archive-product .top-options .unavailable-items input[type="checkbox"] + label::before{
    position: absolute;
    top: 50%;
    left: 2px;
    content: '';
    width: 16px;
    height: 16px;
    margin: 0;
    margin-top: -8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    transition: all 0.3s linear;
}
main.archive-product .top-options .unavailable-items input[type="checkbox"]:checked + label::before{
    -ms-transform: translateX(16px);
    -moz-transform: translateX(16px);
    -webkit-transform: translateX(16px);
    -o-transform: translateX(16px);
    transform: translateX(16px);
}
main.archive-product .top-options .unavailable-items input[type="checkbox"] + label::after{
    display: none;
}
main.archive-product .top-options .results{
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-right: auto;
    padding-right: 32px;
    color: var(--text-light);
}
main.archive-product .top-options .sortby{
    display: flex;
    align-items: center;
}
main.archive-product .top-options .sortby label{
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin-right: 15px;
    color: var(--text);
}
main.archive-product .top-options .sortby .select{
    position: relative;
}
main.archive-product .top-options .sortby .select::after{
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background-image: url(images/new/arrow-down.png);
    background-image: url(images/new/arrow-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    pointer-events: none;
}
main.archive-product .top-options .sortby select{
    height: 48px;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 0 16px;
    padding-right: 52px;
    border: solid 1px #000;
    background: #fff;
    color: var(--text);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
    cursor: pointer;
}
main.archive-product .top-options .sortby select::-ms-expand {
    display: none;
}
main.archive-product .tags{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 0;
}
main.archive-product .tags .tag{
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 6px;
    background-color: var(--gold);
}
main.archive-product .tags .tag .remove-tag{
    margin: 2px 0 0px 10px
}

.newsletter-form{
    position: relative;
    padding: 40px 0;
    background: #A6192E;
    color: #fff;
}
.newsletter-form .row{
    margin: 0;
}
.newsletter-form .widget-title{
    font-family: 'Noto Serif', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
}
.newsletter-form .textwidget{
    letter-spacing: 0.02em;
    margin-bottom: 40px;
}
.newsletter-form .textwidget, .newsletter-form .textwidget p{
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}
.newsletter-form form{
    display: flex;
    max-width: 445px;
}
.newsletter-form form .input-box{
    flex: 1;
}
.newsletter-form form input:not([type="radio"], [type="checkbox"]){
    width: 100%;
    height: 48px;
    font-size: 16px;
    padding: 0 20px;
    border: solid 2px #fff;
    background: var(--red);
    color: #fff;
}
.newsletter-form form .submit-box{
    position: relative;
    margin-left: -2px;
}
.newsletter-form form .btn.submit{
    min-width: 115px;
    background: #fff;
    color: var(--red);
}
.newsletter-form form .btn.submit:hover{
    background: var(--gold);
    color: #fff;
}
.newsletter-form .newsletter-gdpr{
    font-family: 'Lora', serif;
    font-size: 9px;
    margin-top: 5px;
}

footer{
    background: #FCFCFD;
    color: var(--text);
}
footer h3{
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}
footer .footer-center .container, footer .footer-bottom .container{
    border-top: 1px solid #E6E8EC;
}
footer .row{
    margin: 0;
}
footer .footer-top .row, footer .footer-center .row, footer .footer-bottom .row{
    padding: 24px 0;
}
footer .footer-top .row{
    display: flex;
    flex-wrap: wrap;
}
footer .footer-top h3{
    margin-bottom: 20px;
}
footer .footer-top ul{
    margin: 0;
    padding: 0;
}
footer .footer-top ul li{
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 4px 0;
    list-style: none;
}
footer .footer-top ul li a{
    text-decoration: none;
    color: var(--text);
}
footer .footer-top ul li a:hover{
    text-decoration: underline;
}
footer .footer-top .column{
    width: 50%;
    max-width: 200px;
    box-sizing: border-box;
}
footer .footer-top .column-1{
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}
footer .footer-top .column-2{
    padding-right: 14px;
}
footer .footer-top .column-3{
    padding-left: 14px;
}
footer .footer-top .social{
    padding-top: 20px;
}
footer .footer-center h3{
    margin-bottom: 16px;
}
footer .footer-center a{
    text-decoration: none;
}
footer .footer-center .cards{
    display: flex;
    margin: -4px;
}
footer .footer-center .cards a{
    margin: 4px;
}
footer .footer-center .column-1{
    margin-bottom: 40px;
}
footer .footer-center .column-2{
    margin-bottom: 30px;
}
footer .footer-center .column-3 img{
    width: 240px;
    height: 76px;
    object-fit: contain;
    object-position: center left;
    margin-bottom: 12px;
}
footer .footer-center .column-3 a > span{
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
}
footer .footer-bottom .column.copyright, footer .footer-bottom .column.legal ul li{
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-align: center;
    color: var(--text);
}
footer .footer-bottom .column.copyright{
    margin-bottom: 8px;
}
footer .footer-bottom .column.legal ul{
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
footer .footer-bottom .column.legal ul li{
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .footer-bottom .column.legal ul li + li::before{
    content: '•';
    margin: 0 8px;
}
footer .footer-bottom .column.legal ul li a{
    text-decoration: none;
    color: var(--text);
}
footer .footer-bottom .column.legal ul li a:hover{
    text-decoration: underline;
}

.social{
    display: flex;
    margin: -10px;
}
.social .icon{
    display: block;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 0;
    margin: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.social .icon:hover{
    filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
}
.social .icon.facebook{
    background-image: url(images/new/social/facebook.png);
    background-image: url(images/new/social/facebook.svg);
}
.social .icon.twitter{
    background-image: url(images/new/social/twitter.png);
    background-image: url(images/new/social/twitter.svg);
}
.social .icon.youtube{
    background-image: url(images/new/social/youtube.png);
    background-image: url(images/new/social/youtube.svg);
}
.social .icon.pinterest{
    background-image: url(images/new/social/pinterest.png);
    background-image: url(images/new/social/pinterest.svg);
}
.social .icon.instagram{
    background-image: url(images/new/social/instagram.png);
    background-image: url(images/new/social/instagram.svg);
}
.social .icon.linkedin{
    background-image: url(images/new/social/linkedin.png);
    background-image: url(images/new/social/linkedin.svg);
}
.social .icon.tiktok{
    background-image: url(images/new/social/tiktok.png);
    background-image: url(images/new/social/tiktok.svg);
}

.items-per-page{
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #000;
}
.items-per-page .select{
    position: relative;
    margin-left: 16px;
}

.items-per-page .select::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 7px;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(images/new/arrow-down.png);
    background-image: url(images/new/arrow-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
    pointer-events: none;

}
.items-per-page .select select{
    min-width: 55px;
    height: 40px;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 0 7px;
    padding-right: 23px;
    border: solid 1px #777E91;
    background: #fff;
    color: var(--text);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
    cursor: pointer;
}

.paging ul{
    display: flex;
    margin: 0;
    padding: 0;
    border: 0;
}
.paging ul li{
    position: relative;
    width: 40px;
    height: 40px;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0 4px;
    padding: 0;
    border: 0!important;
}
.paging ul li > *{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px transparent;
    transition: all 0.3s linear;
}
.paging ul li.selected > *{
    background: var(--gold);
    color: #fff;
}
.paging ul li a{
    color: var(--text-light);
}
.paging ul li a:hover{
    border-color: var(--gold);
}
.paging ul li a.prev, .paging ul li a.next{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px transparent;
    transition: all 0.3s linear;
}
.paging ul li a.prev:hover, .paging ul li a.next:hover{
    border-color: var(--gold);
}
.paging ul li a.prev::after, .paging ul li a.next::after{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
    background-image: url(images/new/arrow-down.png);
    background-image: url(images/new/arrow-down.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -ms-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    /*filter: invert(50%) sepia(10%) saturate(598%) hue-rotate(186deg) brightness(96%) contrast(90%);*/
    filter: invert(81%) sepia(8%) saturate(1430%) hue-rotate(10deg) brightness(91%) contrast(90%);
    transition: all 0.3s linear;
}
.paging ul li a.prev::after{
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.paging ul li a.prev span, .paging ul li a.next span{
    display: none;
}

@media (hover: none) {
    .wine .add-cart-box{
        border-top: solid 1px #E6E8EC;
        transform: translateX(0);
        opacity: 1;
    }
}
@media all and (orientation: portrait){
    .wnm-intro{
        background-image: url(images/new/intro-bg-mobile.jpg);
        background-image: url(images/new/intro-bg-mobile.webp);
    }
}
@media all and (orientation: portrait) and (min-width: 720px){
    .wnm-intro{
        background-image: url(images/new/intro-bg-mobile-hd.jpg);
        background-image: url(images/new/intro-bg-mobile-hd.webp);
    }
}
@media all and (orientation: landscape){
    .wnm-intro{
        background-image: url(images/new/intro-bg.jpg);
        background-image: url(images/new/intro-bg.webp);
    }
}
@media all and (orientation: landscape) and (min-width: 1280px){
    .wnm-intro{
        background-image: url(images/new/intro-bg-hd.jpg);
        background-image: url(images/new/intro-bg-hd.webp);
    }
}
@media all and (orientation: landscape) and (min-width: 1920px){
    .wnm-intro{
        background-image: url(images/new/intro-bg-4k.jpg);
        background-image: url(images/new/intro-bg-4k.webp);
    }
}
@media all and (min-width: 0px) and (max-width:600px){
    body.customize-support main.archive-product .sidebar{
        /*top: max(var(--headerHeight), calc(46px + var(--headerHeight) - var(--windowScrollY)));*/
        top: max(0px, calc(46px - var(--windowScrollY)));
    }
}
@media all and (min-width: 601px) and (max-width:782px){
    body.customize-support main.archive-product .sidebar{
        /*top: calc(46px + var(--headerHeight));*/
        top: 46px;
    }
}
@media all and (min-width: 783px) and (max-width:1279px){
    body.customize-support main.archive-product .sidebar{
        /*top: calc(32px + var(--headerHeight));*/
        top: 32px;
    }
}
@media all and (min-width: 0px) and (max-width:1279px){
    body.sidebar-opened{
        overflow: hidden;
        height: 100vh;
    }
    body.sidebar-opened .faux-body{
        z-index: auto;
    }
    body.sidebar-opened .helpcrunch-iframe-wrapper{
        position: relative;
        z-index: 999;
    }
    main.archive-product .sidebar{
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 300px;
        margin: 0;
        background: #FCFCFD;
        z-index: 9999;
        -ms-transform: translateX(-100vw);
        -moz-transform: translateX(-100vw);
        -webkit-transform: translateX(-100vw);
        -o-transform: translateX(-100vw);
        transform: translateX(-100vw);
        opacity: 0;
        transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
    }
    body.sidebar-opened main.archive-product .sidebar{
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0%);
        opacity: 1;
        transition: opacity 0.3s linear 0s, transform 0s linear 0s;
    }
    main.archive-product .sidebar::before{
        position: absolute;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background: #000;
        z-index: -1;
        opacity: 0.2;
    }
    #wine-filters h2{
        display: block;
        position: relative;
        font-size: 16px;
        text-transform: uppercase;
        padding: 16px;
        border-bottom: solid 1px #E6E8EC;
        background: var(--gold);
        color: #fff;
        transition: all 0.3s linear;
    }
    #wine-filters h2 .close{
        position: absolute;
        top: 50%;
        right: 16px;
        width: 24px;
        height: 24px;
        margin-top: -12px;
        cursor: pointer;
    }
    #wine-filters h2 .close::before{
        position: absolute;
        content: '';
        top: 50%;
        left: 3px;
        bottom: 50%;
        -ms-transform: rotate(45deg) translateY(0);
        -moz-transform: rotate(45deg) translateY(0);
        -webkit-transform: rotate(45deg) translateY(0);
        -o-transform: rotate(45deg) translateY(0);
        -transform: rotate(45deg) translateY(0);
        width: 18px;
        border: 1.5px solid #fff;
    }
    #wine-filters h2 .close::after{
        position: absolute;
        content: '';
        top: 50%;
        left: 3px;
        bottom: 50%;
        -ms-transform: rotate(-45deg) translateY(0);
        -moz-transform: rotate(-45deg) translateY(0);
        -webkit-transform: rotate(-45deg) translateY(0);
        -o-transform: rotate(-45deg) translateY(0);
        -transform: rotate(-45deg) translateY(0);
        width: 18px;
        border: 1.5px solid #fff;
    }
    main.archive-product .sidebar form{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    main.archive-product .sidebar .filter-content{
        flex: 1;
        overflow-y: scroll;
        background: #fff;
    }
    main.archive-product .sidebar .filter-content .filter-box{
        margin-top: -1px;
        margin-bottom: 0;
        border-left: 0;
        border-right: 0;
    }
    main.archive-product .sidebar .filter-content .filter-box .filter-options{
        background: #fff;
    }
}
@media all and (min-width: 360px){
    .wine .add-cart-box .quantity .select-box{
        padding: 0 8px;
    }
    .wine .add-cart-box .quantity.enabled .select-box::after{
        right: 8px;
    }
    .wine .add-cart-box .quantity .select-options .option{
        padding: 0 8px;   
    }
    .wines-list .wine, #relwines .wine{
        width: 50%;
        width: calc(50% - 16px);
    }
}
@media all and (min-width: 380px){
    .wine .add-cart-box .quantity .select-box{
        padding: 0 12px;
    }
    .wine .add-cart-box .quantity.enabled .select-box::after{
        right: 12px;
    }
    .wine .add-cart-box .quantity .select-options .option{
        padding: 0 12px;   
    }
}
@media all and (min-width: 400px){
    .wine .add-cart-box .quantity .select-box{
        padding: 0 16px;
    }
    .wine .add-cart-box .quantity.enabled .select-box::after{
        right: 16px;
    }
    .wine .add-cart-box .quantity .select-options .option{
        padding: 0 16px;   
    }
}
@media all and (min-width: 480px){
    .wnm-stories .categories .category{
        width: calc(50% - 24px);
    }
    .wnm-stories .categories .category .thumb{
        padding-top: 77.07%;
    }
    .wines-list .wine, .specials-list .wine, #relwines .wine{
        margin: 0 12px;
        margin-bottom: 40px;
    }
    .wines-list .wine, #relwines .wine{
        width: calc(50% - 24px);
    }
    .specials-list .wine{
        width: 50%;
        width: calc(50% - 24px);
    }
}
@media all and (min-width: 601px){
    body.customize-support .side-filter, body.customize-support .wishlist, body.customize-support .shopping-cart, body.customize-support .map-sidebar, body.customize-support .mobile-nav{
        padding-top: calc(46px + var(--headerHeight));
    }
    body.customize-support .icon-left-open-big.close-filter, body.customize-support .icon-right-open-big.close-filter{
        top: calc(46px + var(--headerHeight));
    }
    body.customize-support > header{
        position: fixed;
        top: 46px;
    }
    header .profile{
        display: flex;
    }
    body.customize-support .mobile-menu {
        top: calc(46px + var(--headerHeight));
    }
    .mobile-menu .mobile-menu-container{
        padding: 16px;
    }
    .mobile-menu .profile{
        display: none;
    }
    body.customize-support .search-popup {
        top: calc(46px + var(--headerHeight));
    }
    .wines-list .wine, #relwines .wine {
        width: 33.3%;
        width: calc(33.3% - 24px);
    }
}
@media all and (min-width: 640px){   
    .wnm-intro .column-text .buttons .btn{
        width: auto;
        margin-bottom: 16px;
    }
    .wnm-wine-types .wnm-wine-types-slick{
        min-height: calc(168vw / 2.5);
    }
    footer .footer-top .row{
        flex-wrap: nowrap;
    }
    footer .footer-top .column{
        width: auto;
        min-width: 180px;
    }
    footer .footer-top .column-1{
        width: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    footer .footer-top .column-2{
        margin: 0 auto;
        padding: 0;
    }
    footer .footer-top .column-3{
        margin-left: auto;
        padding: 0;
    }
    footer .footer-bottom .row{
        display: flex;
    }
    footer .footer-bottom .column.copyright{
        padding-right: 20px;
        margin-right: auto;
        margin-bottom: 0;
    }
}
@media all and (min-width: 783px){
    body.customize-support::before {
        top: max(var(--headerHeight), calc(32px + var(--headerHeight) - var(--windowScrollY)));
    }
    body.customize-support .side-filter, body.customize-support .wishlist, body.customize-support .shopping-cart, body.customize-support .map-sidebar, body.customize-support .mobile-nav{
        padding-top: calc(32px + var(--headerHeight));
    }
    body.customize-support .icon-left-open-big.close-filter, body.customize-support .icon-right-open-big.close-filter{
        top: calc(32px + var(--headerHeight));
    }
    body.customize-support > header{
        top: 32px;
    }
    body.customize-support .mobile-menu {
        top: calc(32px + var(--headerHeight));
    }
    body.customize-support .search-popup {
        top: calc(32px + var(--headerHeight));
    }
}
@media all and (min-width: 800px){
    .wnm-intro{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        padding: 20px 16px;
        padding-top: 170px;
    }
    .wnm-intro .column-image{
        min-width: 45.83%;
        max-width: 100vw;
        margin: auto;
        max-height: 500px;
    }
    .wnm-intro .column-image .image{
        margin: 0;
    }
    .wnm-intro .column-text{
        max-width: 640px;
        margin-right: 24px;
    }
    .wnm-intro .column-text .buttons .btn{
        width: calc(50% - 16px);
        margin-bottom: 0;
    }
    .wnm-stories > .desc{
        margin-bottom: 20px;
    }
    .wnm-stories .articles{
        flex-direction: row;
        margin-left: -16px;
        margin-right: -16px;
        margin-bottom: 20px;
    }
    .wnm-stories .articles .column{
        display: flex;
        flex-direction: column;
        width: 50%;
        margin: 0 16px;
    }
    .wnm-stories .articles .article.main{
        min-height: calc(100% - 32px);
        box-sizing: border-box;
    }
    .wnm-stories .articles .article:not(.main):last-child{
        display: none;
    }
    .wnm-stories .categories .category{
        width: calc(33.3% - 24px);
    }
    .wnm-about .title br{
        display: block;
    }
    .wnm-about .row{
        display: flex;
        align-items: center;
    }
    .wnm-about .row .thumbs{
        width: 350px;
        margin-right: 40px;
    }
    .wnm-wine-club{
        margin-bottom: 0;
        padding-bottom: 128px;
    }
    .wnm-wine-club .background{
        position: absolute;
        top: 0;
        left: 0;
        bottom: 128px;
        width: 100%;
        height: auto;
        padding: 0;
    }
    .wnm-wine-club .row{
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 0;
        z-index: 2;
    }
    .wnm-wine-club .thumb{
        height: 435.7px;
        margin: 0;
        margin-right: 40px;
        margin-bottom: -128px;
    }
    .wnm-wine-club .title{
        color: #fff;
    }
    .wnm-wine-club .desc, .wnm-wine-club .desc p{
        color: #fff;
    }
    .wnm-wine-club .btn.btn-gold-border{
        border-color: #fff;
        background: transparent;
        color: #fff;
    }
    .wnm-wine-club .btn.btn-gold-border:hover{
        background: #fff;
        color: #000;
    }
    .wnm-principles .row .column{
        width: 33.3%;
    }
    .wines-list .wine, #relwines .wine {
        width: 25%;
        width: calc(25% - 24px);
    }
    .newsletter-form .row{
        display: flex;
        align-items: center;
    }
    .newsletter-form .row .column-text{
        margin-right: 40px;
    }
    .newsletter-form .textwidget{
        margin-bottom: 0;   
    }
    .newsletter-form .row .column-form{
        min-width: 345px;
    }
    footer .footer-top .row{
        padding-top: 40px;
    }
    footer .footer-center .row{
        display: flex;
        flex-wrap: wrap;
    }
    footer .footer-center .row .column{
        box-sizing: border-box;
    }
    footer .footer-center .row .column-1{
        width: auto;
        margin-right: 40px;
        margin-bottom: 30px;
    }
    footer .footer-center .row .column-2{
        width: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
    footer .footer-center .row .column-3{
        width: 100%;
    }
}
@media all and (min-width: 980px){
    .container {
        width: 960px;
        padding: 0;
    }
    .vc_row[data-vc-full-width]{
        left: calc(-1px - (100vw - 960px) / 2 + 30px);
    }
    header .header-top .container > div{
        height: 48px;
    }
    header .header-top .top-left{
        order: 1;
        margin: 0;
        padding: 0 16px;
    }
    header .header-top .top-left::after{
        display: block;
        position: absolute;
        content: '';
        top: 50%;
        right: 0;
        width: 1px;
        height: 10px;
        margin-top: -5px;
        background: #fff;
    }
    header .header-top .top-left .trustpilot img{
        width: 192px;
        height: 20px;
    }
    header .header-top .top-right{
        order: 3;
        margin: 0;
        padding: 0 16px;
    } 
    header .header-top .widgets{
        order: 2;
        width: auto!important;
        height: 48px!important;
        transform: scaleY(1)!important;
    }
    header .header-top .widgets > div{
        margin: 0;
    }
    header .header .container{
        width: 100%;
        padding: 0 40px;
    }
    .wnm-intro{
        padding: 170px 0 100px 5%;
    }
    .wnm-intro .column-text .buttons .btn{
        width: auto;
    }
    .wnm-about .row .thumbs{
        margin-right: 80px;   
    }
    .wnm-wine-club .thumb{
        margin-right: 80px;
    }
    .wnm-wine-types .wnm-wine-types-slick{
        min-height: calc(168vw / 4);
    }
    .newsletter-form .row .column-text{
        margin-right: 80px;   
    }
    main.single-post .article-box{
        display: flex;
        padding-top: 56px;
        padding-bottom: 80px;
    }
    main.single-post .article-box > article{
        flex: 1;
        margin-bottom: 0;
    }
    main.single-post .article-box > aside{
        width: 310px;
        min-height: 100%;
        margin-left: 32px;
        padding-left: 32px;
        border-left: 1px solid #E6E8EC;
        box-sizing: content-box;
    }
    main.single-post .article-box > aside > .box{
        position: static;
        width: 310px;
    }
    main.archive-product.has-sidebar .container{
        width: 100%;
        padding: 0 40px;
    }
    main.archive-product .top-options .sidebar-open{
        width: auto;
        margin-right: 16px;
    }
}
@media all and (min-width: 1280px){
    .container{
        width: 1110px;
    }
    .vc_row[data-vc-full-width]{
        left: calc(-1px - (100vw - 1110px) / 2 + 30px);
    }
    header .header-top .top-left{
        padding: 0 24px;
    }
    header .header-top .top-right{
        padding: 0 24px;
    }
    header .header-top .widgets ul li{
        padding: 0 24px;
    }
    header .header .container{
        width: 100%;
        padding: 0 80px;
    }
    header .main-menu{
        display: block;
    }
    header .main-menu ul{
        margin: 0;
        padding: 0;
    }
    header .main-menu ul li{
        list-style: none;
        margin: 0;
        padding: 0;
    }
    header .main-menu a{
        text-decoration: none;
        color: var(--text);
    }
    header .main-menu a img.menu-image.menu-image-title-after{
        padding-right: 8px!important;
    }
    header .main-menu > ul > li.has-submenu > .sub-menu a[href="#"]{
        text-decoration: none!important;
        cursor: default;
    }
    header .main-menu > ul{
        display: flex;
    }
    header .main-menu > ul > li{
        position: relative;
        font-family: 'Lora', serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        margin-right: 8px;
    }
    header .main-menu > ul > li.has-submenu{
        padding-right: 20px;
        cursor: pointer;
    }
    header .main-menu > ul > li.has-submenu::after{
        position: absolute;
        content: '';
        top: 50%;
        right: 6px;
        width: 16px;
        height: 16px;
        margin-top: -8px;
        background-image: url(images/new/arrow-down.png);
        background-image: url(images/new/arrow-down.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        filter: invert(32%) sepia(22%) saturate(479%) hue-rotate(187deg) brightness(96%) contrast(93%);
        transition: all 0.3s linear;
    }
    header .main-menu > ul > li.has-submenu:hover::after{
        filter: invert(25%) sepia(41%) saturate(6786%) hue-rotate(339deg) brightness(65%) contrast(97%);
    }
    header .main-menu > ul > li.has-submenu:hover::before{
        position: absolute;
        content: '';
        top: 24px;
        left: -28px;
        right: -28px;
        height: 25px;
    }
    header .main-menu > ul > li > a{
        position: relative;
        display: block;
        padding: 5px 8px;
    }
    header .main-menu > ul > li > a:hover{
        color: var(--red);
    }
    header .main-menu > ul > li.has-submenu:hover > a{
        color: var(--red);
    }
    header .main-menu > ul > li.has-submenu > .sub-menu{
        display: block;
        position: absolute;
        top: 49px;
        left: -28px;
        padding: 20px 24px;
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
        -ms-transform: translateX(-200vw);
        -moz-transform: translateX(-200vw);
        -webkit-transform: translateX(-200vw);
        -o-transform: translateX(-200vw);
        transform: translateX(-200vw);
        opacity: 0;
        transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
        cursor: default;
    }
    header .main-menu > ul > li.has-submenu:hover > .sub-menu{
        -ms-transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        transition: opacity 0.3s linear 0s, transform 0s linear 0s;
    }
    header .main-menu > ul > li.has-submenu:not(.wine-menu) > .sub-menu > li{
        min-width: 220px;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        margin: 4px 0;
        padding: 12px 16px;
    }
    header .main-menu > ul > li.has-submenu:not(.wine-menu) > .sub-menu > li > a{
        color: #000;   
    }
    header .main-menu > ul > li.has-submenu:not(.wine-menu) > .sub-menu > li > a:hover{
        text-decoration: underline;
    }
    header .main-menu > ul > li.wine-menu{
        position: relative!important;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu{
        display: flex;
        width: 1110px;
        max-width: calc(100vw - 300px);
        padding: 24px 12px;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li{
        width: 25%;
        padding: 0 12px;
        box-sizing: border-box;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li + li{
        border-left: solid 1px #ededed;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu{
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li + li{
        margin-top: 10px;
        padding-top: 10px;
        border-top: solid 1px #ededed;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li + li.has-submenu{
        margin-top: auto;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li.has-submenu + li:not(.has-submenu){
        margin-top: auto;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > a, header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li > a{
        display: inline-block;
        font-family: 'Noto Serif', serif;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.7;
        padding: 2px 8px;
        color: #000;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li > a:hover{
        text-decoration: underline;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li > a + .sub-menu{
        padding-top: 7px;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li > .sub-menu > li > a{
        display: inline-block;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.7;
        padding: 2px 8px;
    }
    header .main-menu > ul > li.wine-menu > .sub-menu > li > .sub-menu > li > .sub-menu > li > a:hover{
        text-decoration: underline;
    }
    header .main-menu > ul > li.wine-menu .special-offer{
        display: block;
        margin-bottom: auto;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine{
        display: block;
        float: none;
        width: 100%;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine .photo{
        display: block;
        width: 100%;
        margin-left: 0%;
        border: 0;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine .photo > a{
        padding-top: 100%;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine .photo img{
        max-width: 100%;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine .photo .add-cart-box{
        display: none;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine-country{
        display: none;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine-title{
        display: block;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine .price, header .main-menu > ul > li.wine-menu .special-offer .wine .price-hrk{
        float: none;
    }
    header .main-menu > ul > li.wine-menu .special-offer .wine > .price, header .main-menu > ul > li.wine-menu .special-offer .wine > .price-hrk{
        display: block;
        text-align: center;
        margin-bottom: 0.5em;
    }
    header .main-menu > ul > li.food-menu > .sub-menu{
        display: flex;
        flex-wrap: wrap;
        width: 816px;
        padding: 20px 12px;
    }
    header .main-menu > ul > li.has-submenu.food-menu > .sub-menu > li{
        width: calc(33.3% - 24px);
        margin: 4px 12px;
    }
    header .main-menu > ul > li.has-submenu.food-menu > .sub-menu > li.menu-desc{
        width: 100%;
        width: calc(100% - 24px);
        font-size: 18px;
        line-height: 1.6;
        letter-spacing: 0.02em;
        margin-bottom: 14px;
        color: var(--red);
    }
    header .mobile-menu-open{
        display: none;
    }
    .wnm-intro{
        padding: 230px 0 110px 8.33%;
    }
    .wnm-intro .column-text .title{
        font-size: 64px;
    }
    .wnm-intro .column-text .buttons .btn{
        padding: 0 24px;
    }
    .wnm-intro .column-text .buttons .btn-no-border{
        padding-right: 40px;
    }
    .wnm-text{
        padding: 80px 0;
    }
    .wnm-stories{
        padding: 80px 0;
    }
    .wnm-stories > .desc{
        margin-bottom: 45px;
    }
    .wnm-stories .articles{
        margin-bottom: 40px;   
    }
    .wnm-stories .articles .article.main{
        padding-top: 136.5%;
    }
    .wnm-stories .articles .article:not(.main){
        display: flex!important;
        margin: auto 0;
        padding: 16px 0;
    }
    .wnm-stories .articles .article:not(.main) .thumb{
        position: relative;
        width: 148px;
        height: 148px;
        margin-right: 16px;
    }
    .wnm-stories .articles .article:not(.main) .caption{
        flex: 1;
    }
    .wnm-stories .articles .article:not(.main) .caption .title-box{
        min-height: 0;
        margin: 0;
        padding: 0;
    }
    .wnm-stories .categories{
        padding-top: 0;
    }
    .wnm-stories .categories .category{
        width: calc(25% - 24px);
    }
    .wnm-winemakers .heading .caption{
        padding-top: 100px;
        padding-bottom: 200px;
    }
    .wnm-winemakers .winemakers-body{
        margin-top: -102px;   
    }
    .wnm-winemakers .winemakers-body .wines-list{
        margin-bottom: 20px;
    }
    .wnm-about .row .thumbs{
        margin-right: 120px;   
    }
    .wnm-about{
        padding-bottom: 80px;
    }
    .wnm-about .title{
        font-size: 56px;
    }
    .wnm-wine-club .thumb{
        width: 444px;
        height: 564px;
        margin-top: 80px;
        margin-right: 126px;
    }
    .wnm-wines{
        padding: 80px 0;
    }
    .wnm-wines .wines-list{
        padding: 40px 0;
    }
    .wnm-wine-types{
        padding: 80px 0;
    }
    .wnm-wine-types .heading{
        margin-bottom: 40px;
    }
    .wnm-principles{
        padding: 80px 0;
    }
    .wnm-principles > .container > .title{
        text-align: left;
        margin-bottom: 40px;
    }
    .wnm-principles .row{
        flex-wrap: nowrap;
        margin-left: -12px;
        margin-right: -12px;
    }
    .wnm-principles .row .column{
        flex: 1;
        width: auto;
        padding: 0 12px;
    }
    main.single-post .related-articles{
        padding-top: 80px;
    }
    main.archive-product.has-sidebar .container{
        width: 100%;
        padding: 0 80px;
    }
    main.archive-product .top-options .sidebar-open{
        display: none;
    }
    .archive-product-row{
        display: flex;
    }
    .archive-product-row .sidebar{
        width: 280px;
        margin-right: 30px;
    }
    #wine-filters h2{
        display: none;
    }
    .filter-content .filter-desktop{
        display: block;
    }
    .filter-content .filter-mobile{
        display: none;
    }
    #wine-filters .buttons{
        display: none;
    }
    .archive-product-row .products-box{
        flex: 1;
    }
    .newsletter-form{
        padding: 80px 0;
    }
    .newsletter-form .row .column-text{
        margin-right: 125px;   
    }
    .newsletter-form .widget-title{
        font-size: 36px;
    }
    .newsletter-form .row .column-form{
        min-width: 445px;
    }
    .newsletter-form form .btn.submit{
        min-width: 140px;
    }
    .newsletter-form .newsletter-gdpr{
        font-size: 12px;
    }
    .newsletter-form::after{
        position: absolute;
        content: '';
        width: 38px;
        height: 96px;
        background: url(images/new/newsletter-bg.png);
        background: url(images/new/newsletter-bg.svg);
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
        right: 64px;
        right: max(64px, calc((100vw - 1110px) / 2 - 101px));
        bottom: 0;
        opacity: 0.5;
    }
    footer .footer-top .row{
        padding-top: 80px;
    }
    footer .footer-center .row{
        flex-wrap: nowrap;
    }
    footer .footer-center .row .column-1{
        margin-bottom: 0;
    }
    footer .footer-center .row .column-2{
        margin-right: 50px;
        margin-bottom: 0;
    }
    footer .footer-center .row .column-3{
        width: auto;
    }
    footer .footer-center .row .column-3 a{
        display: flex;
    }
    footer .footer-center .row .column-3 a img{
        min-width: 240px;
        margin-bottom: 0;
        margin-right: 8px;
    }
}
@media all and (min-width: 1600px){
    main.archive-product.has-sidebar .wines-list .wine, main.archive-product.has-sidebar #relwines .wine {
      width: 20%;
      width: calc(20% - 24px);
    }
}