/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;

    color: #121212;

    background: #f4f2ed;

    overflow-x: hidden;
}


body.lock {
    overflow: hidden;
}


img {
    display: block;
}


a {
    color: inherit;
}


button,
input {
    font: inherit;
}



/* =========================
   HEADER
========================= */

.header {
    position: absolute;

    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;
    height: 72px;

    padding: 0 35px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    background: rgba(245, 243, 238, 0.94);

    color: #111;

    border-bottom:
        1px solid rgba(0,0,0,0.09);

    backdrop-filter: blur(12px);
}


.header.fixed {
    position: fixed;
}


.logo {
    justify-self: start;

    font-family: "Syne", sans-serif;

    font-size: 29px;

    font-weight: 700;

    letter-spacing: -0.07em;

    text-decoration: none;
}


.desktop-nav {
    display: flex;

    align-items: center;

    gap: 31px;
}


.desktop-nav a {
    font-size: 12px;

    font-weight: 500;

    text-decoration: none;
}


.desktop-nav a:hover {
    opacity: 0.55;
}


.header-actions {
    justify-self: end;

    display: flex;

    align-items: center;

    gap: 22px;
}


.header-button {
    padding: 0;

    border: 0;

    background: transparent;

    font-size: 12px;

    cursor: pointer;
}


.header-button:hover {
    opacity: 0.55;
}



/* =========================
   MENU BUTTON
========================= */

.menu-open {
    width: 26px;
    height: 20px;

    position: relative;

    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-open span {
    position: absolute;

    left: 0;

    width: 100%;
    height: 1px;

    background: #111;
}


.menu-open span:first-child {
    top: 6px;
}


.menu-open span:last-child {
    bottom: 6px;
}



/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;

    z-index: 500;

    inset: 0;

    padding: 23px;

    background: #f4f2ed;

    transform: translateX(100%);

    transition:
        transform 0.45s
        cubic-bezier(.76,0,.24,1);
}


.mobile-menu.open {
    transform: translateX(0);
}


.mobile-menu-top {
    display: flex;

    justify-content: space-between;

    align-items: center;
}


.mobile-logo {
    font-family: "Syne", sans-serif;

    font-size: 27px;

    font-weight: 700;

    letter-spacing: -0.06em;
}


.menu-close {
    border: 0;

    background: none;

    font-size: 35px;

    cursor: pointer;
}


.mobile-menu nav {
    margin-top: 80px;

    display: flex;

    flex-direction: column;
}


.mobile-menu nav a {
    padding: 17px 0;

    font-family: "Syne", sans-serif;

    font-size: 33px;

    font-weight: 500;

    letter-spacing: -0.05em;

    text-decoration: none;

    border-bottom:
        1px solid #d1cec7;
}



/* =========================
   SEARCH
========================= */

.search-overlay {
    position: fixed;

    z-index: 600;

    inset: 0;

    display: none;

    background: rgba(0,0,0,0.4);

    backdrop-filter: blur(5px);
}


.search-overlay.open {
    display: block;
}


.search-box {
    padding: 28px 35px 50px;

    background: #f4f2ed;
}


.search-head {
    display: flex;

    align-items: center;

    justify-content: space-between;

    font-family: "Syne", sans-serif;

    font-size: 25px;
}


.search-close {
    border: 0;

    background: none;

    font-size: 34px;

    cursor: pointer;
}


.search-box form {
    margin-top: 40px;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    border-bottom: 1px solid #111;
}


.search-box input {
    padding: 15px 0;

    width: 100%;

    border: 0;

    outline: 0;

    background: transparent;

    font-family: "Syne", sans-serif;

    font-size:
        clamp(28px,5vw,65px);

    letter-spacing: -0.05em;
}


.search-box form button {
    padding: 0 12px;

    border: 0;

    background: transparent;

    font-size: 25px;

    cursor: pointer;
}



/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    padding-top: 72px;

    display: grid;

    grid-template-columns:
        36% 64%;

    background: #ded8ce;
}



/* HERO LEFT */

.hero-info {
    position: relative;

    min-height:
        calc(100vh - 72px);

    padding:
        65px
        clamp(28px,4vw,70px)
        38px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: #e8e1d6;
}


.hero-info-inner {
    margin-top: auto;

    margin-bottom: auto;
}


.hero-small {
    margin-bottom: 24px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.hero h1 {
    font-family: "Syne", sans-serif;

    font-size:
        clamp(54px,6vw,102px);

    font-weight: 500;

    line-height: 0.87;

    letter-spacing: -0.075em;
}


.hero-description {
    max-width: 390px;

    margin-top: 30px;

    font-size: 14px;

    line-height: 1.65;

    color: #56514a;
}


.hero-buttons {
    margin-top: 35px;

    display: flex;

    gap: 8px;
}


.hero-button {
    min-width: 145px;

    padding: 15px 19px;

    display: inline-flex;

    justify-content: center;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.hero-button-dark {
    color: #fff;

    background: #111;

    border: 1px solid #111;
}


.hero-button-dark:hover {
    color: #111;

    background: transparent;
}


.hero-button-outline {
    border: 1px solid #111;
}


.hero-button-outline:hover {
    color: #fff;

    background: #111;
}


.hero-season {
    display: flex;

    justify-content: space-between;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}



/* =========================
   HERO GALLERY
========================= */

.hero-gallery {
    min-width: 0;

    height:
        calc(100vh - 72px);

    min-height: 650px;

    display: grid;

    grid-template-columns:
        1.15fr 1fr 1fr;

    gap: 2px;

    background: #111;
}


.hero-photo {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background: #ccc;

    text-decoration: none;
}


.hero-photo img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.7s ease;
}


.hero-photo:hover img {
    transform: scale(1.025);
}


.hero-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.37),
            transparent 38%
        );
}


.photo-label {
    position: absolute;

    z-index: 2;

    left: 17px;
    right: 17px;
    bottom: 17px;

    display: flex;

    justify-content: space-between;

    color: #fff;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}



/* =========================
   MARQUEE
========================= */

.marquee {
    overflow: hidden;

    padding: 18px 0;

    background: #111;

    color: #fff;
}


.marquee-track {
    width: max-content;

    display: flex;

    gap: 60px;

    animation:
        marqueeMove
        22s
        linear
        infinite;
}


.marquee span {
    font-family: "Syne", sans-serif;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;
}


@keyframes marqueeMove {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-35%);
    }

}



/* =========================
   GENERAL SECTIONS
========================= */

.intro,
.categories,
.products-section {
    padding:
        115px
        clamp(20px,4vw,65px);
}


.section-number {
    margin-bottom: 20px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: #77716a;
}



/* =========================
   INTRO
========================= */

.intro {
    background: #f4f2ed;
}


.intro-grid {
    display: grid;

    grid-template-columns:
        1.3fr
        0.7fr;

    align-items: end;

    gap: 90px;
}


