
.seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    background: #ffffff;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

.site {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================
   TOP NAVIGATION
========================================= */

.top-nav {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 0 42px;
    z-index: 999;
    pointer-events: none;
}

.shop-link {
    position: fixed;
    top: 38px;
    left: calc(50% - 95px);
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    pointer-events: auto;
    transition:
        left 900ms cubic-bezier(.77, 0, .18, 1),
        color 350ms ease,
        opacity 250ms ease,
        transform 250ms ease,
        letter-spacing 250ms ease;
}

.shop-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 250ms ease;
}

.shop-link:hover {
    opacity: .7;
    transform: translateY(-2px);
    letter-spacing: 0.2em;
}

.shop-link:hover::after {
    width: 32px;
}

.cart-link {
    position: fixed;
    top: 38px;
    left: calc(50% + 55px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transform: translateY(1px);
    transition:
        left 900ms cubic-bezier(.77, 0, .18, 1),
        opacity 250ms ease,
        transform 250ms ease;
}

.cart-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 250ms ease;
}

.cart-link:hover {
    opacity: .8;
    transform: translateY(-1px);
}

.cart-link:hover::after {
    width: 22px;
}

.cart-link svg {
    width: 18px;
    height: 18px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ff0000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    display: grid;
    place-items: center;
}

.site.left-open .shop-link {
    left: calc(75% - 95px);
    color: #000000;
}

.site.left-open .cart-link {
    left: calc(75% + 55px);
    color: #ffffff;
}

.site.right-open .shop-link {
    left: calc(25% - 88px);
    color: #000000;
}

.site.right-open .cart-link {
    left: calc(25% + 55px);
    color: #ffffff;
}

/* =========================================
   BOTTOM SOCIAL NAVIGATION
========================================= */

.bottom-social-nav {
    position: fixed;
    left: 0;
    bottom: 34px;
    width: 100%;
    height: 34px;
    z-index: 999;
    pointer-events: none;
}

.social-link {
    position: fixed;
    bottom: 34px;
    width: 22px;
    height: 22px;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        left 900ms cubic-bezier(.77, 0, .18, 1),
        opacity 250ms ease,
        transform 250ms ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width 250ms ease;
}

.social-link:hover {
    opacity: .78;
    transform: translateY(-2px);
}

.social-link:hover::after {
    width: 22px;
}

.instagram-link {
    left: calc(50% - 76px);
    color: #ffffff;
    background: #000000;
    border-radius: 999px;
    padding: 4px;
}

.instagram-link svg {
    stroke: #ffffff;
}

.youtube-link-icon {
    left: calc(50% + 56px);
    color: #ffffff;
}

.site.left-open .instagram-link {
    left: calc(75% - 76px);
    color: #ffffff;
}

.site.left-open .youtube-link-icon {
    left: calc(75% + 56px);
    color: #ffffff;
}

.site.right-open .instagram-link {
    left: calc(25% - 76px);
    color: #ffffff;
}

.site.right-open .youtube-link-icon {
    left: calc(25% + 56px);
    color: #ffffff;
}

/* =========================================
   SPLIT
========================================= */

.split {
    position: absolute;
    top: 0;
    height: 100vh;
    overflow: hidden;
    transition:
        width 900ms cubic-bezier(.77, 0, .18, 1),
        left 900ms cubic-bezier(.77, 0, .18, 1),
        opacity 500ms ease;
}

.left-side {
    left: 0;
    width: 50%;
    background: #ffffff;
}

.right-side {
    left: 50%;
    width: 50%;
    background: #000000;
    color: #ffffff;
}

.divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100vh;
    background: #000000;
    z-index: 30;
    transform: translateX(-50%);
    transition:
        left 900ms cubic-bezier(.77, 0, .18, 1),
        background 300ms ease;
}

.site.right-open .divider,
.site.left-open .divider {
    background: #ffffff;
}

.left-home,
.right-home,
.left-expanded,
.right-expanded {
    width: 100%;
    height: 100vh;
}

.left-home,
.right-home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3vw;
    transition:
        opacity 450ms ease,
        transform 700ms ease;
}

.left-expanded,
.right-expanded {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 550ms ease 260ms,
        transform 700ms ease 180ms;
}

.scroll-area {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #000000 #ffffff;
}

.right-side .scroll-area {
    scrollbar-color: #ffffff #000000;
}

.left-expanded {
    padding: 8vh 6vw 8vh;
    background: #ffffff;
    transform: translateX(-40px);
}

.right-expanded {
    padding: 15vh 5vw 8vh;
    background: #000000;
    color: #ffffff;
    transform: translateX(40px);
}

/* =========================================
   DOMORE
========================================= */

