/* =========================================================
   DECORA PLAZA — UI LAYER
   OpenCart 2.3 / Bootstrap 3
   Загружается ПОСЛЕ stylesheet.css
   ========================================================= */


/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */

:root {
    --ink: #111111;
    --paper: #f7f5f1;
    --white: #ffffff;
    --line: rgba(17, 17, 17, .15);
    --soft: rgba(255, 255, 255, .82);

    --serif: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

    --header-height: 82px;
    --header-height-mobile: 70px;
}


/* =========================================================
   02. SHARED DECORA ELEMENTS
   ВАЖНО: никаких глобальных reset'ов для a/img/header/container.
   Старый OpenCart / Bootstrap не ломаем.
   ========================================================= */

.dp-wide {
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    padding-left: 42px;
    padding-right: 42px;
}

.kicker {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.section-no {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .54;
}

.mag-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.mag-title.small {
    font-size: clamp(30px, 3.1vw, 44px);
}

.copy {
    max-width: 610px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

.label-line {
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.btn-quiet {
    display: inline-block;
    padding: 13px 19px;
    border: 0;
    color: inherit;
    background: transparent;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-quiet:hover,
.btn-quiet:focus {
    color: #fff;
    background: #111;
    text-decoration: none;
}

.btn-quiet.white:hover,
.btn-quiet.white:focus {
    color: #111;
    background: #fff;
}

.credit {
    position: absolute;
    right: 18px;
    bottom: 14px;
    z-index: 4;
    color: rgba(255, 255, 255, .75);
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-head {
    padding: 86px 0 44px;
}

.section-head .copy {
    margin-top: 18px;
}

.paper {
    background: var(--paper);
}

.white {
    background: #fff;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.site-head {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;

    height: var(--header-height);
    padding: 0;
    border: 0;

    color: #fff;
    background:
        linear-gradient(
            180deg,
            rgba(0, 3, 5, 1) 0%,
            rgba(0, 0, 0, .50) 60%,
            rgba(0, 0, 0, 0) 100%
        );
}

.site-head .head-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    display: block;
    flex: 0 0 auto;
    line-height: 1;
}

.site-head .logo {
    display: block;
    width: 190px;
    height: auto;
    max-width: none;
    filter: brightness(0) invert(1);
}


/* =========================================================
   04. DESKTOP NAVIGATION
   ========================================================= */

.site-navigation {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    margin-left: 30px;
}

.site-navigation #menu {
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-navigation #menu .navbar-header {
    min-height: 0;
}

.site-navigation #menu .navbar-collapse {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.dp-menu-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.dp-menu-list > li {
    position: relative;
    float: none;
}

#menu .nav > li > a.dp-menu-link {
    display: block;
    padding: 12px 13px;

    color: #fff;
    background: transparent !important;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-shadow: none;
    white-space: nowrap;

    transition: opacity .2s ease;
}

#menu .nav > li > a.dp-menu-link:hover,
#menu .nav > li > a.dp-menu-link:focus,
#menu .nav > li.open > a.dp-menu-link {
    color: #fff;
    background: transparent !important;
    opacity: .65;
    text-decoration: none;
}

.dp-menu-arrow {
    margin-left: 5px;
    font-size: 10px;
    transition: transform .2s ease;
}

.dp-has-children.open > .dp-menu-link .dp-menu-arrow {
    transform: rotate(180deg);
}

.dp-menu .dropdown-triangle {
    display: none !important;
}


/* CTA в navbar */

#menu .nav > li > a.head-consult {
    display: block;
    margin-left: 10px;
    padding: 10px 13px;

    border: 1px solid rgba(255, 255, 255, .70);
    border-radius: 0;

    color: #fff;
    background: transparent !important;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-shadow: none;
    white-space: nowrap;

    transition: background .2s ease, color .2s ease;
}

#menu .nav > li > a.head-consult:hover,
#menu .nav > li > a.head-consult:focus {
    color: #111 !important;
    background: #fff !important;
    text-decoration: none;
}