.intro h2 {
    font-family: "Syne", sans-serif;

    font-size:
        clamp(52px,7vw,110px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.075em;
}


.intro-text {
    max-width: 430px;
}


.intro-text p {
    font-size: 16px;

    line-height: 1.7;

    color: #59544d;
}


.intro-text a {
    margin-top: 27px;

    display: inline-block;

    padding-bottom: 4px;

    font-size: 12px;

    text-decoration: none;

    border-bottom: 1px solid #111;
}



/* =========================
   SECTION HEADER
========================= */

.section-header {
    margin-bottom: 50px;

    display: flex;

    justify-content: space-between;

    align-items: end;
}


.section-header h2 {
    font-family: "Syne", sans-serif;

    font-size:
        clamp(45px,6vw,82px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -0.065em;
}


.section-header > a {
    padding-bottom: 4px;

    font-size: 11px;

    text-decoration: none;

    border-bottom: 1px solid #111;
}



/* =========================
   CATEGORIES
========================= */

.categories {
    background: #e4e0d8;
}


.category-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 7px;
}


.category-card {
    text-decoration: none;
}


.category-image {
    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #d4d0c8;
}


.category-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.category-card:hover img {
    transform: scale(1.025);
}


.category-bottom {
    padding: 14px 2px 0;

    display: flex;

    justify-content: space-between;

    font-size: 12px;

    font-weight: 500;
}



/* =========================
   PRODUCTS
========================= */

.products-section {
    background: #f4f2ed;
}


.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 8px;
}


.product > a {
    text-decoration: none;
}


.product-image {
    position: relative;

    aspect-ratio: 3 / 4;

    overflow: hidden;

    background: #dfdcd6;
}


.product-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


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


.tag {
    position: absolute;

    z-index: 2;

    top: 11px;
    left: 11px;

    padding: 6px 8px;

    background: #fff;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}


.product-details {
    padding-top: 13px;

    display: flex;

    justify-content: space-between;

    gap: 10px;
}


.product-details h3 {
    font-size: 11px;

    text-transform: uppercase;
}


.product-details p {
    margin-top: 4px;

    font-size: 10px;

    color: #77716b;
}


.product-details strong {
    font-size: 11px;

    white-space: nowrap;
}


.quick-add {
    width: 100%;

    margin-top: 11px;

    padding: 12px;

    border: 1px solid #111;

    background: transparent;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;
}


.quick-add:hover {
    color: #fff;

    background: #111;
}



/* =========================
   FOOTER
========================= */

.footer {
    padding:
        80px
        clamp(20px,4vw,65px)
        30px;

    color: #f3f1ec;

    background: #111;
}


.footer-logo {
    margin-bottom: 80px;

    font-family: "Syne", sans-serif;

    font-size:
        clamp(80px,15vw,220px);

    font-weight: 700;

    line-height: 0.7;

    letter-spacing: -0.09em;
}


.footer-columns {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 1.7fr;

    gap: 50px;
}


.footer-columns > div:not(.newsletter) {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-title {
    margin-bottom: 18px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 0.17em;

    color: #817e78;
}


.footer a {
    margin-bottom: 9px;

    font-size: 11px;

    text-decoration: none;
}


.newsletter > p:not(.footer-title) {
    max-width: 290px;

    font-size: 12px;

    line-height: 1.6;

    color: #96928a;
}


.newsletter form {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        1fr auto;

    border-bottom:
        1px solid #595650;
}


.newsletter input {
    padding: 13px 0;

    border: 0;

    outline: 0;

    color: #fff;

    background: transparent;
}


.newsletter button {
    padding: 0 10px;

    border: 0;

    color: #fff;

    background: transparent;

    cursor: pointer;
}


.footer-bottom {
    margin-top: 80px;

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid #292929;

    font-size: 9px;

    color: #706d67;
}



/* =========================
   CART
========================= */

.cart-overlay {
    position: fixed;

    z-index: 699;

    inset: 0;

    background:
        rgba(0,0,0,0.45);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.cart-overlay.open {
    opacity: 1;

    visibility: visible;
}


.cart {
    position: fixed;

    z-index: 700;

    top: 0;
    right: 0;

    width:
        min(460px,100%);

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: #f4f2ed;

    transform:
        translateX(100%);

    transition:
        transform
        0.4s
        cubic-bezier(.76,0,.24,1);
}


.cart.open {
    transform:
        translateX(0);
}


.cart-top {
    height: 72px;

    padding: 0 23px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid #d4d0c8;
}


.cart-top h2 {
    font-family:
        "Syne",
        sans-serif;

    font-size: 24px;

    font-weight: 500;
}


.cart-close {
    border: 0;

    background: none;

    font-size: 32px;

    cursor: pointer;
}


.cart-items {
    flex: 1;

    padding: 0 23px;

    overflow-y: auto;
}


.cart-item {
    padding: 19px 0;

    display: grid;

    grid-template-columns:
        85px
        1fr
        auto;

    gap: 14px;

    border-bottom:
        1px solid #d4d0c8;
}


.cart-item img {
    width: 85px;

    height: 110px;

    object-fit: cover;
}


.cart-name {
    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;
}


.cart-price {
    margin-top: 6px;

    font-size: 11px;
}


.quantity {
    margin-top: 14px;

    display: flex;

    align-items: center;

    gap: 10px;
}


.quantity button {
    width: 25px;

    height: 25px;

    border:
        1px solid #aaa59d;

    background: transparent;

    cursor: pointer;
}


.remove {
    margin-top: 12px;

    border: 0;

    background: transparent;

    font-size: 9px;

    text-decoration: underline;

    cursor: pointer;
}


.cart-empty {
    flex: 1;

    padding: 70px 25px;

    text-align: center;
}


.cart-empty p {
    margin-bottom: 20px;

    font-family:
        "Syne",
        sans-serif;

    font-size: 22px;
}


.cart-empty a {
    font-size: 11px;
}


.cart-footer {
    padding: 20px 23px 24px;

    border-top:
        1px solid #d4d0c8;
}


.cart-total {
    display: flex;

    justify-content: space-between;

    font-size: 13px;
}


.checkout {
    margin-top: 18px;

    padding: 16px;

    display: flex;

    justify-content: center;

    color: #fff;

    background: #111;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    text-decoration: none;
}



/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }


    .hero {
        grid-template-columns:
            34% 66%;
    }


    .hero-gallery {
        grid-template-columns:
            1fr 1fr;
    }


    .hero-gallery
    .hero-photo:last-child {
        display: none;
    }


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

}



/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {

    .header {
        height: 62px;

        padding:
            0 16px;

        grid-template-columns:
            1fr auto;
    }


    .desktop-nav,
    .search-open {
        display: none;
    }


    .logo {
        font-size: 24px;
    }


    .menu-open {
        display: block;
    }


    .header-actions {
        gap: 17px;
    }


    /* HERO */

    .hero {
        padding-top: 62px;

        display: block;

        min-height: auto;
    }


    .hero-info {
        min-height: auto;

        padding:
            65px
            19px
            40px;
    }


    .hero-info-inner {
        margin: 0;
    }


    .hero h1 {
        font-size: 58px;
    }


    .hero-description {
        max-width: 310px;
    }


    .hero-season {
        margin-top: 70px;
    }


    .hero-gallery {
        height: 70vh;

        min-height: 520px;

        display: flex;

        overflow-x: auto;

        scroll-snap-type:
            x mandatory;

        gap: 2px;
    }


    .hero-gallery::-webkit-scrollbar {
        display: none;
    }


    .hero-photo {
        min-width: 83vw;

        flex: 0 0 83vw;

        scroll-snap-align: center;
    }


    .hero-photo img {
        object-fit: cover;

        object-position: center;
    }


    .hero-gallery
    .hero-photo:last-child {
        display: block;
    }


    /* SECTIONS */

    .intro,
    .categories,
    .products-section {
        padding:
            75px
            15px;
    }


    .intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .intro h2 {
        font-size: 57px;
    }


    .intro-text p {
        font-size: 14px;
    }


    .section-header {
        margin-bottom: 35px;
    }


    .section-header h2 {
        font-size: 46px;
    }


    .category-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 7px;
    }


    .category-card:last-child {
        grid-column:
            span 2;
    }


    .category-card:last-child
    .category-image {
        aspect-ratio: 1.3 / 1;
    }


    .product-grid {
        grid-template-columns:
            repeat(2,1fr);

        gap: 30px 7px;
    }


    .product-details h3 {
        font-size: 9px;
    }


    .product-details p,
    .product-details strong {
        font-size: 9px;
    }


    /* FOOTER */

    .footer {
        padding:
            65px
            18px
            25px;
    }


    .footer-logo {
        margin-bottom: 60px;

        font-size: 85px;
    }


    .footer-columns {
        grid-template-columns:
            1fr 1fr;

        gap:
            40px
            20px;
    }


    .newsletter {
        grid-column:
            span 2;
    }


    .footer-bottom {
        gap: 18px;

        flex-direction: column;
    }


    .search-box {
        padding:
            22px
            18px
            40px;
    }


    .search-box input {
        font-size: 32px;
    }

}