.domore-logo {
    cursor: pointer;
    font-size: clamp(34px, 8vw, 150px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -0.08em;
    white-space: nowrap;
    max-width: 100%;
    overflow: visible;
    padding-right: 0.18em;
    transition:
        color 500ms ease,
        transform 350ms ease,
        letter-spacing 350ms ease,
        filter 350ms ease;
}

.domore-logo:hover {
    transform: scale(1.04);
    letter-spacing: -0.045em;
    filter: blur(.25px);
}

.domore-logo.small {
    font-size: clamp(30px, 6vw, 112px);
}

/* =========================================
   DOLCEMENTE AS IMAGE FROM PDF
========================================= */

.dolcemente-home-logo,
.dolcemente-page-logo {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(78%, 760px);
    margin: 0 auto;
    transition:
        transform 350ms ease,
        opacity 350ms ease;
}

.dolcemente-home-logo:hover,
.dolcemente-page-logo:hover {
    transform: scale(1.035);
    opacity: .88;
}

.dolcemente-home-logo img,
.dolcemente-page-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.dolcemente-page-logo {
    margin-bottom: 12vh;
}

.prossimamente-wrap {
    width: min(58%, 520px);
    margin: 0 auto 14vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prossimamente-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================
   TEXTS
========================================= */

.text-block {
    width: min(80%, 760px);
    margin-top: 7vh;
    font-size: clamp(14px, 1.45vw, 28px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.text-block.narrow {
    width: min(62%, 620px);
}

.text-block p {
    margin: 0 0 10px;
}

.signature {
    width: 100%;
    text-align: right;
    margin-top: 24px;
    line-height: .95;
}

.plus {

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

    margin: 34px auto 0;

    width: 28px;
    height: 28px;

    border: 2px solid #ffffff;

    background: #000000;

    color: #ffffff;

    font-size: 18px;
    font-weight: 900;

    cursor: pointer;

    transition:
        transform 250ms ease,
        background 250ms ease,
        color 250ms ease;
}

.plus:hover {

    background: #ffffff;

    color: #000000;

    transform:
        rotate(90deg)
        scale(1.12);
}

.scroll-top {
    position: sticky;
    bottom: 24px;
    margin-top: 70px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 2px solid #000000;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    z-index: 90;
    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.scroll-top:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
}

.right-side .scroll-top {
    border-color: #ffffff;
    background: #000000;
    color: #ffffff;
}

.right-side .scroll-top:hover {
    background: #ffffff;
    color: #000000;
}

.section-footer {
    width: 100%;
    margin-top: 35px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.72;
}

.right-side .section-footer {
    color: #ffffff;
}

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

.site.left-open .left-side {
    width: 75%;
}

.site.left-open .right-side {
    left: 75%;
    width: 25%;
}

.site.left-open .divider {
    left: 75%;
}

.site.left-open .left-home {
    opacity: 0;
    pointer-events: none;
    transform: scale(.96);
}

.site.left-open .left-expanded {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.site.left-open .right-home {
    opacity: 1;
    transform: scale(1);
    padding: 2vw;
}

.site.left-open .right-home .dolcemente-home-logo {
    width: min(88%, 320px);
}

/* =========================================
   RIGHT OPEN
========================================= */

.site.right-open .left-side {
    width: 25%;
}

.site.right-open .right-side {
    left: 25%;
    width: 75%;
}

.site.right-open .divider {
    left: 25%;
}

.site.right-open .right-home {
    opacity: 0;
    pointer-events: none;
    transform: scale(.96);
}

.site.right-open .right-expanded {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.site.right-open .left-home {
    opacity: 1;
    transform: scale(1);
    padding: 2vw;
}

.site.right-open .left-home .domore-logo {
    font-size: clamp(24px, 3.5vw, 74px);
    letter-spacing: -0.075em;
}

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

@media (max-width: 820px) {

    .site,
    .split,
    .left-home,
    .right-home,
    .left-expanded,
    .right-expanded {
        height: 100svh;
    }

    .top-nav {
        top: 24px;
        padding: 0 20px;
    }

    .shop-link {
        top: 24px;
        left: calc(50% - 48px);
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .cart-link {
        top: 24px;
        left: calc(50% + 34px);
    }

    .cart-link svg {
        width: 16px;
        height: 16px;
    }

    .site.left-open .shop-link {
        left: calc(86% - 42px);
        color: #000000;
        writing-mode: vertical-rl;
    }

    .site.left-open .cart-link {
        left: calc(86% + 14px);
        color: #ffffff;
    }

    .site.right-open .shop-link {
        left: calc(14% - 34px);
        color: #000000;
        writing-mode: vertical-rl;
    }

    .site.right-open .cart-link {
        left: calc(14% + 14px);
        color: #ffffff;
    }

    .social-link {
        bottom: 22px;
        width: 18px;
        height: 18px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .instagram-link {
        left: calc(50% - 42px);
    }

    .youtube-link-icon {
        left: calc(50% + 28px);
    }

    .site.left-open .instagram-link {
        left: calc(86% - 42px);
    }

    .site.left-open .youtube-link-icon {
        left: calc(86% + 14px);
    }

    .site.right-open .instagram-link {
        left: calc(14% - 34px);
    }

    .site.right-open .youtube-link-icon {
        left: calc(14% + 14px);
    }

    .domore-logo {
        font-size: clamp(30px, 10vw, 72px);
        letter-spacing: -0.065em;
        padding-right: 0.25em;
    }

    .domore-logo.small {
        font-size: clamp(40px, 13vw, 80px);
    }

    .site.left-open .left-side {
        width: 86%;
    }

    .site.left-open .right-side {
        left: 86%;
        width: 14%;
    }

    .site.left-open .divider {
        left: 86%;
    }

    .site.right-open .left-side {
        width: 14%;
    }

    .site.right-open .right-side {
        left: 14%;
        width: 86%;
    }

    .site.right-open .divider {
        left: 14%;
    }

    .site.left-open .right-home .dolcemente-home-logo {
        width: 120px;
        transform: rotate(90deg);
    }

    .site.right-open .left-home .domore-logo {
        font-size: clamp(15px, 4.2vw, 34px);
        writing-mode: vertical-rl;
        letter-spacing: -0.04em;
    }

    .text-block,
    .text-block.narrow {
        width: 100%;
    }

    .text-block {
        font-size: clamp(14px, 3.4vw, 19px);
    }

    .left-expanded {
        padding: 6vh 7vw 8vh;
    }

    .right-expanded {
        padding: 16vh 7vw 8vh;
    }

    .dolcemente-home-logo,
    .dolcemente-page-logo {
        width: 92%;
    }

    .prossimamente-wrap {
        width: 78%;
    }
}


/* =========================================
   DOLCEMENTE PDF FINAL OVERRIDE
========================================= */

.dolcemente,
.dolce-pdf-wrap {
    display: none !important;
}

.dolcemente-home-logo,
.dolcemente-page-logo {
    cursor: pointer;
    border: 0;
    background: transparent;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: min(82%, 760px);
    margin: 0 auto;
    padding: 0;
    transition:
        transform 350ms ease,
        opacity 350ms ease;
}

.dolcemente-home-logo:hover,
.dolcemente-page-logo:hover {
    transform: scale(1.035);
    opacity: .88;
}

.dolcemente-home-logo img,
.dolcemente-page-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: none !important;
}

.dolcemente-page-logo {
    margin-top: 4vh;
    margin-bottom: 10vh;
}

.prossimamente-wrap {
    width: min(62%, 540px);
    margin: 0 auto 14vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prossimamente-wrap img {
    display: block;
    width: 100%;
    height: auto;
    filter: none !important;
}

.site.left-open .right-home .dolcemente-home-logo {
    width: min(88%, 320px);
}

@media (max-width: 820px) {
    .site.left-open .right-home .dolcemente-home-logo {
        width: 120px;
        transform: rotate(90deg);
    }

    .dolcemente-home-logo,
    .dolcemente-page-logo {
        width: 92%;
    }

    .prossimamente-wrap {
        width: 78%;
    }
}


/* FINAL PROSSIMAMENTE POSITION */

.prossimamente-wrap {
    width: min(72%, 720px) !important;
    margin: -3vh auto 14vh !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.prossimamente-wrap img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

@media (max-width: 820px) {
    .prossimamente-wrap {
        width: 86% !important;
        margin-top: 1vh !important;
    }
}


/* =========================================
   FINAL HEADER / CART / DOLCEMENTE FIX
   Desktop + Mobile
========================================= */

/* Carrello originale */
.cart-icon {
    width: 18px;
    height: 18px;
}

/* Allineamento desktop */
.shop-link {
    top: 38px !important;
}

.cart-link {
    top: 38px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-link svg {
    width: 18px !important;
    height: 18px !important;
}

.cart-count {
    top: -8px !important;
    right: -10px !important;
}

/* Logo Dolcemente desktop in home */
.right-home .dolcemente-home-logo {
    width: min(110%, 1250px) !important;

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

    margin-top: -55px !important;
    margin-left: 0 !important;

    transform: none !important;
}

.right-home .dolcemente-home-logo:hover {
    transform: scale(1.025) !important;
}

/* Logo Dolcemente quando DOMORE è aperto su desktop */
.site.left-open .right-home .dolcemente-home-logo {
    width: min(92%, 360px) !important;

    margin-top: 0 !important;
    margin-left: 0 !important;

    transform: none !important;
}

/* Pagina Dolcemente aperta */
.site.right-open .dolcemente-page-logo {
    width: min(84%, 980px) !important;
    margin-top: 2vh !important;
    margin-bottom: 8vh !important;
}

.site.right-open .prossimamente-wrap {
    width: min(68%, 760px) !important;
    margin-top: -2vh !important;
}

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

@media (max-width: 820px) {

    /* Header mobile allineato */
    .shop-link {
        top: 34px !important;

        display: flex;
        align-items: center;
    }

    .cart-link {
        top: 34px !important;

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

    .cart-link svg {
        width: 18px !important;
        height: 18px !important;
    }

    .cart-count {
        top: -8px !important;
        right: -10px !important;
    }

    /* Logo Dolcemente nella home mobile:
       più grande e leggermente più in basso */
    .right-home .dolcemente-home-logo {
        width: 150% !important;

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

        margin-top: -18px !important;
        margin-left: -18px !important;

        transform: none !important;
    }

    .right-home .dolcemente-home-logo:hover {
        transform: scale(1.02) !important;
    }

    /* Quando apri DOMORE:
       logo Dolcemente verticale più grande e leggibile */
    .site.left-open .right-home .dolcemente-home-logo {
        display: flex !important;

        width: 280px !important;

        margin: 0 !important;

        transform:
            rotate(90deg)
            translateY(26px)
            scale(1.2) !important;

        opacity: 1 !important;

        filter: drop-shadow(0 0 2px rgba(255, 230, 0, 0.15));
    }

    /* Pagina Dolcemente aperta su mobile */
    .site.right-open .dolcemente-page-logo {
        width: 94% !important;

        margin-top: 4vh !important;
        margin-bottom: 8vh !important;
    }

    .site.right-open .prossimamente-wrap {
        width: 88% !important;

        margin-top: 0 !important;
    }
}

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

@media (max-width: 480px) {

    .right-home .dolcemente-home-logo {
        width: 154% !important;

        margin-top: -14px !important;
        margin-left: -20px !important;
    }

    .site.left-open .right-home .dolcemente-home-logo {
        width: 270px !important;

        transform:
            rotate(90deg)
            translateY(24px)
            scale(1.18) !important;
    }
}


/* =========================================
   MOBILE CART ALIGNMENT FINAL
========================================= */

@media (max-width: 820px) {

    .cart-link {
        top: 30px !important;

        left: calc(50% + 28px) !important;

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

        transform: none !important;
    }

    .cart-link svg {
        width: 18px !important;
        height: 18px !important;
    }

    .cart-count {
        top: -8px !important;
        right: -10px !important;
    }

    .site.left-open .cart-link {
        left: calc(86% + 14px) !important;
    }

    .site.right-open .cart-link {
        left: calc(14% + 14px) !important;
    }
}

/* =========================================
   FINAL DOLCEMENTE ALIGNMENT
========================================= */

/* DESKTOP */

.right-home .dolcemente-home-logo {

    width: min(122%, 1450px) !important;

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

    margin-top: -72px !important;

    margin-left: -6px !important;

    transform: none !important;
}

.right-home .dolcemente-home-logo:hover {
    transform: scale(1.02) !important;
}

/* MOBILE */

@media (max-width: 820px) {

    .right-home .dolcemente-home-logo {

        width: 165% !important;

        margin-top: -34px !important;

        margin-left: -20px !important;

        transform: none !important;
    }
}

/* =========================================
   FINAL VERTICAL DOLCEMENTE LOGO
========================================= */

@media (max-width: 820px) {

    .site.left-open .right-home .dolcemente-home-logo {

        display: flex !important;

        width: 360px !important;

        opacity: 1 !important;

        margin: 0 !important;

        transform:
            rotate(90deg)
            translateY(34px)
            scale(1.32) !important;

        filter:
            drop-shadow(0 0 2px rgba(255, 220, 0, 0.12));

        transform-origin: center center;
    }
}


/* FIX LOGO DOLCEMENTE VERTICALE MOBILE */

@media (max-width: 820px) {

    .site.left-open .right-side,
    .site.left-open .right-home {
        overflow: visible !important;
    }

    .site.left-open .right-home .dolcemente-home-logo {
        display: flex !important;

        position: absolute !important;

        top: 50%;
        left: 50%;

        width: 260px !important;

        margin: 0 !important;

        opacity: 1 !important;

        transform:
            translate(-40%, -50%)
            rotate(90deg)
            scale(1.05) !important;

        transform-origin: center center;

        z-index: 200;
    }
}