/* =========================================================
   05. DESKTOP DROPDOWN — LEVEL 1
   ========================================================= */

.dp-has-children {
    position: relative;
}

#menu .dp-dropdown {
    top: 100%;
    left: 0;

    min-width: 560px;
    margin-top: 14px;
    padding: 0;

    border: 0;
    border-radius: 0;

    color: #111;
    background: var(--paper);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.dp-dropdown-inner {
    display: flex;
    align-items: flex-start;
    padding: 28px 30px 22px;
}

.dp-dropdown-column {
    min-width: 190px;
    margin: 0 30px 0 0;
    padding: 0;
}

.dp-dropdown-column:last-child {
    margin-right: 0;
}

.dp-dropdown-column > li > a {
    display: block;
    padding: 8px 0;

    color: #111;
    background: transparent;

    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;

    transition: opacity .2s ease;
}

.dp-dropdown-column > li > a:hover,
.dp-dropdown-column > li > a:focus {
    color: #111;
    background: transparent;
    opacity: .55;
    text-decoration: none;
}

.dp-see-all {
    display: block;
    padding: 15px 30px;

    border-top: 1px solid rgba(17, 17, 17, .15);

    color: #111;
    background: transparent;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
}

.dp-see-all:hover,
.dp-see-all:focus {
    color: #111;
    background: rgba(0, 0, 0, .035);
    text-decoration: none;
}


/* =========================================================
   06. DESKTOP DROPDOWN — LEVEL 2 / 3
   ========================================================= */

.dp-has-submenu {
    position: relative;
}

.dp-sub-dropdown {
    position: absolute;
    top: -20px;
    left: 100%;
    z-index: 1002;

    display: none;
    min-width: 320px;

    border: 0;
    background: #fff;

    box-shadow: 15px 15px 40px rgba(0, 0, 0, .12);
}

.dp-has-submenu:hover > .dp-sub-dropdown,
.dp-has-submenu:focus-within > .dp-sub-dropdown {
    display: block;
}

.dp-sub-dropdown-inner {
    padding: 22px 25px;
}

.dp-sub-dropdown-inner ul {
    margin: 0;
    padding: 0;
}

.dp-sub-dropdown-inner a {
    display: block;
    padding: 7px 0;

    color: #111;
    background: transparent;

    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.4;
    text-decoration: none;
}

.dp-sub-dropdown-inner a:hover,
.dp-sub-dropdown-inner a:focus {
    color: #111;
    opacity: .55;
    text-decoration: none;
}


/* =========================================================
   07. HERO
   ========================================================= */

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 100vh;
    min-height: 720px;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .43) 0%, rgba(0, 0, 0, .13) 58%, rgba(0, 0, 0, .06) 100%),
    background-position: center center;
    background-size: cover;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-bottom: 68px;
}

.hero h1 {
    max-width: 95vw;
    margin: 14px 0 22px;
    font-family: var(--serif);
    font-size: clamp(40px, 7vw, 66px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.038em;
    text-wrap: balance;
}

.hero p {
    max-width: 550px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .88);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-note {
    position: absolute;
    right: 0;
    bottom: 68px;

    opacity: .78;

    font-family: var(--sans);
    font-size: 9px;
    line-height: 1.7;
    letter-spacing: .16em;
    text-align: right;
    text-transform: uppercase;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .50);
}


/* =========================================================
   08. EDITORIAL MANIFESTO
   ========================================================= */

.manifesto {
    padding: 96px 0 100px;
}