/* ==================================================
   NOVA — NEW HOMEPAGE HERO
================================================== */

.hero-new {
    width: 100%;
    height: 100vh;
    min-height: 680px;

    padding-top: 72px;

    display: grid;
    grid-template-columns: 38% 62%;

    background: #f1eee8;
}


/* ==============================
   LEFT
============================== */

.hero-new-copy {
    min-width: 0;

    padding:
        clamp(55px, 7vh, 95px)
        clamp(30px, 4vw, 70px)
        35px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #f1eee8;
}


.hero-copy-content {
    margin-top: auto;
    margin-bottom: auto;
}


.hero-eyebrow {
    margin-bottom: 27px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


.hero-new h1 {
    margin: 0;

    max-width: 560px;

    font-family: "Syne", sans-serif;

    font-size: clamp(57px, 6.2vw, 104px);

    font-weight: 500;

    line-height: 0.87;

    letter-spacing: -0.075em;
}


.hero-text {
    max-width: 355px;

    margin-top: 31px;

    font-size: 13px;

    line-height: 1.65;

    color: #625e58;
}


/* BUTTONS */

.hero-links {
    margin-top: 34px;

    display: flex;
    align-items: center;

    gap: 25px;
}


.hero-main-btn {
    padding: 16px 25px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    color: #fff;
    background: #111;

    border: 1px solid #111;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-decoration: none;

    transition: 0.25s ease;
}


.hero-main-btn:hover {
    color: #111;
    background: transparent;
}


.hero-text-link {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 4px;

    color: #111;

    border-bottom: 1px solid #111;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.1em;

    text-decoration: none;
}


.hero-text-link span {
    font-size: 13px;
}


/* BOTTOM LEFT */

.hero-bottom {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;

    font-size: 8px;
    font-weight: 600;

    line-height: 1.5;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.hero-bottom span:last-child {
    text-align: right;
}


/* ==============================
   MAIN IMAGE
============================== */

.hero-new-image {
    position: relative;

    min-width: 0;

    height: calc(100vh - 72px);

    min-height: 608px;

    overflow: hidden;

    display: block;

    background: #d1cec7;

    color: #fff;

    text-decoration: none;
}


.hero-new-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    /* сдвигаем вертикальный кадр вниз,
       чтобы голова полностью появилась */
    object-position: center 20%;

    transition: transform 1s
        cubic-bezier(.2,.7,.2,1);
}


.hero-new-image:hover img {
    transform: scale(1.015);
}


/* very subtle image shade */

.hero-new-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.03) 45%,
            rgba(0,0,0,0.25) 100%
        );

    pointer-events: none;
}


/* IMAGE TEXT */

.hero-image-bottom {
    position: absolute;

    z-index: 2;

    left: 24px;
    right: 24px;
    bottom: 22px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .hero-new {
        grid-template-columns:
            42% 58%;
    }


    .hero-new h1 {
        font-size: clamp(
            52px,
            7vw,
            75px
        );
    }


    .hero-links {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .hero-new {
        height: auto;
        min-height: 0;

        padding-top: 62px;

        display: flex;
        flex-direction: column;
    }


    .hero-new-copy {
        min-height: 480px;

        padding:
            60px
            18px
            25px;
    }


    .hero-copy-content {
        margin: 0;
    }


    .hero-eyebrow {
        margin-bottom: 21px;
    }


    .hero-new h1 {
        max-width: 400px;

        font-size: clamp(
            56px,
            17vw,
            78px
        );

        line-height: 0.88;
    }


    .hero-text {
        max-width: 310px;

        margin-top: 25px;
    }


    .hero-links {
        margin-top: 28px;

        flex-direction: row;
        align-items: center;

        gap: 20px;
    }


    .hero-main-btn {
        padding: 14px 18px;
    }


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


    /* IMAGE */

    .hero-new-image {
        width: 100%;

        height: 78vh;
        min-height: 570px;
    }


    .hero-new-image img {
        object-position: 50% center;
    }


    .hero-image-bottom {
        left: 15px;
        right: 15px;
        bottom: 16px;
    }

}


/* SMALL MOBILE */

@media (max-width: 430px) {

    .hero-new h1 {
        font-size: 58px;
    }


    .hero-links {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .hero-new-image {
        height: 72vh;
        min-height: 520px;
    }

}

/* =========================================
   HERO IMAGE SLIDER
========================================= */

.hero-slider {
    position: relative;

    min-width: 0;

    height: calc(100vh - 72px);

    min-height: 608px;

    overflow: hidden;

    background: #111;
}


.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: translateX(3%);

    transition:
        opacity 0.75s ease,
        visibility 0.75s ease,
        transform 0.9s cubic-bezier(.22,.7,.2,1);
}


.hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


.hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center 20%;

    transform: scale(1.015);

    transition:
        transform 6s ease;
}


.hero-slide.active img {
    transform: scale(1);
}


.hero-slider-shade {
    position: absolute;

    z-index: 2;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02) 55%,
            rgba(0,0,0,0.30) 100%
        );
}


/* arrows */

.hero-slider-arrow {
    position: absolute;

    z-index: 5;

    top: 50%;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 50%;

    background: rgba(0,0,0,0.10);

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        background 0.25s ease;
}


.hero-slider:hover .hero-slider-arrow {
    opacity: 1;
}


