:root {
    --vt-gold: #C09A5A;
    --vt-dark: #18140F;
    --vt-dark-soft: #1f1a13;
    --vt-light: #F0E8D8;
    --vt-text-muted: #F0E8D8A6;
    --vt-border: rgba(192, 154, 90, 0.22);
    --vt-white: #ffffff;
    --vt-heading-font: "Merriweather", serif;
    --vt-body-font: "Merriweather Sans", sans-serif;
    --vt-container: 1120px;
    --vt-header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    background: var(--vt-dark);
    color: var(--vt-text-muted);
    font-family: var(--vt-body-font);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

p {
    margin: 0 0 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.5em;
    color: var(--vt-light);
    font-family: var(--vt-heading-font);
    font-weight: 400;
    line-height: 1.12;
}

h1 {
    font-size: clamp(42px, 6vw, 82px);
}

h2 {
    font-size: clamp(34px, 4vw, 52px);
}

h3 {
    font-size: clamp(22px, 2vw, 28px);
}

.vt-container,
.elementor-section.vt-container > .elementor-container,
.elementor-section.vt-container > .elementor-container.elementor-column-gap-default {
    width: min(calc(100% - 48px), var(--vt-container));
    max-width: var(--vt-container);
    margin: 0 auto;
}

.vt-main {
    min-height: 60vh;
    background: var(--vt-dark);
}

.vt-header {
    position: relative;
    z-index: 1000;
    height: var(--vt-header-height);
    background: var(--vt-white);
    color: var(--vt-gold);
}

.vt-header__inner {
    width: min(calc(100% - 48px), var(--vt-container));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vt-logo {
    display: inline-flex;
    align-items: center;
    color: var(--vt-gold);
    font-family: var(--vt-body-font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.vt-logo img {
    max-height: 42px;
    width: auto;
}

.vt-nav {
    display: flex;
    align-items: center;
}

.vt-nav__list {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vt-nav__list a {
    position: relative;
    display: inline-flex;
    padding: 8px 0;
    color: var(--vt-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.vt-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.vt-nav__list a:hover::after,
.vt-nav__list .current-menu-item > a::after,
.vt-nav__list .current_page_item > a::after {
    transform: scaleX(1);
}

.vt-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.vt-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--vt-gold);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.vt-menu-toggle.is-active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.vt-menu-toggle.is-active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.vt-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: 96px 28px 48px;
    background: rgba(24, 20, 15, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s ease;
}

.vt-menu-open .vt-mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vt-mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vt-mobile-menu__list a {
    color: var(--vt-light);
    font-family: var(--vt-heading-font);
    font-size: clamp(32px, 8vw, 54px);
    line-height: 1.15;
}

.vt-section {
    padding: 128px 0;
}

.vt-section--dark {
    background: var(--vt-dark);
}

.vt-section--gold {
    background: var(--vt-gold);
    color: var(--vt-dark);
}

.vt-button,
.elementor-button.vt-button,
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 15px 34px;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: var(--vt-body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vt-button--gold,
.elementor-button.vt-button--gold,
.wpcf7-submit {
    background: var(--vt-gold);
    color: var(--vt-dark);
}

.vt-button--gold:hover,
.elementor-button.vt-button--gold:hover,
.wpcf7-submit:hover {
    background: var(--vt-light);
    color: var(--vt-dark);
}

.vt-button--outline,
.elementor-button.vt-button--outline {
    border-color: var(--vt-border);
    color: var(--vt-light);
    background: transparent;
}

.vt-button--outline:hover,
.elementor-button.vt-button--outline:hover {
    border-color: var(--vt-gold);
    color: var(--vt-gold);
}

.vt-door-grid-section {
    width: 100%;
}

.vt-door-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--vt-border);
    border-left: 1px solid var(--vt-border);
}

.vt-door-card {
    min-height: 178px;
    border-right: 1px solid var(--vt-border);
    border-bottom: 1px solid var(--vt-border);
    background: rgba(255, 255, 255, 0.015);
}

.vt-door-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 30px;
    transition: background 0.25s ease;
}

.vt-door-card__link:hover {
    background: rgba(192, 154, 90, 0.055);
}

.vt-door-card__number {
    margin-bottom: 16px;
    color: var(--vt-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.vt-door-card__title {
    margin: 0 0 10px;
    color: var(--vt-light);
    font-size: 22px;
}

.vt-door-card__text {
    margin: 0 0 18px;
    color: var(--vt-text-muted);
    font-size: 13px;
    line-height: 1.55;
}

.vt-door-card__price {
    margin-top: auto;
    color: var(--vt-gold);
    font-size: 13px;
    font-weight: 700;
}

.vt-door-grid-section__button {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.vt-assortment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--vt-border);
}

.vt-assortment-card {
    min-height: 320px;
    border-right: 1px solid var(--vt-border);
    overflow: hidden;
}

.vt-assortment-card:last-child {
    border-right: 0;
}

.vt-assortment-card__link {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 320px;
    padding: 36px;
    overflow: hidden;
}

.vt-assortment-card__image,
.vt-assortment-card__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
}

.vt-assortment-card__image {
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vt-assortment-card__overlay {
    background: linear-gradient(180deg, rgba(24, 20, 15, 0.15) 0%, rgba(24, 20, 15, 0.88) 100%);
    z-index: 1;
}

.vt-assortment-card__content {
    position: relative;
    z-index: 2;
    max-width: 360px;
}

.vt-assortment-card h3 {
    margin-bottom: 14px;
    font-size: 28px;
}

.vt-assortment-card p {
    color: var(--vt-text-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
}

.vt-assortment-card span {
    color: var(--vt-gold);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    column-gap: 6px;
}

.vt-assortment-card__link:hover .vt-assortment-card__image {
    transform: scale(1.04);
}

.vt-single-door {
    background: var(--vt-dark);
}

.vt-single-door__hero {
    padding: 44px 0 100px;
}

.vt-back-link {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--vt-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vt-single-door__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 88px;
    align-items: start;
}

.vt-single-door__media {
    min-width: 0;
}

.vt-single-door__image {
    margin: 0;
    background: var(--vt-dark-soft);
    border: 1px solid var(--vt-border);
}

.vt-single-door__image img {
    padding: 50px;
    height: 470px;
    /*aspect-ratio: 4 / 5;*/
    background-color: #fff;
    object-fit: contain;
}

.vt-single-door__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.vt-single-door__thumb {
    display: block;
    padding: 0;
    border: 1px solid var(--vt-border);
    background: var(--vt-dark-soft);
    overflow: hidden;
    cursor: pointer;
}

.vt-single-door__thumb.is-active {
    border-color: var(--vt-gold);
}

.vt-single-door__thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.vt-single-door__thumb:hover img {
    transform: scale(1.04);
}

.vt-single-door__content h1 {
    max-width: 760px;
    margin-bottom: 42px;
    font-size: clamp(38px, 4.5vw, 40px);
}

.vt-single-door__meta {
    width: 100%;
    max-width: 520px;
    margin-bottom: 52px;
    border-top: 1px solid var(--vt-border);
}

.vt-single-door__meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 17px 0;
    border-bottom: 1px solid var(--vt-border);
}

.vt-single-door__meta-row span {
    color: var(--vt-text-muted);
    font-size: 14px;
}

.vt-single-door__meta-row strong {
    color: var(--vt-light);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.vt-single-door__description {
    
    margin-bottom: 42px;
    color: var(--vt-text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 18px;
    color: rgba(240, 232, 216, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    border: 1px solid var(--vt-border);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    color: var(--vt-light);
    font-family: var(--vt-body-font);
    font-size: 14px;
    outline: none;
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: rgba(240, 232, 216, 0.42);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: var(--vt-gold);
}

.wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #d7b678;
    font-size: 12px;
}

.wpcf7-response-output {
    margin: 24px 0 0 !important;
    padding: 14px 16px !important;
    border-color: var(--vt-border) !important;
    color: var(--vt-light);
    font-size: 14px;
}

.vt-footer {
    background: #110e0a;
    color: var(--vt-text-muted);
    border-top: 1px solid rgba(192, 154, 90, 0.13);
}

.vt-footer__inner {
    width: min(calc(100% - 48px), var(--vt-container));
    margin: 0 auto;
    padding: 76px 0 70px;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
    gap: 80px;
}

.vt-footer__logo {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--vt-gold);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vt-footer p {
    margin: 0 0 8px;
    font-size: 14px;
}

.vt-footer h2 {
    margin-bottom: 22px;
    color: var(--vt-gold);
    font-family: var(--vt-body-font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.vt-footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vt-footer__menu li {
    margin-bottom: 9px;
}

.vt-footer__menu a {
    font-size: 14px;
    transition: color 0.25s ease;
}

.vt-footer__menu a:hover {
    color: var(--vt-gold);
}

.vt-footer__bottom {
    width: min(calc(100% - 48px), var(--vt-container));
    margin: 0 auto;
    padding: 22px 0 34px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(192, 154, 90, 0.12);
}

.vt-footer__bottom p {
    margin: 0;
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    :root {
        --vt-header-height: 64px;
    }

    .vt-nav {
        display: none;
    }

    .vt-menu-toggle {
        display: block;
    }

    .vt-single-door__layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .vt-door-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .vt-footer__brand {
        grid-column: 1 / -1;
        text-align:center;
    }
}

@media (max-width: 767px) {
    .vt-container,
    .vt-header__inner,
    .vt-footer__inner,
    .vt-footer__bottom {
        width: min(calc(100% - 48px), var(--vt-container));
    }

    .vt-logo {
        font-size: 13px;
        letter-spacing: 0.16em;
    }

    .vt-section {
        padding: 76px 0;
    }

    .vt-door-grid,
    .vt-assortment-grid {
        grid-template-columns: 1fr;
    }

    .vt-assortment-card,
    .vt-assortment-card:last-child {
        border-right: 0;
        border-bottom: 1px solid var(--vt-border);
    }

    .vt-assortment-card:last-child {
        border-bottom: 0;
    }

    .vt-assortment-card__link {
        min-height: 300px;
        padding: 28px;
    }

    .vt-door-card__link {
        padding: 26px 24px;
    }

    .vt-single-door__hero {
        padding: 62px 0 84px;
    }

    .vt-back-link {
        margin-bottom: 28px;
        font-size: 11px;
    }

    .vt-single-door__content h1 {
        margin-bottom: 32px;
        font-size: clamp(34px, 12vw, 48px);
    }

    .vt-single-door__gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .vt-single-door__meta-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .vt-single-door__meta-row strong {
        text-align: left;
    }

    .vt-button,
    .elementor-button.vt-button,
    .wpcf7-submit {
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .vt-footer__inner {
        grid-template-columns: 1fr;
        padding: 58px 0 54px;
    }

    .vt-footer__bottom {
        flex-direction: column;
        padding-bottom: 28px;
        text-align: center;
    }
}

.vt-cf7-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 767px) {
    .vt-cf7-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.vt-door-card__image {
    margin: -28px -30px 22px;
    overflow: hidden;
    border-bottom: 1px solid var(--vt-border);
}

.vt-door-card__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.vt-door-card__link:hover .vt-door-card__image img {
    transform: scale(1.04);
}

.vt-product-specs {
    padding: 0 0 110px;
    background: var(--vt-dark);
}

.vt-product-specs__head {
    margin-bottom: 32px;
    padding-top: 58px;
    border-top: 1px solid var(--vt-border);
}

.vt-product-specs__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--vt-border);
    border-left: 1px solid var(--vt-border);
}

.vt-product-specs__group {
    padding: 34px 38px;
    border-right: 1px solid var(--vt-border);
    border-bottom: 1px solid var(--vt-border);
    background: rgba(255, 255, 255, 0.012);
}

.vt-product-specs__group h3 {
    margin-bottom: 24px;
    color: var(--vt-light);
    font-size: 26px;
}

.vt-product-specs__group dl {
    margin: 0;
}

.vt-product-specs__row {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(192, 154, 90, 0.14);
}

.vt-product-specs__row:last-child {
    border-bottom: 0;
}

.vt-product-specs__row dt,
.vt-product-specs__row dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.vt-product-specs__row dt {
    color: rgba(240, 232, 216, 0.58);
}

.vt-product-specs__row dd {
    color: var(--vt-light);
    text-align: right;
}

.vt-inquiry {
    padding: 110px 0 132px;
    background: var(--vt-dark-soft);
    border-top: 1px solid rgba(192, 154, 90, 0.13);
}

.vt-inquiry__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 92px;
    align-items: start;
}

.vt-section-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--vt-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.vt-inquiry__summary h2 {
    margin-bottom: 22px;
}

.vt-inquiry__summary p {
    max-width: 440px;
    color: var(--vt-text-muted);
}

.vt-inquiry-product {
    margin-top: 38px;
    border-top: 1px solid var(--vt-border);
}

.vt-inquiry-product > div {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 22px;
    padding: 16px 0;
    border-bottom: 1px solid var(--vt-border);
}

.vt-inquiry-product span {
    color: rgba(240, 232, 216, 0.58);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vt-inquiry-product strong {
    color: var(--vt-light);
    font-size: 14px;
    text-align: right;
}

.vt-inquiry-form label {
    display: block;
    margin-bottom: 9px;
    color: rgba(240, 232, 216, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.45;
    text-transform: uppercase;
}

.vt-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vt-form-field {
    margin: 0 0 18px;
}

.vt-form-field--full {
    width: 100%;
}

.vt-inquiry-form input[type="text"],
.vt-inquiry-form input[type="email"],
.vt-inquiry-form input[type="tel"],
.vt-inquiry-form textarea,
.vt-inquiry-form select {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid var(--vt-border);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.035);
    color: var(--vt-light);
    font-family: var(--vt-body-font);
    font-size: 14px;
    outline: none;
}

.vt-inquiry-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--vt-gold) 50%), linear-gradient(135deg, var(--vt-gold) 50%, transparent 50%);
    background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.vt-inquiry-form textarea {
    min-height: 170px;
    resize: vertical;
}

.vt-inquiry-form input::placeholder,
.vt-inquiry-form textarea::placeholder {
    color: rgba(240, 232, 216, 0.42);
}

.vt-inquiry-form input:focus,
.vt-inquiry-form textarea:focus,
.vt-inquiry-form select:focus {
    border-color: var(--vt-gold);
}

.vt-form-consent {
    margin: 4px 0 24px;
}

.vt-form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: var(--vt-text-muted);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

.vt-form-consent input {
    margin-top: 3px;
    accent-color: var(--vt-gold);
}

.vt-form-consent a {
    color: var(--vt-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.vt-form-notice {
    margin: 0 0 24px;
    padding: 15px 16px;
    border: 1px solid var(--vt-border);
    color: var(--vt-light);
    font-size: 14px;
}

.vt-form-notice--success {
    background: rgba(192, 154, 90, 0.12);
}

.vt-form-notice--error {
    background: rgba(160, 70, 55, 0.16);
}

.vt-form-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1024px) {
    .vt-inquiry__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .vt-product-specs__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .vt-product-specs {
        padding-bottom: 76px;
    }

    .vt-product-specs__head {
        padding-top: 42px;
    }

    .vt-product-specs__group {
        padding: 28px 24px;
    }

    .vt-product-specs__row,
    .vt-inquiry-product > div,
    .vt-form-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .vt-product-specs__row dd,
    .vt-inquiry-product strong {
        text-align: left;
    }

    .vt-inquiry {
        padding: 78px 0 86px;
    }
}

/* v04 product / responsive refinements */
.vt-menu-toggle {
    position: relative;
    display: none;
}

.vt-menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    background: var(--vt-gold);
    transform: translate(-50%, -50%);
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.vt-menu-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 4px));
}

.vt-menu-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 4px));
}

.vt-menu-toggle.is-active span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.vt-menu-toggle.is-active span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.vt-door-card__attributes {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: var(--vt-text-muted);
    font-size: 13px;
    line-height: 1.45;
}

.vt-door-card__attributes li {
    margin: 0;
}

.vt-door-card__price {
    display: inline-flex;
    align-items: baseline;
    margin-top: auto;
    padding-top: 4px;
    color: var(--vt-gold);
}

.vt-door-card__price strong {
    font-family: var(--vt-heading-font);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.15;
}

.vt-door-grid--with-images .vt-door-card__price strong {
    font-size: 16px;
}

.vt-assortment-card__overlay {/*
    background:
        linear-gradient(90deg, rgba(24, 20, 15, 0.96) 0%, rgba(24, 20, 15, 0.88) 42%, rgba(24, 20, 15, 0.46) 72%, rgba(24, 20, 15, 0.12) 100%),
        linear-gradient(180deg, rgba(24, 20, 15, 0.05) 0%, rgba(24, 20, 15, 0.92) 100%);*/
   
}
.vt-assortment-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(24, 20, 15, 0.08) 0%,
    rgba(24, 20, 15, 0.28) 32%,
    rgba(24, 20, 15, 0.82) 62%,
    rgba(24, 20, 15, 0.97) 100%
  );
}
.vt-assortment-card__content {
    max-width: 390px;
}

