.vl-header-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vl-top-text-header {
    text-align: center;
    font-size: 12px;
    font-family: 'Montserrat';
    line-height: 16px;
    padding: 5px 0;
    color: #fff;
}

.site-header-logo-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: relative;
}

.site-header-links {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.site-header-links-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 600;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.site-header-links-link:hover {
    color: #E05B6D;
}

.site-header-links-link:hover svg path {
    fill: #E05B6D;
}

.site-header-links-link svg {
    transition: 0.3s;
    margin-right: 5px;
}

.site-header-links-link svg path {
    transition: 0.3s;
}

.site-header-links-link .text-italic {
    font-style: italic;
}

.site-header-links-link .dot {
    width: 8px;
    height: 8px;
    display: block;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #8DBAED;
}

.vl-btn-primary {
    height: 60px;
    display: inline-flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 600;
    text-decoration: none;
    background-color: #8DBAED;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    transition: 0.8s ease;
}

.vl-btn-primary:hover {
    background-color: #70a6e4;
    color: #fff;
    box-shadow: none;
}

.vl-btn-white {
    border: 1px solid #fff;
    font-family: 'Montserrat';
    font-weight: 600;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    text-decoration: none;
    color: #fff;
    transition: 0.8s ease;
}

.vl-btn-white:hover {
    background-color: #fff;
    color: #000;
}

.vl-site-header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 10;
    transition: 0.3s ease;
    padding-bottom: 10px;
}

.site-header-logo {
    position: relative;
}

.site-header-logo-gray {
    transition: 0.3s;
}

.site-header-logo-black {
    position: absolute;
    inset: 0;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.site-header-sticky {
    background-color: #fff;
    transform: translateY(-26px);
}

.site-header-sticky .site-header-logo-gray {
    opacity: 0;
    visibility: hidden;
}

.site-header-sticky .site-header-logo-black {
    opacity: 1;
    visibility: visible;
}

.site-header-sticky svg path {
    fill: #000;
}

.site-header-sticky .site-header-links-link {
    color: #000;
}

.site-header-sticky .site-header-navigation .site-header-menu > li a {
    color: #000;
}

.site-header-sticky .site-header-navigation .site-header-menu > li.menu-item-has-children > a::after {
    color: #000;
}

.vl-site-header .container {
    max-width: 1850px;
}

body.page-template-home-vlink {
    background-color: #FAF9F8 !important;
}

@media screen and (max-width: 768px) {
    body.page-template-home-vlink p {
        margin: 0;
    }
}

@media screen and (max-width: 528px) {
    .site-header-sticky {
        transform: translateY(-42px);
    }
}

/* Header Menu START */
.site-header-navigation .site-header-menu {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.site-header-navigation .site-header-menu li {
    list-style: none;
}

.site-header-navigation .site-header-menu > li {
    margin-left: 20px;
}

.site-header-navigation .site-header-menu li:hover > a {
    color: #E05B6D;
    transition: 0.3s;
}

.site-header-navigation .site-header-menu li:hover > a::after {
    color: #E05B6D !important;
    transition: 0.3s !important;
}

.site-header-navigation .site-header-menu > li.menu-item-has-children > a::after {
    display: inline-block;
    content: "\e81c";
    font-family: "porto";
    font-weight: 400;
    font-size: 1em;
    margin: 0 0 0 5px;
    line-height: 1;
    color: #fff;
}

.site-header-navigation .site-header-menu > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    transform: none;
    pointer-events: all;
}

.site-header-navigation .site-header-menu > li:first-of-type {
    margin-left: 0;
}

.site-header-navigation .site-header-menu > li a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.site-header-navigation .site-header-menu .sub-menu {
    position: absolute;
    background-color: #fff;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: 0.3s;
}

.site-header-navigation .site-header-menu .sub-menu > li {
    margin-bottom: 5px;
    padding: 0 10px;
}

.site-header-navigation .site-header-menu .sub-menu > li:last-of-type {
    margin-bottom: 0;
}

.menu-item-has-children {
    position: relative;
}

.site-header-navigation .site-header-menu .sub-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header-navigation .site-header-menu .sub-menu > li.menu-item-has-children > a::after {
    display: inline-block;
    content: "\e81c";
    font-family: "porto";
    font-weight: 400;
    font-size: 1em;
    margin: 0 0 0 15px;
    transform: rotate(-90deg);
    line-height: 1;
    color: #000;
}

.site-header-navigation .site-header-menu .sub-menu a {
    color: #000;
    white-space: nowrap;
}

.site-header-navigation .site-header-menu > li.menu-item-has-children:hover > .sub-menu li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    pointer-events: all;
    transform: none;
}