.hero-slider-arrow:hover {
    background: rgba(0,0,0,0.35);
}


.hero-slider-prev {
    left: 22px;
}


.hero-slider-next {
    right: 22px;
}


/* bottom */

.hero-slider-bottom {
    position: absolute;

    z-index: 5;

    left: 25px;
    right: 25px;
    bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;
}


.hero-slider-pagination {
    display: flex;

    gap: 7px;
}


.hero-slider-dot {
    width: 42px;
    height: 15px;

    padding: 0;

    display: flex;
    align-items: center;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.hero-slider-dot span {
    width: 100%;
    height: 1px;

    background: rgba(255,255,255,0.38);

    transition: 0.25s ease;
}


.hero-slider-dot.active span {
    height: 2px;

    background: #fff;
}


.hero-slider-count {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 9px;

    letter-spacing: 0.12em;
}


.hero-slider-line {
    width: 24px;
    height: 1px;

    background: rgba(255,255,255,0.55);
}


/* MOBILE */

@media (max-width: 700px) {

    .hero-slider {
        height: 76vh;

        min-height: 560px;
    }


    .hero-slide img {
        object-position: center center;
    }


    .hero-slider-arrow {
        display: none;
    }


    .hero-slider-bottom {
        left: 15px;
        right: 15px;
        bottom: 16px;
    }

}

/* ========================================
   NOVA HERO SLIDER — CLEAN VERSION
======================================== */

.nova-hero-slider {
    position: relative;

    width: 100%;
    height: calc(100vh - 72px);
    min-height: 608px;

    overflow: hidden;

    background: #111;
}


.nova-hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}


.nova-hero-slide.is-active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


.nova-hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* чтобы не резало голову */
    object-position: center 20%;

    display: block;
}


/* затемнение снизу */

.nova-hero-slider::after {
    content: "";

    position: absolute;

    z-index: 3;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0,0,0,0.28) 100%
        );
}


/* ARROWS */

.nova-slider-arrow {
    position: absolute;

    z-index: 10;

    top: 50%;

    width: 48px;
    height: 48px;

    transform: translateY(-50%);

    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 50%;

    background: rgba(0,0,0,0.15);

    color: white;

    font-size: 17px;

    cursor: pointer;

    transition: 0.25s ease;
}


.nova-slider-arrow:hover {
    background: rgba(0,0,0,0.45);
}


.nova-slider-prev {
    left: 22px;
}


.nova-slider-next {
    right: 22px;
}


/* BOTTOM */

.nova-slider-bottom {
    position: absolute;

    z-index: 10;

    left: 25px;
    right: 25px;
    bottom: 23px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: white;
}


/* DOTS */

.nova-slider-dots {
    display: flex;

    gap: 8px;
}


.nova-slider-dot {
    width: 44px;
    height: 12px;

    padding: 0;

    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);

    background: transparent;

    cursor: pointer;
}


.nova-slider-dot.is-active {
    border-bottom: 2px solid white;
}


/* NUMBER */

.nova-slider-number {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 9px;

    letter-spacing: 0.12em;
}


.nova-slider-number-line {
    width: 25px;
    height: 1px;

    background: rgba(255,255,255,0.55);
}


/* MOBILE */

@media (max-width: 700px) {

    .nova-hero-slider {
        height: 75vh;
        min-height: 550px;
    }


    .nova-hero-slide img {
        object-position: center center;
    }


    .nova-slider-arrow {
        width: 40px;
        height: 40px;
    }

}

/* ==================================================
   EDITORIAL SECTION
================================================== */

.editorial-section {
    padding: 8px;

    background: #f4f2ed;
}


.editorial-grid {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 8px;

    height: 82vh;
    min-height: 650px;
}


.editorial-card {
    position: relative;

    overflow: hidden;

    display: block;

    color: #fff;

    background: #111;

    text-decoration: none;
}


.editorial-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 22%;

    transition:
        transform 0.8s
        cubic-bezier(.2,.7,.2,1);
}


.editorial-card:hover img {
    transform: scale(1.02);
}


.editorial-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.02) 45%,
            rgba(0,0,0,0.48) 100%
        );

    pointer-events: none;
}


.editorial-overlay {
    position: absolute;

    z-index: 2;

    left: 30px;
    right: 30px;
    bottom: 30px;
}


.editorial-overlay p {
    margin-bottom: 13px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


.editorial-overlay h2 {
    margin: 0 0 22px;

    font-family: "Syne", sans-serif;

    font-size:
        clamp(42px,5vw,78px);

    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.065em;
}


.editorial-overlay span {
    padding-bottom: 4px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.12em;

    border-bottom:
        1px solid rgba(255,255,255,0.8);

    text-transform: uppercase;
}



/* ==================================================
   CAMPAIGN BANNER
================================================== */

.campaign-banner {
    position: relative;

    width: 100%;
    height: 88vh;
    min-height: 650px;

    overflow: hidden;

    background: #111;
}


.campaign-banner img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center 25%;
}


.campaign-banner::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.52) 0%,
            rgba(0,0,0,0.15) 45%,
            rgba(0,0,0,0.03) 75%
        );
}


.campaign-banner-content {
    position: absolute;

    z-index: 2;

    left: clamp(25px,5vw,80px);
    bottom: clamp(35px,8vh,90px);

    color: #fff;
}


.campaign-banner-content p {
    margin-bottom: 18px;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.campaign-banner-content h2 {
    margin: 0 0 28px;

    font-family: "Syne", sans-serif;

    font-size:
        clamp(55px,8vw,125px);

    font-weight: 500;

    line-height: 0.86;

    letter-spacing: -0.075em;
}


.campaign-banner-content a {
    display: inline-block;

    padding: 15px 21px;

    color: #111;

    background: #fff;

    border: 1px solid #fff;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-decoration: none;

    transition: 0.25s ease;
}


.campaign-banner-content a:hover {
    color: #fff;

    background: transparent;
}



/* ==================================================
   EDITORIAL MOBILE
================================================== */

@media (max-width: 700px) {

    .editorial-section {
        padding: 5px;
    }


    .editorial-grid {
        height: auto;
        min-height: 0;

        grid-template-columns: 1fr;

        gap: 5px;
    }


    .editorial-card {
        height: 72vh;
        min-height: 520px;
    }


    .editorial-card img {
        object-position: center center;
    }


    .editorial-overlay {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }


    .editorial-overlay h2 {
        font-size: 50px;
    }


    .campaign-banner {
        height: 75vh;
        min-height: 560px;
    }


    .campaign-banner img {
        object-position: center center;
    }


    .campaign-banner-content {
        left: 18px;
        right: 18px;
        bottom: 30px;
    }


    .campaign-banner-content h2 {
        font-size: 58px;
    }

}

/* ==========================================================
   NOVA PRODUCT PAGE
========================================================== */

.product-page {
    margin: 0;
    background: #f4f2ed;
    color: #111;
    font-family: "Inter", sans-serif;
}

.product-page * {
    box-sizing: border-box;
}


/* HEADER */

.product-header {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 72px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 32px;

    background: rgba(244,242,237,.96);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.product-logo {
    font-family: "Syne", sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.07em;

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

.product-nav {
    display: flex;
    gap: 34px;
}

.product-nav a,
.product-header-actions a,
.product-header-actions button {
    color: #111;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;
}

.product-header-actions {
    justify-self: end;

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

.product-header-actions button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}


/* LAYOUT */

.nova-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(380px, .72fr);

    align-items: start;
}


/* GALLERY */

.nova-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2px;

    background: #ddd;
}

.nova-product-main-image,
.nova-product-second-image {
    position: relative;

    min-height: calc(100vh - 72px);

    background: #ebe8e1;

    overflow: hidden;
}

.nova-product-main-image img,
.nova-product-second-image img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: contain;

    padding: 45px;

    display: block;
}