.vt-single-door__mobile-title {
    display: none;
}

.vt-single-door__desktop-title {
    display: block;
}

.vt-single-door__image-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #fff;
    color: inherit;
    cursor: zoom-in;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-single-door__image-button > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 10px 13px;
    background: rgba(17, 14, 10, 0.78);
    color: var(--vt-light);
    border: 1px solid rgba(192, 154, 90, 0.36);
    font-family: var(--vt-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.vt-single-door__image-button:hover > span,
.vt-single-door__image-button:focus-visible > span {
    opacity: 1;
    transform: translateY(0);
}

.vt-single-door__image-button:focus-visible {
    outline: 2px solid var(--vt-gold);
    outline-offset: 4px;
}

.vt-single-door__price-box {
    display: inline-flex;
    flex-direction: column;
    min-width: min(100%, 320px);
    margin: 0 0 34px;
    padding: 22px 26px 24px;
    border: 1px solid var(--vt-border);
    background: linear-gradient(135deg, rgba(192, 154, 90, 0.13), rgba(255, 255, 255, 0.025));
}

.vt-single-door__price-box span {
    margin-bottom: 8px;
    color: rgba(240, 232, 216, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.vt-single-door__price-box strong {
    color: var(--vt-gold);
    font-family: var(--vt-heading-font);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.05;
}

.vt-single-door__content h1 {
    margin-bottom: 28px;
    font-size: clamp(34px, 3.4vw, 44px);
}

.vt-single-door__meta {
    margin-bottom: 38px;
}

.vt-gallery-more {
    display: none;
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    border: 1px solid var(--vt-border);
    background: transparent;
    color: var(--vt-gold);
    font-family: var(--vt-body-font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vt-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.vt-lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.vt-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 14, 10, 0.94);
}

.vt-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1120px);
    height: min(100%, 82vh);
}

.vt-lightbox__image {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 1px solid rgba(192, 154, 90, 0.24);
    background: var(--vt-dark-soft);
}

.vt-lightbox__close,
.vt-lightbox__arrow {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(192, 154, 90, 0.32);
    background: rgba(17, 14, 10, 0.78);
    color: var(--vt-light);
    cursor: pointer;
}

.vt-lightbox__close {
    top: -2px;
    right: -2px;
    width: 46px;
    height: 46px;
}

.vt-lightbox__close::before,
.vt-lightbox__close::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--vt-gold);
}