.site-header-navigation .site-header-menu .sub-menu .sub-menu {
    background-color: #fff;
    position: absolute;
    padding: 10px;
    left: 100%;
    top: -10px;
    opacity: 0;
    transform: translateX(-5px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: 0.3s;
}

.site-header-bottom {
    display: flex;
    align-items: center;
}

.site-header-mobile-links {
    display: none;
    align-items: center;
}

.site-header-cart-mobile svg path {
    fill: #000;
}

.menu-toggle {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    z-index: 6;
}

.menu-toggle span {
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 100%;
    transition: 0.4s;
}

.menu-toggle.active span:nth-child(1) {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}

.menu-toggle span:nth-child(1) {
    top: 30%;
    left: 0;
}

.menu-toggle span:nth-child(2) {
    bottom: 30%;
    left: 0;
}

.site-header-mobile-nav-wrapper {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5;
    height: 100dvh;
    transform: translateX(-100%);
    transition: 0.3s;
}

.site-header-mobile-nav-wrapper.active {
    transform: none;
}

.site-header-mobile-nav-wrapper-inner {
    background-color: #fff;
    width: 300px;
    height: 100%;
    padding: 110px 15px 30px;
    overflow-y: auto;
}

.header-search-form--mobile {
    display: flex;
    width: 100%;
}

.header-search-form--mobile .search-submit {
    margin: 0 !important;
}

.header-search-form--mobile input {
    width: 100%;
}

.site-header-navigation--mobile ul {
    padding: 0;
    margin: 0;
}

.site-header-navigation--mobile ul li {
    list-style: none;
}

.site-header-navigation--mobile ul.sub-menu li a {
    padding-left: 10px;
}

.site-header-navigation--mobile ul.sub-menu li .sub-menu li a {
    padding-left: 20px;
}

.site-header-navigation--mobile .sub-menu {
    display: none;
}

.js-mobile-submenu-toggle::after {
    display: inline-block;
    content: "\e81c";
    font-family: "porto";
    font-weight: 400;
    font-size: 1em;
    margin: 0 0 0 15px;
    line-height: 1;
    color: #000;
}

.site-header-navigation--mobile ul li a {
    color: #000;
    text-decoration: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.site-header-mobile-nav--woo {
    display: flex;
    align-items: center;
    padding-top: 15px;
}

.site-header-mobile-nav--woo a {
    display: inline-flex;
}

.site-header-mobile-nav--woo a:nth-child(2) {
    transform: translateY(2px);
}

.site-header-mobile-nav--woo svg path {
    fill: #000;
}

.site-header-mobile-nav--woo .header-account-link {
    margin-right: 13px;
}

.site-header-additional-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
}

.site-header-additional-links a {
    color: #000;
    margin-left: 0;
    margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
    .vl-site-header {
        padding-bottom: 0;
    }

    .site-header-mobile-nav-wrapper {
        display: block;
    }

    .site-header-logo-wrapper {
        justify-content: space-between;
    }

    .site-header-mobile-links {
        display: flex;
    }

    .header-search-toggle {
        margin-right: 15px;
    }

    .header-search-toggle svg path {
        fill: #000;
    }

    .site-header-bottom {
        display: none;
    }

    .vl-site-header {
        background-color: #fff;
    }

    .vl-top-text-header {
        color: #000;
    }

    .site-header-logo img {
        width: 120px;
        opacity: 1;
        visibility: visible;
        position: static;
    }

    .site-header-logo-gray {
        display: none;
    }

    .site-header-logo-black {
        display: block;
    }

    .site-header-links.desktop {
        display: none;
    }

    .site-header-additional-links {
        display: flex;
    }
}

.site-header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.site-header-right svg path {
    transition: 0.3s ease;
}

.site-header-right svg:hover path {
    fill: #E05B6D;
}

.header-search-toggle {
    background-color: transparent;
    border: none;
}

.site-header-right a {
    margin-left: 20px;
}

.header-search-wrapper {
    position: relative;
}

.header-search-form {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    position: absolute;
    right: 0;
    top: 100%;
    transition: 0.3s;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
}

.header-search-form .search-submit {
    margin: 0 !important;
    background-color: transparent;
    border: none;
}

.header-search-form input {
    border: none !important;
}

.header-search-form .search-submit:hover {
    background-color: transparent;
}

.header-search-form .search-submit svg path {
    fill: #000;
}

.header-search-form.open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* Header Menu END */

/* Hero Slider START */
.js-home-hero-slider {
    margin: 0 !important;
    position: relative;
}

.js-home-hero-slider .slick-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.js-home-hero-slider .slick-dots li button {
    display: none;
}

.js-home-hero-slider .slick-track {
    display: flex;
}

.js-home-hero-slider .slick-dots li {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0 5px;
}

.js-home-hero-slider .slick-dots li.slick-active {
    background-color: #E05B6D;
}

.home-hero-slide {
    position: relative;
    height: 100dvh !important;
    display: flex !important;
    align-items: center;
}

@media screen and (max-width: 1200px) {
    .home-hero-slide {
        height: auto !important;
        padding: 200px 0;
    }
}

.home-hero-slide .container {
    position: relative;
    z-index: 2;
}

.home-hero-slide-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -1;
}