.manifesto .big-line {
    max-width: 1060px;
    margin: 18px 0 0;

    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 53px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.manifesto .aside {
    margin-top: 12px;
    padding-left: 25px;

    border-left: 1px solid var(--line);

    color: rgba(17, 17, 17, .62);

    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   09. SPACES
   ========================================================= */

.spaces {
    padding: 0;
    background: #fff;
}

.cover-grid {
    display: flex;
    width: 100%;
    height: 82vh;
    min-height: 650px;
}

.cover-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    color: #fff;
}

.cover-panel::before {
    position: absolute;
    inset: 0;
    content: "";
    background-position: center;
    background-size: cover;
    transition: transform .9s cubic-bezier(.2, .6, .2, 1);
}

.cover-panel::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .50),
            rgba(0, 0, 0, .03) 65%
        );
}

.cover-panel:hover::before {
    transform: scale(1.025);
}

.cover-copy {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    z-index: 3;
}

.cover-copy .mini {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .78;
}

.cover-copy h3 {
    margin: 8px 0 0;

    font-family: var(--serif);
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 400;
    letter-spacing: -.02em;
}


/* =========================================================
   10. CATALOG CHAPTER
   ========================================================= */

.catalog-chapter {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 92vh;

    color: #222;
}

.catalog-box {
    max-width: 800px;
}

.catalog-box .mag-title {
    margin: 15px 0 35px;
}

.category-links {
    border-top: 1px solid rgba(17, 17, 17, .20);
}

.category-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 126px;
    padding: 10px;

    border: 1px solid #111;

    color: #111;
    background: transparent;

    font-family: var(--serif);
    text-decoration: none;
}

.category-link:hover,
.category-link:focus {
    color: #111;
    text-decoration: none;
}

.category-link h3 {
    width: 90%;
    margin: 5px 0;

    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
    text-align: left;
}

.category-link p {
    width: 90%;
    margin: 10px 5%;

    font-family: var(--sans);
    font-size: 9px;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
}

.cards-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.cards-row > [class*="col-"] {
    display: flex;
    float: none;
    align-items: stretch;
    margin-bottom: 15px;
}


/* =========================================================
   11. STYLE FINDER
   ========================================================= */

.finder {
    padding: 100px 0;
    background: #fff;
}

.finder-top {
    margin-bottom: 55px;
}

.finder-list {
    border-top: 1px solid var(--line);
}

.finder-item {
    position: relative;
    display: block;
    padding: 19px 0;

    border-bottom: 1px solid var(--line);

    color: #111;
    text-decoration: none;
}

.finder-item:hover,
.finder-item:focus {
    color: #111;
    text-decoration: none;
}

.finder-item .name {
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.025em;
}

.finder-item .desc {
    float: right;
    margin-top: 13px;

    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .48;
}


/* =========================================================
   12. EXCLUSIVE
   ========================================================= */

.exclusive {
    position: relative;
    display: flex;
    align-items: flex-end;

    height: 95vh;
    min-height: 700px;

    color: #fff;

    background-image:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .47),
            rgba(0, 0, 0, .06) 65%
        ),


    background-position: center 40%;
    background-size: cover;
}

.exclusive-copy {
    position: relative;
    z-index: 3;
    padding-bottom: 58px;
}

.exclusive-copy .mag-title {
    max-width: 740px;
    margin: 12px 0 18px;
}

.exclusive-copy .copy {
    color: rgba(255, 255, 255, .84);
}

.exclusive-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 26px;

    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .85;
}


/* =========================================================
   13. COUNTRIES
   ========================================================= */

.countries {
    padding: 100px 0;
    background: var(--paper);
}

.country-wrap {
    margin-top: 44px;
}

.country-card {
    position: relative;
    display: block;

    height: 720px;
    overflow: hidden;

    color: #fff;
    text-decoration: none;
}

.country-card::before {
    position: absolute;
    inset: 0;

    content: "";

    background-position: center;
    background-size: cover;

    transition: transform .8s ease;
}


.country-card::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .52),
            rgba(0, 0, 0, .02) 70%
        );
}

.country-card:hover::before {
    transform: scale(1.02);
}

.country-copy {
    position: relative;
    z-index: 3;
    margin: 30px;
}

.country-copy h3 {
    margin: 4px 0 12px;

    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -.025em;
}