.vt-lightbox__close::before {
    transform: rotate(45deg);
}

.vt-lightbox__close::after {
    transform: rotate(-45deg);
}

.vt-lightbox__arrow {
    top: 50%;
    width: 48px;
    height: 58px;
    font-family: var(--vt-heading-font);
    font-size: 40px;
    line-height: 1;
    transform: translateY(-50%);
}

.vt-lightbox__arrow--prev {
    left: 0;
}

.vt-lightbox__arrow--next {
    right: 0;
}

.vt-lightbox__counter {
    position: absolute;
    left: 50%;
    bottom: -34px;
    color: var(--vt-text-muted);
    font-size: 12px;
    letter-spacing: 0.14em;
    transform: translateX(-50%);
}

body.vt-lightbox-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .vt-menu-toggle {
        display: block;
    }

    .vt-single-door__content h1 {
        font-size: clamp(32px, 5vw, 42px);
    }
}

@media (max-width: 767px) {
    .vt-menu-toggle {
        width: 44px;
        height: 44px;
        margin-right: -8px;
    }

    .vt-mobile-menu {
        z-index: 950;
        align-items: flex-start;
        padding-top: 144px;
    }

    .vt-mobile-menu__inner {
        width: 100%;
    }

    .vt-mobile-menu__list {
        gap: 18px;
    }

    .vt-mobile-menu__list a {
        font-size: clamp(30px, 9vw, 40px);
        text-align: center;
    }

    .vt-door-grid {
        border-right: 1px solid var(--vt-border);
    }

    .vt-door-card {
        min-height: 0;
    }

    .vt-door-card__title {
        font-size: 24px;
    }

    .vt-door-card__attributes {
        font-size: 13px;
    }

    .vt-door-card__price strong {
        font-size: 18px;
    }

    .vt-assortment-card__link {
        min-height: 330px;
        padding: 26px 24px;
    }

    .vt-assortment-card__overlay {
        background:
            linear-gradient(180deg, rgba(24, 20, 15, 0.08) 0%, rgba(24, 20, 15, 0.58) 42%, rgba(24, 20, 15, 0.96) 100%),
            linear-gradient(90deg, rgba(24, 20, 15, 0.92) 0%, rgba(24, 20, 15, 0.32) 58%, rgba(24, 20, 15, 0.08) 100%);
    }

    .vt-assortment-card h3 {
        font-size: 26px;
    }

    .vt-single-door__hero {
        padding: 54px 0 78px;
    }

    .vt-single-door__mobile-title {
        display: block;
        margin: 0 0 26px;
        font-size: clamp(29px, 9vw, 38px);
        line-height: 1.08;
    }

    .vt-single-door__desktop-title {
        display: none;
    }

    .vt-single-door__layout {
        gap: 34px;
    }

    .vt-single-door__media {
        order: 1;
    }

    .vt-single-door__content {
        order: 2;
    }

    .vt-single-door__image img {
        aspect-ratio: 4 / 4.35;
    }

    .vt-single-door__image-button > span {
        display: none;
    }

    .vt-single-door__gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        margin-top: 10px;
    }

    .vt-single-door__gallery:not(.is-expanded) .vt-single-door__thumb:nth-child(n+5) {
        display: none;
    }

    .vt-gallery-more {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .vt-single-door__price-box {
        width: 100%;
        margin-bottom: 28px;
        padding: 20px 22px;
    }

    .vt-single-door__price-box strong {
        font-size: clamp(28px, 10vw, 36px);
    }

    .vt-single-door__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .vt-product-specs__group h3,
    .vt-inquiry__summary h2,
    .vt-product-specs__head h2 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .vt-lightbox {
        padding: 18px;
    }

    .vt-lightbox__dialog {
        height: min(100%, 78vh);
    }

    .vt-lightbox__close {
        top: -54px;
        right: 0;
    }

    .vt-lightbox__arrow {
        width: 42px;
        height: 52px;
        font-size: 34px;
    }

    .vt-lightbox__arrow--prev {
        left: -4px;
    }

    .vt-lightbox__arrow--next {
        right: -4px;
    }
}