.nova-product-second-image {
    background: #e6e2da;
}

.nova-product-second-image img {
    transform: scale(.92);
}

.nova-product-tag {
    position: absolute;
    z-index: 2;

    top: 20px;
    left: 20px;

    padding: 6px 8px;

    background: #111;
    color: #fff;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .12em;
}


/* PRODUCT INFO */

.nova-product-info {
    position: sticky;
    top: 72px;

    min-height: calc(100vh - 72px);

    background: #f4f2ed;
}

.nova-product-info-inner {
    padding: 55px 42px 35px;
}

.nova-product-breadcrumb {
    display: flex;
    gap: 8px;

    margin-bottom: 55px;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.nova-product-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.nova-product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;
}

.nova-product-title-row h1 {
    margin: 0;

    max-width: 330px;

    font-family: "Syne", sans-serif;

    font-size: clamp(34px, 3.1vw, 54px);
    line-height: .95;

    font-weight: 500;
    letter-spacing: -.065em;
}

.nova-product-price {
    flex-shrink: 0;

    padding-top: 5px;

    font-size: 14px;
    font-weight: 600;
}

.nova-product-colour {
    margin: 16px 0 55px;

    color: #777;

    font-size: 11px;
}


/* SIZE */

.nova-size-section {
    margin-bottom: 18px;
}

.nova-size-heading {
    display: flex;
    justify-content: space-between;

    margin-bottom: 12px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
}

.nova-size-heading button {
    padding: 0;

    border: 0;
    border-bottom: 1px solid #111;

    background: transparent;

    font: inherit;

    cursor: pointer;
}

.nova-sizes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.nova-sizes button {
    height: 54px;

    border: 1px solid #c7c4bd;
    border-right: 0;

    background: transparent;

    cursor: pointer;

    font-size: 11px;

    transition: .2s;
}

.nova-sizes button:last-child {
    border-right: 1px solid #c7c4bd;
}

.nova-sizes button:hover {
    background: #e7e3dc;
}

.nova-sizes button.selected {
    background: #111;
    border-color: #111;
    color: #fff;
}

.nova-size-error {
    display: none;

    margin: 8px 0 0;

    font-size: 10px;
}

.nova-size-error.show {
    display: block;
}


/* ADD TO BAG */

.nova-add-bag {
    width: 100%;
    height: 58px;

    margin-top: 8px;

    border: 1px solid #111;

    background: #111;
    color: #fff;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .13em;

    cursor: pointer;

    transition: .25s;
}

.nova-add-bag:hover {
    background: transparent;
    color: #111;
}


/* DESCRIPTION */

.nova-product-description {
    margin: 34px 0;

    max-width: 430px;

    font-size: 12px;
    line-height: 1.7;

    color: #484848;
}


/* ACCORDION */

.nova-product-accordions {
    border-top: 1px solid #ccc8c0;
}

.nova-product-accordion {
    border-bottom: 1px solid #ccc8c0;
}

.nova-accordion-button {
    width: 100%;

    padding: 19px 0;

    display: flex;
    justify-content: space-between;

    border: 0;

    background: transparent;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;

    cursor: pointer;
}

.nova-accordion-content {
    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}

.nova-accordion-content p {
    margin: 0;
    padding: 0 25px 20px 0;

    color: #666;

    font-size: 11px;
    line-height: 1.7;
}

.nova-product-code {
    margin-top: 40px;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .16em;
}


/* ==========================================================
   PRODUCT CART
========================================================== */

.nova-product-cart-overlay {
    position: fixed;
    z-index: 499;

    inset: 0;

    background: rgba(0,0,0,.35);

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.nova-product-cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nova-product-cart {
    position: fixed;

    z-index: 500;

    top: 0;
    right: 0;

    width: min(460px, 100%);
    height: 100vh;

    padding: 27px;

    display: flex;
    flex-direction: column;

    background: #f4f2ed;

    transform: translateX(100%);

    transition:
        transform .4s
        cubic-bezier(.2,.7,.2,1);
}

.nova-product-cart.open {
    transform: translateX(0);
}

.cart-is-open {
    overflow: hidden;
}

.nova-product-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #ccc8c0;
}

.nova-product-cart-head h2 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: 31px;
    font-weight: 500;

    letter-spacing: -.05em;
}

.nova-product-cart-head button {
    border: 0;
    background: transparent;

    font-size: 28px;

    cursor: pointer;
}

.nova-product-cart-items {
    flex: 1;

    overflow-y: auto;
}

.nova-product-cart-empty {
    padding-top: 40px;

    font-size: 12px;
}

.nova-cart-item {
    display: grid;
    grid-template-columns: 105px 1fr;

    gap: 17px;

    padding: 20px 0;

    border-bottom: 1px solid #d0cdc5;
}

.nova-cart-image {
    height: 130px;

    background: #e7e3dc;
}

.nova-cart-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.nova-cart-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nova-cart-info h3 {
    margin: 0 0 5px;

    font-size: 12px;
    font-weight: 600;
}

.nova-cart-info p {
    margin: 0 0 8px;

    color: #777;

    font-size: 10px;
}

.nova-cart-info strong {
    font-size: 11px;
}

.nova-cart-controls {
    display: flex;
    align-items: center;

    gap: 10px;
}

.nova-cart-controls button {
    border: 0;
    background: transparent;

    cursor: pointer;
}

.nova-cart-remove {
    margin-left: auto;

    text-decoration: underline;

    font-size: 9px;
}

.nova-product-cart-bottom {
    padding-top: 20px;

    border-top: 1px solid #bbb7ae;
}

.nova-product-cart-total {
    display: flex;
    justify-content: space-between;

    margin-bottom: 18px;

    font-size: 12px;
}

.nova-product-checkout {
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .13em;
}


/* ==========================================================
   SIZE MODAL
========================================================== */

.nova-size-modal {
    position: fixed;
    z-index: 600;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.4);

    opacity: 0;
    visibility: hidden;

    transition: .25s;
}

.nova-size-modal.open {
    opacity: 1;
    visibility: visible;
}

.nova-size-modal-box {
    width: min(540px, 100%);

    padding: 30px;

    background: #f4f2ed;
}

.nova-size-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 30px;
}

.nova-size-modal-head h2 {
    margin: 0;

    font-family: "Syne", sans-serif;
    font-size: 36px;
    font-weight: 500;

    letter-spacing: -.05em;
}