.country-copy p {
    max-width: 470px;
    margin: 0;

    font-family: var(--sans);
    font-size: 9px;
    line-height: 1.8;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* =========================================================
   14. TRUST
   ========================================================= */

.trust {
    padding: 112px 0;
    background: #fff;
}

.trust-hero {
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.trust-grid {
    margin-top: 58px;
    border-top: 1px solid var(--line);
}

.trust-item {
    padding: 25px 0 24px;
    border-bottom: 1px solid var(--line);
}

.trust-item .num {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .14em;
    opacity: .45;
}

.trust-item h4 {
    margin: 9px 0 5px;

    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.trust-item p {
    max-width: 420px;
    margin: 0;

    color: rgba(17, 17, 17, .62);

    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   15. 3D VISUALIZATION
   ========================================================= */

.viz {
    position: relative;
    display: flex;
    align-items: center;

    height: 94vh;
    min-height: 700px;

    color: #fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .52),
            rgba(0, 0, 0, .10)
        ),


    background-position: center;
    background-size: cover;
}

.viz-copy {
    max-width: 650px;
}

.viz-copy .mag-title {
    margin: 13px 0 20px;
}

.viz-copy .copy {
    max-width: 530px;
    color: rgba(255, 255, 255, .82);
}

.viz-note {
    max-width: 540px;
    margin-top: 28px;
    padding-top: 16px;

    border-top: 1px solid rgba(255, 255, 255, .45);

    font-family: var(--sans);
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: .03em;
}


/* =========================================================
   16. AVAILABILITY
   ========================================================= */

.availability {
    padding: 110px 0;
    background: var(--paper);
}

.availability-head {
    margin-bottom: 58px;
}

.av-card {
    position: relative;
    min-height: 360px;

    padding-top: 19px;
    border-top: 1px solid #111;
}

.av-card .status {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.av-card h3 {
    margin: 20px 0 10px;

    font-family: var(--serif);
    font-size: clamp(32px, 3.2vw, 45px);
    font-weight: 400;
}

.av-card p {
    max-width: 430px;

    color: rgba(17, 17, 17, .65);

    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.8;
}

.av-card .big {
    position: absolute;
    bottom: 0;
    left: 0;

    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 82px);
    line-height: .9;
    letter-spacing: -.04em;
}


/* =========================================================
   17. CONSULTATION
   ========================================================= */

.consult-block {
    position: relative;
    display: flex;
    align-items: flex-end;

    height: 92vh;
    min-height: 700px;

    color: #fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .48),
            rgba(0, 0, 0, .08)
        ),


    background-position: center;
    background-size: cover;
}

.consult-copy {
    max-width: 680px;
    padding-bottom: 60px;
}

.consult-copy .mag-title {
    margin: 12px 0 18px;
}

.consult-copy .copy {
    color: rgba(255, 255, 255, .84);
}


/* =========================================================
   18. PICKS
   ========================================================= */

.picks {
    padding: 100px 0 115px;
    background: #fff;
}

.picks-strip {
    margin-top: 52px;
}

.pick {
    position: relative;
    display: block;

    height: 520px;
    margin-bottom: 30px;
    overflow: hidden;

    color: #fff;
    text-decoration: none;
}

.pick img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.pick::after {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, 0) 65%
        );
}

.pick:hover img {
    transform: scale(1.02);
}

.pick-copy {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    z-index: 3;
}

.pick-copy .brand {
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .8;
}

.pick-copy h4 {
    margin: 5px 0;

    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
}

.pick-copy .meta {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
    opacity: .82;
}


/* =========================================================
   19. SHOWROOM
   ========================================================= */

.showroom {
    position: relative;
    display: flex;
    align-items: center;

    height: 88vh;
    min-height: 650px;

    color: #fff;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .53),
            rgba(0, 0, 0, .10)
        ),


    background-position: center;
    background-size: cover;
}

.showroom-copy {
    max-width: 620px;
}