/* Update: dropdown navigation, mobile brand, asortiman cards and dovratnici. */
.vt-nav__list li {
    position: relative;
}

.vt-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -20px;
    z-index: 1002;
    min-width: 220px;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    background: var(--vt-white);
    border: 1px solid rgba(192, 154, 90, 0.18);
    box-shadow: 0 18px 40px rgba(24, 20, 15, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.vt-nav__list li:hover > .sub-menu,
.vt-nav__list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vt-nav__list .sub-menu a {
    display: flex;
    padding: 10px 18px;
    white-space: nowrap;
    color: var(--vt-gold);
    font-size: 11px;
    letter-spacing: 0.15em;
}

.vt-nav__list .sub-menu a::after {
    display: none;
}

.vt-mobile-menu__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 42px;
    color: var(--vt-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.vt-mobile-menu__brand img {
    max-height: 54px;
    width: auto;
}

.vt-mobile-menu__list .sub-menu {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.vt-mobile-menu__list .sub-menu a {
    font-family: var(--vt-body-font);
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.35;
    color: var(--vt-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vt-assortment-card,
.vt-assortment-card__link {
    min-height: 430px;
}

/*.vt-assortment-card__overlay {
    background: linear-gradient(180deg, rgba(24, 20, 15, 0.05) 0%, rgba(24, 20, 15, 0.42) 42%, rgba(24, 20, 15, 0.95) 100%);
}*/
.vt-assortment-card__overlay {
    background: linear-gradient(180deg, rgba(24, 20, 15, 0.08) 0%, rgba(24, 20, 15, 0.28) 14%, rgba(24, 20, 15, 0.82) 48%, rgba(24, 20, 15, 0.97) 62%);
}

.vt-single-door__price-box {
    max-width: 520px;
    margin-bottom: 24px;
    padding: 18px 20px;
    border: 1px solid var(--vt-border);
    background: rgba(255, 255, 255, 0.025);
}

.vt-single-door__price-box span {
    display: block;
    margin-bottom: 5px;
    color: rgba(240, 232, 216, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vt-single-door__price-box strong {
    color: var(--vt-light);
    font-size: 24px;
}

.vt-single-door__description--additional {
    margin-top: -16px;
    padding-top: 24px;
    /*border-top: 1px solid var(--vt-border);*/
}

.vt-inquiry-form select option {
    background: var(--vt-dark-soft);
    color: var(--vt-light);
}

.vt-door-frame-options {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.vt-door-frame-options legend {
    display: block;
    margin-bottom: 12px;
    color: rgba(240, 232, 216, 0.58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.45;
    text-transform: uppercase;
}

.vt-door-frame-options__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.vt-door-frame-card {
    display: block;
    cursor: pointer;
}

.vt-door-frame-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vt-door-frame-card__body {
    display: block;
    min-height: 100%;
    padding: 17px 18px;
    border: 1px solid var(--vt-border);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.vt-door-frame-card input:checked + .vt-door-frame-card__body {
    border-color: var(--vt-gold);
    background: rgba(192, 154, 90, 0.11);
    box-shadow: inset 0 0 0 1px rgba(192, 154, 90, 0.28);
}

.vt-door-frame-card__title,
.vt-door-frame-card__price {
    display: block;
    color: var(--vt-light);
    font-weight: 700;
}

.vt-door-frame-card__meta,
.vt-door-frame-card__note {
    display: grid;
    gap: 2px;
    margin-top: 8px;
    color: var(--vt-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.vt-door-frame-card__price {
    margin-top: 11px;
    color: var(--vt-gold);
}

.vt-door-frame-card__note {
    color: rgba(240, 232, 216, 0.7);
}

@media (max-width: 760px) {
    .vt-door-frame-options__grid {
        grid-template-columns: 1fr;
    }

    .vt-assortment-card,
    .vt-assortment-card__link {
        min-height: 360px;
    }
}

/* v05: sticky header setting and accessible mobile submenu toggles. */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vt-sticky-header-enabled .vt-header {
    position: sticky;
    top: 0;
    z-index: 1100;
}

.admin-bar.vt-sticky-header-enabled .vt-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar.vt-sticky-header-enabled .vt-header {
        top: 46px;
    }
}

.vt-menu-toggle {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    appearance: none;
    line-height: 1;
    color: var(--vt-gold);
}

.vt-menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 23px;
    height: 1.7px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
}

.vt-menu-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 4px));
}

.vt-menu-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 4px));
}

.vt-menu-toggle.is-active span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.vt-menu-toggle.is-active span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.vt-menu-open .vt-menu-toggle {
    z-index: 1200;
}

.vt-mobile-menu__list > li {
    width: 100%;
    list-style: none;
    text-align: center;
}

.vt-mobile-menu__parent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
}

.vt-mobile-submenu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--vt-gold);
    cursor: pointer;
}

.vt-mobile-submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 0.22s ease;
}