.home-hero-slide::before {
    position: absolute;
    content: '';
    inset: 0;
    background-image: linear-gradient(to bottom, rgba(15, 15, 16, 0.8), rgba(15, 15, 16, 0));
    z-index: 1;
}

.home-hero-slide-text {
    margin-bottom: 30px;
}

.home-hero-slide-text h1, .home-hero-slide-text h2 {
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    text-transform: uppercase;
    margin: 0 0 20px;
    line-height: 1.1;
}

.home-hero-slide-text h3 {
    font-size: clamp(1.5rem, 1.318rem + 0.7767vw, 2.25rem);
    margin: 0 0 20px;
}

.home-hero-slide-text h1, .home-hero-slide-text h2, .home-hero-slide-text h3 {
    font-family: 'Playfair Display';
    color: #fff;
}

.home-hero-slide-text p {
    font-family: 'Montserrat';
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}
/* Hero Slider END */

/* Title Text START */
.vl-title-text {
    padding: 50px 0;
    text-align: center;
}

.vl-title-text .container {
    max-width: 1920px;
}

.title-text-inner h2 {
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    margin: 0 0 40px;
    font-family: 'Playfair Display';
    letter-spacing: 0.4px;
}

.title-text-inner p {
    font-size: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
    line-height: 1.3;
    font-family: 'Playfair Display';
}

.title-text-inner p:last-of-type {
    margin-bottom: 0;
}
/* Title Text END */

/* Marquee START */
.marquee-wrapper {
    background-color: #fff;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    overflow: hidden;
    padding: 50px 0;
}

@media screen and (max-width: 1024px) {
    .marquee-wrapper {
        padding: 30px 0;
    }
}