.nova-size-modal-head button {
    border: 0;
    background: transparent;

    font-size: 27px;

    cursor: pointer;
}

.nova-size-modal table {
    width: 100%;

    border-collapse: collapse;

    font-size: 11px;
}

.nova-size-modal th,
.nova-size-modal td {
    padding: 15px 5px;

    text-align: left;

    border-bottom: 1px solid #ccc8c0;
}


/* ==========================================================
   MOBILE PRODUCT
========================================================== */

@media (max-width: 850px) {

    .product-header {
        height: 62px;

        grid-template-columns: 1fr auto;

        padding: 0 16px;
    }

    .product-logo {
        font-size: 26px;
    }

    .product-nav {
        display: none;
    }

    .product-header-actions {
        gap: 16px;
    }

    .product-header-actions > a {
        display: none;
    }

    .nova-product-layout {
        display: block;
    }

    .nova-product-gallery {
        grid-template-columns: 1fr;
    }

    .nova-product-main-image {
        min-height: 72vh;
    }

    .nova-product-second-image {
        min-height: 62vh;
    }

    .nova-product-main-image img,
    .nova-product-second-image img {
        padding: 25px;
    }

    .nova-product-info {
        position: static;

        min-height: 0;
    }

    .nova-product-info-inner {
        padding: 35px 18px 50px;
    }

    .nova-product-breadcrumb {
        margin-bottom: 35px;
    }

    .nova-product-title-row h1 {
        font-size: 39px;
    }

    .nova-product-colour {
        margin-bottom: 40px;
    }

}

/* ==========================================================
   NOVA PRODUCT — NEW GALLERY
========================================================== */

.product-page .nova-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(390px, .7fr);
    align-items: start;
}


/* GALLERY */

.product-page .nova-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2px;

    background: #d8d5ce;
}


.product-page .nova-gallery-item {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #ebe8e1;

    cursor: zoom-in;
}


.product-page .nova-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s
        cubic-bezier(.2,.7,.2,1);
}


.product-page .nova-gallery-item:hover img {
    transform: scale(1.015);
}


/* PRODUCT-ONLY IMAGES */

.product-page .nova-gallery-item:first-child img {
    object-fit: contain;

    padding: 35px;
}


/* TAG */

.product-page .nova-product-tag {
    position: absolute;

    z-index: 3;

    top: 18px;
    left: 18px;

    padding: 7px 9px;

    background: #111;
    color: #fff;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .12em;
}


/* RIGHT SIDE */

.product-page .nova-product-info {
    position: sticky;

    top: 72px;

    min-height: calc(100vh - 72px);

    background: #f4f2ed;
}


/* ==========================================================
   LIGHTBOX
========================================================== */

.nova-lightbox {
    position: fixed;

    z-index: 1000;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 100px;

    background: rgba(20,20,20,.94);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.nova-lightbox.open {
    opacity: 1;
    visibility: visible;
}


.lightbox-is-open {
    overflow: hidden;
}


.nova-lightbox-image {
    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;
}


.nova-lightbox-close {
    position: absolute;

    z-index: 3;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: 0;

    background: transparent;
    color: #fff;

    font-size: 35px;

    cursor: pointer;
}


.nova-lightbox-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

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

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

    font-size: 20px;

    cursor: pointer;

    transition: .2s;
}


.nova-lightbox-arrow:hover {
    background: #fff;
    color: #111;
}


.nova-lightbox-prev {
    left: 25px;
}


.nova-lightbox-next {
    right: 25px;
}


/* ==========================================================
   PRODUCT GALLERY MOBILE
========================================================== */

@media (max-width: 850px) {

    .product-page .nova-product-layout {
        display: block;
    }


    .product-page .nova-product-gallery {
        grid-template-columns: 1fr 1fr;
    }


    .product-page .nova-gallery-item {
        aspect-ratio: 4 / 5;
    }


    /*
    First photo is large on mobile
    */

    .product-page .nova-gallery-item:first-child {
        grid-column: 1 / -1;

        aspect-ratio: 4 / 5;
    }


    .product-page .nova-gallery-item:first-child img {
        padding: 25px;
    }


    .product-page .nova-product-info {
        position: static;

        min-height: auto;
    }


    .nova-lightbox {
        padding: 65px 10px 20px;
    }


    .nova-lightbox-image {
        max-width: 100%;
        max-height: 82vh;
    }


    .nova-lightbox-arrow {
        width: 42px;
        height: 42px;

        background: rgba(0,0,0,.35);
    }


    .nova-lightbox-prev {
        left: 8px;
    }


    .nova-lightbox-next {
        right: 8px;
    }

}


@media (max-width: 520px) {

    .product-page .nova-product-gallery {
        gap: 1px;
    }


    .product-page .nova-gallery-item:not(:first-child) {
        aspect-ratio: 3 / 4;
    }

}

/* ==========================================================
   FIX PRODUCT GALLERY — SHOW FULL PHOTOS
========================================================== */

.product-page .nova-gallery-item {
    aspect-ratio: auto;
    background: #e7e3db;
}

.product-page .nova-gallery-item img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

/* Первое фото товара */
.product-page .nova-gallery-item:first-child {
    aspect-ratio: auto;
}

.product-page .nova-gallery-item:first-child img {
    width: 100%;
    height: auto;
    padding: 0;
    object-fit: contain;
}


/* MOBILE */

@media (max-width: 850px) {

    .product-page .nova-gallery-item,
    .product-page .nova-gallery-item:first-child,
    .product-page .nova-gallery-item:not(:first-child) {
        aspect-ratio: auto;
    }

    .product-page .nova-gallery-item img,
    .product-page .nova-gallery-item:first-child img {
        width: 100%;
        height: auto;
        padding: 0;
        object-fit: contain;
    }
}

/* ==========================================================
   NOVA PRODUCT — MASONRY GALLERY FIX
========================================================== */

.product-page .nova-product-gallery {
    display: block !important;
    column-count: 2;
    column-gap: 2px;

    background: #d8d5ce;
}


/* EACH IMAGE */

.product-page .nova-gallery-item {
    position: relative;

    display: inline-block;
    width: 100%;

    margin: 0 0 2px;

    break-inside: avoid;
    -webkit-column-break-inside: avoid;

    aspect-ratio: auto !important;

    overflow: hidden;

    background: #e7e3db;

    vertical-align: top;

    cursor: zoom-in;
}


/* IMAGE */

.product-page .nova-gallery-item img {
    display: block;

    width: 100% !important;
    height: auto !important;

    max-width: 100%;

    padding: 0 !important;

    object-fit: contain !important;

    transform: none;
}


/* SMALL HOVER EFFECT */

.product-page .nova-gallery-item:hover img {
    transform: scale(1.006);
}


/* FIRST PRODUCT IMAGE */

.product-page .nova-gallery-item:first-child {
    aspect-ratio: auto !important;
}


.product-page .nova-gallery-item:first-child img {
    width: 100% !important;
    height: auto !important;

    padding: 0 !important;

    object-fit: contain !important;
}


/* PRODUCT TAG */