.is-submenu-open > .vt-mobile-menu__parent .vt-mobile-submenu-toggle::before {
    transform: translateY(3px) rotate(225deg);
}

.vt-mobile-menu__list .sub-menu {
    display: grid;
    gap: 10px;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transition: max-height 0.28s ease, margin 0.28s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.vt-mobile-menu__list .is-submenu-open > .sub-menu {
    max-height: 420px;
    margin-top: 14px;
    opacity: 1;
    visibility: visible;
}

.vt-mobile-menu__list .sub-menu a {
    display: inline-flex;
    justify-content: center;
    color: var(--vt-light);
    font-family: var(--vt-heading-font);
    font-size: clamp(21px, 5.8vw, 30px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.18;
    text-align: center;
    text-transform: none;
}

.vt-mobile-menu__list .sub-menu a:hover,
.vt-mobile-menu__list .sub-menu .current-menu-item > a,
.vt-mobile-menu__list .sub-menu .current_page_item > a {
    color: var(--vt-gold);
}

@media (max-width: 767px) {
    .vt-menu-toggle {
        margin-right: -10px;
    }

    .vt-mobile-menu {
        padding-top: calc(var(--vt-header-height) + 70px);
    }

    .vt-mobile-menu__list {
        gap: 20px;
    }

    .vt-mobile-menu__parent {
        gap: 8px;
    }

    .vt-mobile-submenu-toggle {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .vt-mobile-submenu-toggle::before {
        width: 9px;
        height: 9px;
    }
}

/* v06: Podsolarsko-style mobile menu composition, side transition and mobile contact links. */
.vt-mobile-menu {
    z-index: 1150;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: clamp(74px, 10vh, 112px) 24px 48px;
    background: rgba(24, 20, 15, 0.985);
    color: var(--vt-white);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.52s cubic-bezier(.76, 0, .24, 1), opacity 0.28s ease, visibility 0.28s ease;
}

.vt-mobile-menu.is-open,
.vt-menu-open .vt-mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.vt-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 780px);
    max-height: calc(100svh - 96px);
    margin-inline: auto;
    overflow-y: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

.vt-mobile-menu__brand {
    margin: 0 0 clamp(34px, 7vh, 72px);
    color: var(--vt-gold);
    font-family: var(--vt-body-font);
    font-size: clamp(13px, 3vw, 16px);
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-transform: uppercase;
}

.vt-mobile-menu__nav {
    width: 100%;
}

.vt-mobile-menu__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 2.8vh, 28px);
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vt-mobile-menu__list > li {
    width: 100%;
    margin: 0;
    list-style: none;
    text-align: center;
}

.vt-mobile-menu__list > li > a,
.vt-mobile-menu__parent > a {
    display: inline-flex;
    justify-content: center;
    color: var(--vt-white);
    font-family: var(--vt-heading-font);
    font-size: clamp(34px, 9vw, 58px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-align: center;
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.vt-mobile-menu__list > li > a:hover,
.vt-mobile-menu__list > li > a:focus-visible,
.vt-mobile-menu__parent > a:hover,
.vt-mobile-menu__parent > a:focus-visible {
    color: var(--vt-white);
    opacity: 0.66;
    transform: translateY(-2px);
}

.vt-mobile-menu__list > .current-menu-item > a,
.vt-mobile-menu__list > .current_page_item > a,
.vt-mobile-menu__list > .current-menu-ancestor > .vt-mobile-menu__parent > a,
.vt-mobile-menu__list > .current-menu-parent > .vt-mobile-menu__parent > a,
.vt-mobile-menu__list > .current_page_ancestor > .vt-mobile-menu__parent > a,
.vt-mobile-menu__list > .current_page_parent > .vt-mobile-menu__parent > a {
    opacity: 0.58;
}

.vt-mobile-menu__parent {
    display: inline-grid;
    grid-template-columns: minmax(0, auto) 28px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
}

.vt-mobile-submenu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vt-white);
    cursor: pointer;
}

.vt-mobile-submenu-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 0.24s ease;
}