.showroom-copy .mag-title {
    margin: 12px 0 18px;
}

.showroom-copy .address {
    margin: 23px 0 27px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, .45);

    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   20. FINAL
   ========================================================= */

.final {
    padding: 120px 0 85px;
    background: #fff;
    text-align: center;
}

.final .mag-title {
    max-width: 900px;
    margin: 0 auto 22px;
}

.final .copy {
    margin: 0 auto 30px;
}

.final-logo {
    display: block;
    width: 205px;
    height: auto;
    margin: 95px auto 0;
    opacity: .82;
}

.footer-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;

    margin-top: 58px;
    padding-top: 22px;

    border-top: 1px solid var(--line);

    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .58;
}


/* =========================================================
   21. TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1100px) {

    .dp-wide {
        padding-left: 28px;
        padding-right: 28px;
    }

    .site-navigation {
        margin-left: 18px;
    }

    #menu .nav > li > a.dp-menu-link {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 8px;
        letter-spacing: .10em;
    }

    #menu .nav > li > a.head-consult {
        margin-left: 5px;
        padding-right: 9px;
        padding-left: 9px;
        font-size: 8px;
    }

    .site-head .logo {
        width: 165px;
    }

    .hero-note {
        display: none;
    }

    .country-card {
        height: 590px;
    }
}


/* =========================================================
   22. MOBILE HEADER / NAVIGATION
   ========================================================= */