.marquee-wrapper-inner {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-logo {
    min-width: 200px;
    max-width: 100%;
}

.marquee-original {
    animation: mk-move-horizontal 30s linear infinite;
    display: flex;
    align-items: center;
}

.marquee-copy {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    animation: mk-move-horizontal-copy 30s linear infinite;
    display: flex;
    align-items: center;
}

.marquee-limiter {
    margin: 0 60px;
}

@media screen and (max-width: 1024px) {
    .marquee-limiter {
        margin: 0 30px;
    }
}

.marquee-limiter img {
    min-width: 24px;
}

@keyframes mk-move-horizontal {
    0% {
        transform: translateX(0) translateZ(0);
    }
    100% {
        transform: translateX(-100%) translateZ(0);
    }
}

@keyframes mk-move-horizontal-copy {
    0% {
        transform: translateX(100%) translateZ(0);
    }
    100% {
        transform: translateX(0) translateZ(0);
    }
}
/* Marquee END */

/* Vertical Cards START */
.vl-vertical-cards {
    padding: 50px 0;
}

.vertical-cards-top {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.vertical-cards-top h2 {
    margin: 0 0 30px;
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.6px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 400;
}

.vertical-cards-top p {
    font-size: clamp(1.25rem, 1.1286rem + 0.5178vw, 1.75rem);
    line-height: 1.3;
    font-family: 'Playfair Display';
}

.vertical-cards-top p:last-of-type {
    margin-bottom: 0;
}

.vl-vertical-cards-list {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.vertical-card-col {
    width: calc(33.333333% - 10px);
    padding: 10px;
}

@media screen and (max-width: 1024px) {
    .vertical-card-col {
        width: 100%;
    }

    .vertical-card-inner {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .vl-vertical-cards-list {
        padding: 0 10px;
    }
}

.vertical-card-inner {
    border-radius: 12px;
    background-color: #FAF9F8;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
    height: 100%;
    overflow: hidden;
}

.vertical-card-img-wrapper {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 30px;
    z-index: 1;
    text-decoration: none;
}

.vertical-card-img-wrapper::before {
    display: block;
    content: '';
    padding-top: 135%;
}

.vertical-card-img-wrapper:hover img {
    transform: scale(1.05);
}

.vertical-card-img-wrapper img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 0.8s ease;
}

.vertical-card-title {
    margin: 0;
    color: #fff;
    letter-spacing: 0.2px;
    font-size: clamp(1.25rem, 1.1286rem + 0.5178vw, 1.75rem);
    font-family: 'Playfair Display';
    line-height: 1.1;
    text-decoration: none !important;
}

.vertical-card-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: calc(100% - 800px);
}

.vertical-card-text {
    color: rgba(0, 0, 0, 0.72);
}

.vertical-card-cta {
    color: #A87C3D;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 600;
    margin-top: auto;
    display: inline-block;
    transition: 0.8s;
}

.vertical-card-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #A87C3D;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Montserrat';
    font-weight: 700;
    border-radius: 30px;
    font-size: 14px;
    padding: 7px 20px;
}
/* Vertical Cards END */

/* Square Images START */
.vl-square-images {
    padding: 50px 0;
}

.square-images-title {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
    margin: 0 0 50px;
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.6px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 400;
}

.vl-si-list {
    display: flex;
    flex-wrap: wrap;
}

.vl-si-list-box {
    width: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .vl-si-list-box {
        width: 100%;
    }

    .vl-si-list-title {
        text-align: center;
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
}

.vl-si-list-box:hover img {
    transform: scale(1.05);
}

.vl-si-list-box::before {
    padding-top: 100%;
    display: block;
    content: '';
}

.vl-si-list-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 0.8s ease;
}

.vl-si-list-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    letter-spacing: 0.2px;
    margin: 0;
    font-size: clamp(1.5rem, 1.3786rem + 0.5178vw, 2rem);
    line-height: 1.15;
    font-family: 'Playfair Display';
    font-weight: 700;
}
/* Square Images END */