.is-submenu-open > .vt-mobile-menu__parent .vt-mobile-submenu-toggle::before {
    transform: translateY(3px) rotate(225deg);
}

.vt-mobile-menu__list .sub-menu {
    display: grid;
    gap: 9px;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transition: max-height 0.3s cubic-bezier(.76, 0, .24, 1), margin 0.3s cubic-bezier(.76, 0, .24, 1), opacity 0.22s ease, visibility 0.22s ease;
}

.vt-mobile-menu__list .is-submenu-open > .sub-menu {
    max-height: 480px;
    margin-top: clamp(10px, 2vh, 18px);
    opacity: 1;
    visibility: visible;
}

.vt-mobile-menu__list .sub-menu a {
    display: inline-flex;
    justify-content: center;
    color: var(--vt-white);
    font-family: var(--vt-heading-font);
    font-size: clamp(21px, 5.8vw, 31px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
    text-align: center;
    text-transform: none;
    transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.vt-mobile-menu__list .sub-menu a:hover,
.vt-mobile-menu__list .sub-menu a:focus-visible,
.vt-mobile-menu__list .sub-menu .current-menu-item > a,
.vt-mobile-menu__list .sub-menu .current_page_item > a {
    color: var(--vt-white);
    opacity: 0.66;
}

.vt-mobile-menu__contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin-top: clamp(34px, 7vh, 76px);
    color: var(--vt-white);
    font-family: var(--vt-body-font);
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 700;
    line-height: 1.35;
}

.vt-mobile-menu__contact a,
.vt-mobile-menu__contact a:hover,
.vt-mobile-menu__contact a:focus-visible,
.vt-mobile-menu__contact a:visited {
    color: var(--vt-white);
    text-decoration: none;
}

.vt-menu-toggle {
    z-index: 1201;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vt-gold);
    cursor: pointer;
}