@media (max-width: 767px) {

    .dp-wide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-head {
        height: var(--header-height-mobile);
        overflow: visible;
    }

    .site-head .head-inner {
        height: var(--header-height-mobile);
    }

    .site-head .logo {
        width: 145px;
    }

    .site-navigation {
        position: static;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .site-navigation #menu {
        position: static;
        display: block;
        width: auto;
        margin: 0;
        padding: 0;
    }

    .site-navigation #menu .navbar-header {
        display: block;
        float: none;
        min-height: 0;
    }

    .site-navigation #menu .navbar-toggle {
        display: block;
        float: none;

        margin: 0;
        padding: 10px 0 10px 12px;

        border: 0;
        border-radius: 0;

        color: #fff;
        background: transparent;
    }

    .site-navigation #menu .navbar-toggle:hover,
    .site-navigation #menu .navbar-toggle:focus {
        color: #fff;
        background: transparent;
    }

    .site-navigation #menu .navbar-toggle .fa {
        color: #fff;
        font-size: 21px;
        font-weight: 300;
    }

    .site-navigation #menu .navbar-toggle .icon-bar {
        display: block;
        width: 24px;
        height: 1px;
        margin: 5px 0;

        border-radius: 0;
        background: #fff;
    }

    .site-navigation #menu .navbar-collapse {
        position: absolute;
        top: var(--header-height-mobile);
        right: -20px;
        left: -20px;
        z-index: 1100;

        width: auto;
        max-height: calc(100vh - var(--header-height-mobile));
        margin: 0;
        padding: 0;
        overflow-y: auto;

        border: 0;
        background: #0b0b0b;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .28);
    }

    .site-navigation #menu .navbar-collapse.collapse {
        display: none !important;
    }

    .site-navigation #menu .navbar-collapse.collapse.in {
        display: block !important;
		padding: 15px;
    }

    .dp-menu-list {
        display: block !important;
        float: none !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .dp-menu-list > li {
        display: block;
        float: none !important;
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .dp-menu-list > li:last-child {
        border-bottom: 0;
    }

    #menu .nav > li > a.dp-menu-link {
        display: block;
        width: 100%;
        padding: 15px 20px;

        color: #fff !important;
        background: transparent !important;

        font-size: 10px;
        line-height: 1.4;
        letter-spacing: .10em;
        white-space: normal;
        opacity: 1;
    }

    #menu .nav > li > a.dp-menu-link:hover,
    #menu .nav > li > a.dp-menu-link:focus,
    #menu .nav > li.open > a.dp-menu-link {
        color: #fff !important;
        background: rgba(255, 255, 255, .055) !important;
        opacity: 1;
    }

    .dp-menu-arrow {
        float: right;
        margin-top: 2px;
        margin-left: 10px;
        font-size: 13px;
    }

    #menu .dp-dropdown {
        position: static !important;
        float: none !important;

        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;

        border: 0;
        border-radius: 0;

        color: #111;
        background: var(--paper);
        box-shadow: none;
    }

    .dp-dropdown-inner {
        display: block;
        padding: 0;
    }

    .dp-dropdown-column {
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;
    }

    .dp-dropdown-column > li {
        margin: 0;
        border-bottom: 1px solid rgba(17, 17, 17, .08);
    }

    .dp-dropdown-column > li:last-child {
        border-bottom: 0;
    }

    .dp-dropdown-column > li > a {
        display: block;
        width: 100%;
        padding: 13px 20px;

        color: #111;
        background: transparent;

        font-size: 12px;
        line-height: 1.4;
        text-decoration: none;
    }

    .dp-dropdown-column > li > a:hover,
    .dp-dropdown-column > li > a:focus {
        color: #111;
        background: rgba(0, 0, 0, .035);
        opacity: 1;
    }

    /* Третий уровень доступен без дополнительного JS */
    .dp-sub-dropdown {
        position: static !important;
        display: block !important;

        width: 100%;
        min-width: 0;

        background: #efebe5;
        box-shadow: none;
    }

    .dp-sub-dropdown-inner {
        padding: 0;
    }

    .dp-sub-dropdown-inner ul {
        margin: 0;
        padding: 0;
    }

    .dp-sub-dropdown-inner li {
        margin: 0;
        list-style: none;
        border-bottom: 1px solid rgba(17, 17, 17, .06);
    }

    .dp-sub-dropdown-inner a {
        display: block;
        padding: 11px 20px 11px 38px;

        color: #111;
        background: transparent;

        font-size: 11px;
        line-height: 1.4;
        text-decoration: none;
    }

    .dp-sub-dropdown-inner a:hover,
    .dp-sub-dropdown-inner a:focus {
        color: #111;
        background: rgba(0, 0, 0, .03);
        opacity: 1;
    }

    .dp-see-all {
        padding: 12px 20px;

        border-top: 1px solid rgba(17, 17, 17, .10);

        color: #111;
        background: #e8e3dc;

        font-size: 9px;
        letter-spacing: .11em;
    }

    .dp-see-all:hover,
    .dp-see-all:focus {
        color: #111;
        background: #e1dbd3;
    }

    #menu .nav > li > a.head-consult {
        width: auto;
        margin: 12px 14px 14px;
        padding: 13px 14px;

        border: 1px solid rgba(255, 255, 255, .55);

        color: #fff !important;
        background: transparent !important;

        font-size: 9px;
        text-align: center;
    }

    #menu .nav > li > a.head-consult:hover,
    #menu .nav > li > a.head-consult:focus {
        color: #111 !important;
        background: #fff !important;
    }


    /* =====================================================
       MOBILE — CONTENT BLOCKS
       ===================================================== */

    .hero {
        min-height: 680px;
        background-position: 58% center;
    }

    .hero-inner {
        padding-bottom: 42px;
    }

    .hero h1 {
        width: 92%;
    }

    .hero-note {
        display: none;
    }

    .manifesto {
        padding: 70px 0;
    }

    .manifesto .aside {
        margin-top: 30px;
    }

    .cover-grid {
        display: block;
        height: auto;
    }

    .cover-panel {
        height: 68vh;
        min-height: 520px;
    }

    .catalog-chapter {
        min-height: 760px;
    }

    .category-link {
        min-height: 110px;
    }

    .finder {
        padding: 75px 0;
    }

    .finder-item .desc {
        display: block;
        float: none;
        margin-top: 5px;
    }

    .exclusive {
        min-height: 720px;
        background-position: 58% center;
    }

    .countries {
        padding: 75px 0;
    }

    .country-card {
        height: 560px;
        margin-bottom: 18px;
    }

    .trust {
        padding: 80px 0;
    }

    .viz {
        min-height: 750px;
        background-position: 62% center;
    }

    .availability {
        padding: 80px 0;
    }

    .av-card {
        min-height: 290px;
        margin-bottom: 45px;
    }

    .consult-block {
        min-height: 740px;
    }

    .picks {
        padding: 75px 0 85px;
    }

    .pick {
        height: 480px;
    }

    .showroom {
        min-height: 700px;
        background-position: 60% center;
    }

    .final {
        padding: 85px 0 60px;
    }
}