/* Video START */
.video-block {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.video-block::before {
    display: block;
    padding-top: 56.25%;
    content: '';
}

.video-block-title {
    color: #fff;
    font-family: 'Playfair Display';
    font-weight: 400;
    font-size: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
    line-height: 1.3;
    margin: 0 0 20px;
}

.video-content {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.video-block video {
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    max-width: unset;
}

@media screen and (max-width: 575px) {
    .video-block::before {
        padding-top: 65%;
    }
}

.video-controls {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    z-index: 1;
    right: 20px;
    top: 20px;
}

.video-controls img {
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
/* Video END */

/* Collage START */
.collage {
    padding: 50px 0;
}

.collage-top {
    padding: 0 20px;
    margin-bottom: 30px;
}

.collage-title {
    text-align: center;
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.6px;
    margin: 0 0 20px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 400;
}

.collage-top-text {
    text-align: center;
    font-size: clamp(1.25rem, 1.1286rem + 0.5178vw, 1.75rem);
    line-height: 1.3;
    font-family: 'Playfair Display';
    font-style: italic;
}

.js-rotating-text {
    color: #A87C3D;
}

.collage-boxes {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.collage-box {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    text-decoration: none;
}

.collage-box::before {
    padding-top: 100%;
    display: block;
    content: '';
}

.collage-box:hover img {
    transform: scale(1.05);
}

.collage-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
    z-index: -1;
}

.collage-box-big {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
}

.collage-box-title {
    font-family: 'Playfair Display';
    font-size: clamp(1.5rem, 1.3786rem + 0.5178vw, 2rem);
    line-height: 1.15;
    letter-spacing: 0.2px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .collage-boxes {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }

    .collage-box-big {
        grid-row: 1 / 1;
        grid-column: 1 / 1;
    }

    .collage {
        padding-bottom: 20px;
    }

    .collage-box {
        justify-content: center;
    }

    .collage-box::before {
        padding-top: 60%;
    }

    .collage-box-title {
        text-align: center;
    }
}
/* Collage END */

/* Categories START */
.vl-cats {
    text-align: center;
    padding: 50px 0;
}

.vl-cats-header {
    margin-bottom: 40px;
}

.vl-cats-header h2 {
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.6px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 700;
}

.vl-cats-header p {
    font-size: clamp(1.25rem, 1.1286rem + 0.5178vw, 1.75rem);
    line-height: 1.3;
    font-family: 'Playfair Display';
    font-style: italic;
}

.vl-cat-image {
    position: relative;
    overflow: hidden;
}

.vl-cats-list-slide {
    margin: 0 5px;
}

.vl-cat-image:hover img {
    transform: scale(1.05);
}

.vl-cat-item {
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.06);
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.8s ease;
}

.vl-cats-list {
    margin-bottom: 0 !important;
}

.vl-cats-list .slick-dots {
    display: flex;
    justify-content: center;
}

.vl-cats-list .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #E05B6D;
    margin: 0 5px;
}

.vl-cats-list .slick-dots li button {
    display: none;
}

.vl-cats-list .slick-list {
    padding: 20px 0;
}

.vl-cats-list .slick-dots li.slick-active {
    background-color: #E05B6D;
}

.vl-cat-item:hover {
    background-color: rgba(224, 91, 109, 0.5);
}

.vl-cat-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.vl-cat-image::before {
    display: block;
    content: '';
    padding-top: 100%;
}

.vl-cat-title {
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: clamp(1.125rem, 1.0947rem + 0.1294vw, 1.25rem);
    line-height: 1.2;
    padding: 15px;
    margin: 0;
}
/* Categories END */

/* Products START */
.vl-fav {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid #A87C3D;
    border-bottom: 1px solid #A87C3D;
}

.vl-fav-header {
    margin-bottom: 40px;
}

.vl-fav-header h2 {
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.6px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 400;
}

.vl-fav-header p {
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    font-family: 'Playfair Display';
}

.vl-fav-list {
    margin-bottom: 0 !important;
}

.vl-fav-list-slide {
    margin: 0 10px;
    height: auto !important;
}

@media screen and (max-width: 768px) {
    .vl-fav-list-slide {
        margin: 0 5px;
    }
}

.vl-fav-content {
    padding: 20px;
}

.vl-fav-title {
    font-size: clamp(1.125rem, 1.0947rem + 0.1294vw, 1.25rem);
    line-height: 1.2;
    margin: 0 0 15px;
    font-family: 'Playfair Display';
}

.vl-fav-product {
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.06);
    display: block;
    text-decoration: none;
    transition: 0.8s ease;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.vl-fav-product:hover {
    background-color: rgba(224, 91, 109, 0.5);
}

.vl-fav-list .slick-dots {
    display: flex;
    justify-content: center;
}

.vl-fav-list .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #E05B6D;
    margin: 0 5px;
}

.vl-fav-list .slick-dots li button {
    display: none;
}

.vl-fav-list .slick-track {
    display: flex;
}

.vl-fav-list .slick-list {
    padding: 20px 0;
}

.vl-fav-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.vl-fav-image:hover img {
    transform: scale(1.05);
}

.vl-fav-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.vl-fav-image::before {
    padding-top: 100%;
    display: block;
    content: '';
}

.vl-fav-price {
    font-size: 18px;
    color: rgba(43, 42, 41, 0.7);
}
/* Products END */

/* Posts START */
.vl-posts {
    padding: 50px 0;
}

.vl-posts .container {
    max-width: 1850px;
}

.vl-posts-title {
    font-size: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
    line-height: 1.1;
    letter-spacing: 0.6px;
    font-family: 'Playfair Display';
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px;
}

.vl-posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.vl-post-box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.vl-post-box-big {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
}

.vl-post-box-img {
    position: relative;
    overflow: hidden;
    height: calc(100% + 20px);
}