.vt-menu-toggle span,
.vt-menu-toggle span:first-child,
.vt-menu-toggle span:last-child {
    position: static;
    top: auto;
    left: auto;
    display: block;
    width: 27px;
    height: 1px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform: none;
    transform-origin: center;
    transition: transform 0.32s cubic-bezier(.76, 0, .24, 1), opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.vt-menu-toggle.is-active,
.vt-menu-toggle.is-active:hover,
.vt-menu-toggle.is-active:focus-visible {
    color: var(--vt-white);
}

.vt-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.vt-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.vt-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.vt-menu-open .vt-menu-toggle {
    position: fixed;
    top: 10px;
    right: max(20px, calc((100vw - var(--vt-container)) / 2 + 20px));
    z-index: 1201;
}

.admin-bar.vt-menu-open .vt-menu-toggle {
    top: 42px;
}

@media (max-width: 782px) {
    .admin-bar.vt-menu-open .vt-menu-toggle {
        top: 56px;
    }
}

@media (max-width: 1024px) {
    .vt-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .vt-mobile-menu {
        padding: 72px 22px 42px;
    }

    .vt-mobile-menu__inner {
        max-height: calc(100svh - 76px);
    }

    .vt-mobile-menu__brand {
        margin-bottom: clamp(30px, 7vh, 52px);
    }

    .vt-menu-toggle {
        margin-right: -10px;
    }

    .vt-menu-open .vt-menu-toggle {
        right: 16px;
        margin-right: 0;
    }
}

@media (max-height: 680px) and (max-width: 767px) {
    .vt-mobile-menu {
        align-items: flex-start;
        padding-top: 66px;
        padding-bottom: 28px;
    }

    .vt-mobile-menu__inner {
        justify-content: flex-start;
    }

    .vt-mobile-menu__brand {
        margin-bottom: 24px;
    }

    .vt-mobile-menu__list {
        gap: 12px;
    }

    .vt-mobile-menu__list > li > a,
    .vt-mobile-menu__parent > a {
        font-size: clamp(29px, 8.8vw, 40px);
    }

    .vt-mobile-menu__contact {
        margin-top: 28px;
    }
}

/* v07: vrata grid filter + editable footer contact */
.vt-door-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
}

.vt-door-filter__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 18px;
    border: 1px solid var(--vt-border);
    color: var(--vt-text-muted);
    font-family: var(--vt-body-font);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.vt-door-filter__item:hover,
.vt-door-filter__item.is-active {
    border-color: var(--vt-gold);
    background: rgba(192, 154, 90, 0.10);
    color: var(--vt-gold);
}

.vt-door-grid-section__empty {
    margin: 0;
    padding: 28px 30px;
    border: 1px solid var(--vt-border);
    color: var(--vt-text-muted);
    font-size: 14px;
}