.product-page .nova-product-tag {
    position: absolute;

    z-index: 5;

    top: 18px;
    left: 18px;

    padding: 7px 10px;

    background: #111;
    color: #fff;

    font-size: 9px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: .12em;
}


/* ==========================================================
   RIGHT PRODUCT PANEL
========================================================== */

.product-page .nova-product-info {
    position: sticky;

    top: 72px;

    align-self: start;

    min-height: calc(100vh - 72px);

    background: #f4f2ed;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 850px) {

    .product-page .nova-product-layout {
        display: block;
    }


    .product-page .nova-product-gallery {
        column-count: 1;
        column-gap: 0;
    }


    .product-page .nova-gallery-item {
        width: 100%;

        margin-bottom: 1px;

        aspect-ratio: auto !important;
    }


    .product-page .nova-gallery-item img,
    .product-page .nova-gallery-item:first-child img {
        width: 100% !important;
        height: auto !important;

        padding: 0 !important;

        object-fit: contain !important;
    }


    .product-page .nova-product-info {
        position: static;

        min-height: auto;
    }

}

/* ==========================================================
   NOVA PRODUCT — FINAL MASONRY
========================================================== */

.product-page .nova-product-gallery {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    column-count: initial !important;

    gap: 2px;

    align-items: start;

    background: #d8d5ce;
}


/* INDEPENDENT COLUMNS */

.product-page .nova-gallery-column {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}


/* IMAGE CARD */

.product-page .nova-gallery-item {
    position: relative;

    display: block;

    width: 100%;

    margin: 0 !important;

    aspect-ratio: auto !important;

    overflow: hidden;

    background: #e7e3db;

    cursor: zoom-in;
}


/* IMAGE */

.product-page .nova-gallery-item img {
    display: block;

    width: 100% !important;
    height: auto !important;

    padding: 0 !important;

    object-fit: contain !important;

    transition: transform .35s ease;
}


.product-page .nova-gallery-item:hover img {
    transform: scale(1.006);
}


/* TAG */

.product-page .nova-product-tag {
    position: absolute;

    z-index: 5;

    top: 18px;
    left: 18px;

    padding: 7px 10px;

    background: #111;
    color: #fff;

    font-size: 9px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: .12em;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 850px) {

    .product-page .nova-product-gallery {
        display: block !important;
    }


    .product-page .nova-gallery-column {
        display: contents;
    }


    .product-page .nova-gallery-item {
        width: 100%;

        margin-bottom: 1px !important;
    }


    .product-page .nova-gallery-item img {
        width: 100% !important;
        height: auto !important;

        object-fit: contain !important;
    }

}

/* ==========================================================
   NOVA PRODUCT — MOBILE GALLERY FINAL
========================================================== */

@media (max-width: 850px) {

    .product-page .nova-product-gallery.nova-gallery-mobile {
        display: flex !important;
        flex-direction: column;

        gap: 1px;

        column-count: initial !important;
    }


    .product-page
    .nova-product-gallery.nova-gallery-mobile
    .nova-gallery-column {

        display: contents;
    }


    .product-page
    .nova-product-gallery.nova-gallery-mobile
    .nova-gallery-item {

        display: block;

        width: 100%;

        margin: 0 !important;

        aspect-ratio: auto !important;
    }


    .product-page
    .nova-product-gallery.nova-gallery-mobile
    .nova-gallery-item img {

        display: block;

        width: 100% !important;
        height: auto !important;

        padding: 0 !important;

        object-fit: contain !important;
    }

}

/* ===== NOVA SHOP — PRODUCT IMAGE FIX ===== */

.shop-product-image,
.product-card-image,
.product-image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #d8d1c7;
}

.shop-product-image img,
.product-card-image img,
.product-image img,
.product-card img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}
@media (min-width: 769px) {

    .shop-product-image,
    .product-card-image,
    .product-image {
        aspect-ratio: 1 / 1.08 !important;
        max-height: 520px !important;
    }

    .shop-product-image img,
    .product-card-image img,
    .product-image img,
    .product-card img {
        object-fit: contain !important;
        max-height: 520px !important;
    }
}

/* ===== NOVA — REMOVE EMPTY IMAGE SIDES ===== */

.product-card-image,
.shop-product-image,
.product-image {
    width: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
}

.product-card-image img,
.shop-product-image img,
.product-image img,
.product-card img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* =========================================================
   EDITORIAL MEN / WOMEN — EQUAL SIZE
========================================================= */

.editorial-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.editorial-card,
.editorial-card-large {
    width: 100% !important;
    height: 650px !important;
    min-height: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.editorial-card img,
.editorial-card-large img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .editorial-grid {
        grid-template-columns: 1fr !important;
    }

    .editorial-card,
    .editorial-card-large {
        height: 560px !important;
    }
}

/* =========================================================
   NEW ARRIVALS — EQUAL PRODUCT IMAGES
========================================================= */

.products-section .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.products-section .product {
    width: 100% !important;
    min-width: 0 !important;
}

.products-section .product-image {
    width: 100% !important;
    aspect-ratio: 1 / 1.08 !important;
    overflow: hidden !important;
    position: relative !important;
    background: transparent !important;
}

.products-section .product-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;

    object-fit: cover !important;
    object-position: center center !important;

    padding: 0 !important;
    margin: 0 !important;
}

/* PRODUCT INFO */

.products-section .product-details {
    min-height: 48px !important;
}

/* MOBILE */

@media (max-width: 900px) {

    .products-section .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 520px) {

    .products-section .product-grid {
        grid-template-columns: 1fr !important;
    }

    .products-section .product-image {
        aspect-ratio: 1 / 1.08 !important;
    }
}

/* =========================================================
   SHOP BY CATEGORY — PRODUCT IMAGE FIX
========================================================= */

.categories .category-image {
    width: 100% !important;
    aspect-ratio: 1 / 1.32 !important;
    overflow: hidden !important;
    background: #d8d0c5 !important;
}

.categories .category-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;

    /* уменьшаем одежду внутри кадра */
    transform: scale(0.88) !important;
}

/* заполняем появившиеся края тем же изображением */
.categories .category-image {
    position: relative !important;
}

@media (max-width: 768px) {

    .categories .category-image {
        aspect-ratio: 1 / 1.2 !important;
    }

    .categories .category-image img {
        transform: scale(0.9) !important;
    }
}

/* =========================================================
   SHOP BY CATEGORY — REMOVE FRAME
========================================================= */

.categories .category-image {
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.categories .category-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;

    object-fit: cover !important;
    object-position: center !important;

    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

/* =========================================================
   NOVA SHOP — FINAL SEARCH + CART FIX
========================================================= */


/* =========================
   SEARCH PANEL
========================= */

.nova-shop-search {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 3000;

    background: #f2efe9;
    color: #111;

    border-bottom: 1px solid rgba(0, 0, 0, 0.15);

    transform: translateY(-105%);
    transition: transform 0.35s ease;
}

.nova-shop-search.open {
    transform: translateY(0);
}

.nova-shop-search-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 25px 32px 32px;
}