@media screen and (max-width: 1024px) {
    .vl-posts-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 2fr 1fr ;
    }

    .vl-post-box-big {
        grid-row: 1 / 1;
        grid-column: 1 / span 2;
    }
}

@media screen and (max-width: 768px) {
    .vl-posts-grid {
        display: block;
    }

    .vl-post-box {
        width: 100%;
        max-width: 400px;
        margin: 10px auto;
    }

    .vl-post-boxo-text {
        display: none;
    }
}

.vl-post-box-img::before {
    display: block;
    content: '';
    padding-top: 100%;
}

.vl-post-box-img:hover img {
    transform: scale(1.05);
}

.vl-post-box-img img {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.vl-post-box-img a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.vl-post-box-content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.vl-post-box-title {
    color: #fff;
    font-family: 'Montserrat';
    font-size: clamp(1.25rem, 1.159rem + 0.3883vw, 1.625rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin: 0 0 15px;
}

.vl-post-boxo-text {
    color: #fff;
    margin: 0 0 15px;
}

.vl-post-box-link {
    text-decoration: none;
    color: #fff;
    transition: 0.8s ease;
}

.vl-post-box-link:hover {
    color: #E05B6D;
}
/* Posts END */

/* Before Footer START */
.vl-bf {
    background-color: #E05B6D;
    padding: 30px 0;
}

.vl-bf-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.vl-bf-list-item img {
    height: 64px;
    width: auto;
}

.vl-bf-text {
    margin: 10px 0 0 !important;
    font-size: clamp(1.125rem, 1.0947rem + 0.1294vw, 1.25rem);
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Montserrat';
    color: #000;
}

@media screen and (max-width: 1024px) {
    .vl-bf-list-item img {
        height: 48px;
    }

    .vl-bf-list {
        flex-wrap: wrap;
    }

    .vl-bf-list-item {
        width: 50%;
        margin: 20px 0;
    }
}

@media screen and (max-width: 575px) {
    .vl-bf-list-item {
        width: 100%;
    }
}
/* Before Footer END */

.site-footer {
    background-color: #0F0F10;
    color: #fff;
}

.site-footer-top {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-footer-middle {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    justify-content: space-between;
    padding: 35px 0;
}

.site-footer-col {
    width: 22%;
    padding: 0 20px;
}

.site-footer-title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #A87C3D;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    position: relative;
    font-family: 'Playfair Display';
    line-height: 1.1;
}

.site-footer-title svg {
    position: absolute;
    right: 100%;
    top: -12px;
}

.site-footer-links {
    padding: 0;
    margin: 0;
}

.site-footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.site-footer-links li:last-of-type {
    margin-bottom: 0;
}

.site-footer-links li a {
    transition: 0.3s ease;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat';
    text-decoration: none;
}

.site-footer-links li a:hover {
    color: #E05B6D;
}

.site-footer-text {
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
}

.site-footer-nl-form .mc4wp-form-fields input {
    width: 100%;
    margin: 5px 0;
}

.site-footer-nl-form .mc4wp-form-fields input[type="submit"] {
    background-color: #E8ABB2;
    transition: 0.3s ease;
}

.site-footer-nl-form .mc4wp-form-fields input[type="submit"]:hover {
    background-color: #E05B6D;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #A87C3D;
    padding: 15px 0;
}

.site-footer-copy {
    margin: 0;
}

.site-footer-socials {
    display: flex;
    align-items: center;
}

.site-footer-soc-link svg {
    width: 30px;
}

.site-footer-soc-link svg path {
    fill: #A87C3D;
    transition: 0.3s ease;
}

.site-footer-soc-link {
    margin-left: 20px;
}

.site-footer-soc-link:first-of-type {
    margin-left: 0;
}

.site-footer-soc-link svg:hover path {
    fill: #E05B6D;
}

@media screen and (max-width: 1199px) {
    .site-footer-middle {
        padding: 30px 20px;
    }

    .site-footer-col {
        width: 45%;
        margin: 20px 0;
    }
}

@media screen and (max-width: 767px) {
    .site-footer-middle {
        flex-wrap: nowrap;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding-right: 0;
    }
    .site-footer-col {
        width: 100%;
    }

    .site-footer-bottom {
        flex-direction: column-reverse;
    }

    .site-footer-socials {
        margin-bottom: 15px;
    }
}