.vt-footer__contact a {
    color: var(--vt-text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.vt-footer__contact a:hover {
    color: var(--vt-gold);
}

@media (max-width: 767px) {
    .vt-door-filter {
        gap: 8px;
        margin-bottom: 22px;
    }

    .vt-door-filter__item {
        min-height: 36px;
        padding: 9px 13px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }
}

/* v08: AJAX filter state */
.vt-door-grid-section[data-vt-door-grid-ajax] {
    position: relative;
}

.vt-door-grid-section.is-loading .vt-door-grid-section__results,
.vt-door-grid-section.is-loading .vt-door-filter,
.vt-door-grid-section.is-loading .vt-door-grid-section__button {
    opacity: 0.45;
    pointer-events: none;
}

.vt-door-grid-section.is-loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border: 2px solid rgba(192, 154, 90, 0.28);
    border-top-color: var(--vt-gold);
    border-radius: 999px;
    animation: vt-filter-spin 0.75s linear infinite;
    z-index: 2;
}

@keyframes vt-filter-spin {
    to {
        transform: rotate(360deg);
    }
}

.vt-door-frame-card__link {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    color: var(--vt-gold);
    font-family: var(--vt-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.vt-door-frame-card__link:hover {
    color: var(--vt-cream);
}

.vt-contact-form-wrap {
    width: 100%;
}

.vt-contact-form-head {
    margin-bottom: 28px;
}

.vt-contact-form-head h2 {
    margin: 0 0 10px;
    color: var(--vt-cream);
    font-family: var(--vt-font-serif);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.06;
}

.vt-contact-form-head p {
    max-width: 620px;
    margin: 0;
    color: var(--vt-muted);
}

/* v12 cache-safe similar products on single vrata */
.vt-similar-products {
    padding: 68px 0 76px;
    background: var(--vt-dark);
    border-top: 1px solid rgba(192, 154, 90, 0.1);
    border-bottom: 1px solid rgba(192, 154, 90, 0.1);
}

.vt-similar-products.is-loading {
    min-height: 180px;
}

.vt-similar-products__head {
    margin-bottom: 28px;
}

.vt-similar-products__title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.vt-similar-products__title-row h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
}

.vt-similar-products__controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.vt-similar-products__arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--vt-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--vt-gold);
    font-family: var(--vt-heading-font);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.vt-similar-products__arrow:hover,
.vt-similar-products__arrow:focus-visible {
    background: rgba(192, 154, 90, 0.1);
    border-color: rgba(192, 154, 90, 0.5);
    outline: none;
}

.vt-similar-products__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.vt-similar-products__viewport {
    overflow: hidden;
}

.vt-similar-products__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.vt-similar-products__track::-webkit-scrollbar {
    display: none;
}

.vt-similar-card {
    min-width: 0;
    scroll-snap-align: start;
}

.vt-similar-card__link {
    display: grid;
    grid-template-columns: minmax(150px, 42%) minmax(0, 1fr);
    gap: 20px;
    min-height: 205px;
    height: 100%;
    padding: 14px;
    border: 1px solid var(--vt-border);
    background: rgba(255, 255, 255, 0.025);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.vt-similar-card__link:hover,
.vt-similar-card__link:focus-visible {
    background: rgba(192, 154, 90, 0.06);
    border-color: rgba(192, 154, 90, 0.42);
    outline: none;
    transform: translateY(-2px);
}

.vt-similar-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 177px;
    margin: 0;
    padding: 18px;
    overflow: hidden;
    background: #fff;
}

.vt-similar-card__image img {
    width: 100%;
    height: 100%;
    max-height: 170px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.vt-similar-card__link:hover .vt-similar-card__image img,
.vt-similar-card__link:focus-visible .vt-similar-card__image img {
    transform: scale(1.035);
}

.vt-similar-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 14px 10px 14px 0;
}

.vt-similar-card__body h3 {
    margin: 0 0 18px;
    color: var(--vt-light);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.2;
}

.vt-similar-card__body span {
    margin-top: auto;
    color: var(--vt-gold);
    font-family: var(--vt-body-font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .vt-similar-products__track {
        grid-auto-columns: min(82vw, 620px);
    }
}

@media (max-width: 767px) {
    .vt-similar-products {
        padding: 54px 0 62px;
    }

    .vt-similar-products__title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .vt-similar-products__controls {
        align-self: flex-start;
    }

    .vt-similar-products__track {
        grid-auto-columns: min(88vw, 390px);
        gap: 16px;
        margin-right: -24px;
        padding-right: 24px;
    }

    .vt-similar-card__link {
        grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
        gap: 14px;
        min-height: 168px;
        padding: 10px;
    }

    .vt-similar-card__image {
        min-height: 148px;
        padding: 14px;
    }

    .vt-similar-card__image img {
        max-height: 142px;
    }

    .vt-similar-card__body {
        padding: 10px 6px 10px 0;
    }

    .vt-similar-card__body h3 {
        margin-bottom: 14px;
        font-size: 16px;
    }
}


/* v14 assortment/product grid card update: similar-products card style + old meta/price content */
.vt-door-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.vt-door-grid--with-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    border: 0;
}

.vt-door-grid--with-images .vt-door-card {
    min-height: 0;
    border: 0;
    background: transparent;
}

.vt-door-grid--with-images .vt-door-card__link {
    display: grid;
    grid-template-columns: minmax(150px, 42%) minmax(0, 1fr);
    gap: 20px;
    min-height: 205px;
    height: 100%;
    padding: 14px;
    border: 1px solid var(--vt-border);
    background: rgba(255, 255, 255, 0.025);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.vt-door-grid--with-images .vt-door-card__link:hover,
.vt-door-grid--with-images .vt-door-card__link:focus-visible {
    background: rgba(192, 154, 90, 0.06);
    border-color: rgba(192, 154, 90, 0.42);
    outline: none;
    transform: translateY(-2px);
}

.vt-door-grid--with-images .vt-door-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 177px;
    height: 100%;
    margin: 0;
    padding: 18px;
    overflow: hidden;
    border: 0;
    background: #fff;
}

.vt-door-grid--with-images .vt-door-card__image img {
    width: 100%;
    height: 100%;
    max-height: 170px;
    aspect-ratio: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.vt-door-grid--with-images .vt-door-card__link:hover .vt-door-card__image img,
.vt-door-grid--with-images .vt-door-card__link:focus-visible .vt-door-card__image img {
    transform: scale(1.035);
}

.vt-door-grid--with-images .vt-door-card__body {
    justify-content: center;
    padding: 14px 10px 14px 0;
}

.vt-door-grid--with-images .vt-door-card__number {
    display: none;
}

.vt-door-grid--with-images .vt-door-card__title {
    margin: 0 0 12px;
    color: var(--vt-light);
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1.2;
}

.vt-door-grid--with-images .vt-door-card__attributes {
    gap: 4px;
    margin: 0 0 18px;
    color: var(--vt-text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.vt-door-grid--with-images .vt-door-card__price {
    margin-top: auto;
    padding-top: 0;
    color: var(--vt-gold);
}

.vt-door-grid--with-images .vt-door-card__price strong {
    font-family: var(--vt-heading-font);
    font-size: clamp(18px, 1.4vw, 23px);
    font-weight: 700;
    line-height: 1.1;
}

@media (max-width: 1024px) {
    .vt-door-grid--with-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .vt-door-grid--with-images {
        gap: 16px;
    }

    .vt-door-grid--with-images .vt-door-card__link {
        grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
        gap: 14px;
        min-height: 168px;
        padding: 10px;
    }

    .vt-door-grid--with-images .vt-door-card__image {
        min-height: 148px;
        padding: 14px;
    }

    .vt-door-grid--with-images .vt-door-card__image img {
        max-height: 142px;
    }

    .vt-door-grid--with-images .vt-door-card__body {
        padding: 10px 6px 10px 0;
    }

    .vt-door-grid--with-images .vt-door-card__title {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .vt-door-grid--with-images .vt-door-card__attributes {
        margin-bottom: 14px;
        font-size: 11.5px;
    }

    .vt-door-grid--with-images .vt-door-card__price strong {
        font-size: 18px;
    }
}