.nova-shop-search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.nova-shop-search-top button {
    border: 0;
    background: transparent;

    color: #111;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

.nova-shop-search-field {
    display: flex;
    align-items: center;

    border-bottom: 1px solid #111;
}

.nova-shop-search-field input {
    flex: 1;

    min-width: 0;

    padding: 10px 0 18px;

    border: 0;
    outline: 0;
    background: transparent;

    color: #111;

    font-family: Arial, sans-serif;
    font-size: clamp(24px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -1.5px;
}

.nova-shop-search-field input::placeholder {
    color: rgba(0, 0, 0, 0.28);
}

.nova-shop-search-field button {
    margin-left: 20px;

    border: 0;
    background: transparent;

    color: #111;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;
}


/* =========================
   SEARCH RESULT STATUS
========================= */

.nova-search-status {
    padding: 16px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    background: #111;
    color: #f2efe9;

    font-family: Arial, sans-serif;
    font-size: 12px;
}

.nova-search-status[hidden] {
    display: none !important;
}

.nova-search-status button {
    border: 0;
    background: transparent;

    color: #f2efe9;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;
}


/* =========================
   EMPTY SEARCH
========================= */

.shop-empty {
    grid-column: 1 / -1;

    min-height: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;

    text-align: center;
}

.shop-empty p {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 20px;
}

.shop-empty button {
    padding: 14px 24px;

    border: 1px solid #111;
    background: transparent;

    color: #111;

    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.2s;
}

.shop-empty button:hover {
    background: #111;
    color: #f2efe9;
}


/* =========================
   CART — NEW HTML CLASSES
========================= */

.nova-cart-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: min(440px, 100%);
    height: 100vh;

    z-index: 2999;

    display: flex;
    flex-direction: column;

    background: #f2efe9;
    color: #111;

    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.nova-cart-panel.open {
    transform: translateX(0);
}

.nova-cart-header {
    min-height: 75px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.nova-cart-header h2 {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.nova-cart-header button {
    border: 0;
    background: transparent;

    color: #111;

    font-size: 30px;

    cursor: pointer;
}

.nova-cart-item-size {
    margin-top: 5px;

    font-family: Arial, sans-serif;
    font-size: 11px;

    opacity: 0.55;
}


/* =========================
   PAGE LOCK
========================= */

body.cart-is-open,
body.search-is-open {
    overflow: hidden;
}


/* =========================
   SHOP HERO COMPATIBILITY
========================= */

.nova-shop-hero {
    padding: 74px 32px 54px;

    background: #f2efe9;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.nova-shop-number {
    margin: 0 0 18px;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;

    opacity: 0.6;
}

.nova-shop-hero h1 {
    margin: 0;

    font-family: Arial, sans-serif;
    font-size: clamp(54px, 7vw, 110px);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -6px;
}

.nova-shop-description {
    max-width: 420px;

    margin: 28px 0 0;

    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;

    opacity: 0.65;
}


/* =========================
   SHOP TOOLBAR COMPATIBILITY
========================= */

.nova-shop-toolbar {
    min-height: 78px;

    padding: 0 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #f2efe9;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.nova-shop-categories {
    display: flex;
    align-items: center;
    gap: 27px;

    overflow-x: auto;

    scrollbar-width: none;
}

.nova-shop-categories::-webkit-scrollbar {
    display: none;
}

.nova-shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 25px;

    white-space: nowrap;
}

.nova-shop-toolbar-right #productCount {
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;

    opacity: 0.55;
}

.nova-shop-toolbar-right select {
    border: 0;
    outline: 0;

    background: transparent;
    color: #111;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;

    cursor: pointer;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .nova-shop-search-inner {
        padding: 20px 18px 25px;
    }

    .nova-shop-search-top {
        margin-bottom: 20px;
    }

    .nova-shop-search-field input {
        font-size: 27px;
        letter-spacing: -1px;
    }

    .nova-search-status {
        padding: 14px 18px;
        align-items: flex-start;
    }

    .nova-shop-hero {
        padding: 48px 18px 35px;
    }

    .nova-shop-hero h1 {
        font-size: 58px;
        letter-spacing: -4px;
    }

    .nova-shop-description {
        margin-top: 24px;
        font-size: 14px;
    }

    .nova-shop-toolbar {
        display: block;
        padding: 0 18px;
    }

    .nova-shop-categories {
        gap: 24px;
    }

    .nova-shop-toolbar-right {
        min-height: 55px;

        justify-content: space-between;

        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

}


@media (max-width: 520px) {

    .nova-shop-search-field input {
        font-size: 22px;
    }

    .nova-shop-search-field button {
        margin-left: 10px;
    }

    .nova-search-status {
        font-size: 10px;
    }

}

/* ===== NOVA CAMPAIGN — FINAL DESKTOP ===== */

@media (min-width: 769px) {

    .campaign-banner {
        position: relative !important;
        height: 720px !important;
        overflow: hidden !important;
        background: #111 !important;
    }

    .campaign-banner > img {
        width: 100% !important;
        height: 100% !important;

        object-fit: contain !important;
        object-position: center center !important;

        display: block !important;
        background: #111 !important;
    }

    .campaign-banner-content {
        position: absolute !important;
        left: 5% !important;
        bottom: 8% !important;
        z-index: 2 !important;
    }
}

/* =========================================
   MOBILE SEARCH BUTTON
========================================= */

.mobile-search-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;
    margin: 0 0 18px;

    border: 0;
    border-top: 1px solid rgba(0,0,0,.18);
    border-bottom: 1px solid rgba(0,0,0,.18);

    background: transparent;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #111;

    cursor: pointer;
    text-align: left;
}

.mobile-search-button span {
    font-size: 18px;
}

@media (min-width: 769px) {
    .mobile-search-button {
        display: none;
    }
}

/* =========================================================
   NOVA — FINAL MOBILE HEADER
   Search always visible in header
========================================================= */

@media (max-width: 760px) {

    .header {
        height: 62px !important;
        padding: 0 16px !important;

        display: grid !important;
        grid-template-columns: 1fr auto !important;

        align-items: center !important;
    }

    /* Hide only desktop navigation */
    .desktop-nav {
        display: none !important;
    }

    /* SEARCH ALWAYS VISIBLE */
    .header .search-open {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;

        position: static !important;

        width: auto !important;
        height: auto !important;

        padding: 0 !important;

        border: 0 !important;
        background: transparent !important;

        color: #111 !important;

        font-size: 12px !important;
        font-weight: 500 !important;

        cursor: pointer !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center !important;

        gap: 16px !important;

        justify-self: end !important;
    }

    /* BAG */
    .header .cart-open {
        display: inline-block !important;
    }

    /* BURGER */
    .header .menu-open {
        display: block !important;
        flex-shrink: 0 !important;
    }

    /* If old Search exists inside burger menu — hide it */
    .mobile-menu .mobile-search-button {
        display: none !important;
    }
}


/* Extra-small phones */

@media (max-width: 390px) {

    .header {
        padding: 0 12px !important;
    }

    .header-actions {
        gap: 11px !important;
    }

    .header .search-open,
    .header .cart-open {
        font-size: 11px !important;
    }

    .logo {
        font-size: 22px !important;
    }

}