/* ДОП стили из под stylesheet */
#pre-home {
    padding-top: 0;
    width: 100%;
}
.owl-carousel {
    margin: 0px 0 0px;
    position: relative;
    padding: 0px;
	height: 100vh;
    overflow: hidden;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
    display: block;
    width: 100vw;
    height: auto;
}
h1{
	text-transform: none;
}
/* =========================================================
   23. HERO SLIDESHOW
   ========================================================= */

.dp-hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.dp-hero-slider .owl-wrapper-outer {
    width: 100%;
    overflow: hidden;
}

.dp-hero-slider .owl-wrapper {
    display: block;
}

.dp-hero-slider .owl-item {
    overflow: hidden;
}

.dp-hero-slider .dp-hero-slide {
    width: 100%;
    margin: 0;
}


/* Текст должен быть выше затемнения */

.dp-hero-slider .hero-inner {
    position: relative;
    z-index: 3;
}

.dp-hero-slider .overlay {
    z-index: 1;
    pointer-events: none;
}

.dp-hero-slider .credit {
    z-index: 4;
}


/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.dp-hero-slider .owl-controls {
    margin: 0;
}

.dp-hero-slider .owl-buttons > div {
    position: absolute;
    top: 50%;
    z-index: 20;

    width: 42px;
    height: 42px;
    margin: -21px 0 0;
    padding: 0;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 0;

    color: #fff;
    background: rgba(0,0,0,.12);

    font-size: 22px;
    line-height: 40px;
    text-align: center;

    opacity: .65;

    transition:
        background .2s ease,
        color .2s ease,
        opacity .2s ease;
}

.dp-hero-slider .owl-buttons > div:hover {
    color: #111;
    background: #fff;
    opacity: 1;
}

.dp-hero-slider .owl-prev {
    left: 24px;
}

.dp-hero-slider .owl-next {
    right: 24px;
}


/* ---------------------------------------------------------
   PAGINATION
   --------------------------------------------------------- */

.dp-hero-slider .owl-pagination {
    position: absolute;
    right: 42px;
    bottom: 34px;
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 7px;
}

.dp-hero-slider .owl-page {
    display: block;
}

.dp-hero-slider .owl-page span {
    display: block;

    width: 25px;
    height: 2px;
    margin: 0;

    border-radius: 0;

    background: rgba(255,255,255,.40);

    opacity: 1;
}

.dp-hero-slider .owl-page.active span {
    background: #fff;
}


/* ---------------------------------------------------------
   HERO BUTTONS
   --------------------------------------------------------- */

.dp-hero-slider .hero-actions {
    position: relative;
    z-index: 4;
}

.dp-hero-slider .btn-quiet.black {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    background: rgba(0,0,0,.08);
}

.dp-hero-slider .btn-quiet.black:hover,
.dp-hero-slider .btn-quiet.black:focus {
    border-color: #fff;
    color: #111;
    background: #fff;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width:767px) {

    .dp-hero-slider .hero {
        min-height: 680px;
    }

    .dp-hero-slider .owl-buttons {
        display: none;
    }

    .dp-hero-slider .owl-pagination {
        right: 20px;
        bottom: 20px;
    }

    .dp-hero-slider .owl-page span {
        width: 20px;
    }

}