@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --page-width: 1100px;
    --black: #000;
    --muted: rgba(0, 0, 0, 0.5);
    --line: rgba(0, 0, 0, 0.25);
    --copy-width: 58%;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    color: var(--black);
    background: #fff;
    font-family: "Open Sans", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

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

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid var(--line);
}

    .topbar .container {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        min-height: 2.85rem;
        font-size: 1rem;
        font-weight: 700;
        color: var(--muted);
        gap: 15px;
        flex-direction: row-reverse;
    }

.language-links,
.social-links,
.account-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .language-links a {
        padding: 0.65rem 0.18rem;
    }

        .language-links a + a {
            margin-left: 0.05rem;
        }

    .language-links .active {
        color: #000;
    }

.icon-link {
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    /* margin-left: 1rem; */
    padding: 0;
    opacity: 0.5;
}

    .icon-link img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.contact-link {
    display: grid;
    place-items: center;
    min-height: 2.85rem;
    padding: 0 1.25rem;
    color: #fff;
    background: #000;
}

.partner-cta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: auto;
    color: #000;
}

.partner-cta-text {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.68);
    white-space: nowrap;
}

.partner-cta-button {
    display: inline-grid;
    place-items: center;
    min-height: 2.15rem;
    padding: 0 1rem;
    color: #fff;
    background: #000;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.masthead {
    padding: 3rem 0 2.7rem;
}

.logo-row {
    position: relative;
}

.logo {
    width: auto;
    height: 3rem;
    margin-bottom: 2rem;
}

.hamburger {
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 0;
    width: 1.65rem;
    height: 1.65rem;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

    .hamburger strong {
        display: none;
    }

    .hamburger img {
        display: none;
    }

    .hamburger span {
        display: block;
        width: 1.65rem;
        height: 0.18rem;
        margin-bottom: 0.3rem;
        background: #000;
    }

        .hamburger span:last-child {
            margin-bottom: 0;
        }

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

    .primary-nav a,
    .primary-nav button {
        display: inline-block;
        margin-right: 1rem;
        padding: 0 0 0.15rem;
        color: #000;
        background: transparent;
        border: 0;
        border-bottom: 3px solid #fff;
        cursor: pointer;
        font: inherit;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: uppercase;
    }

        .primary-nav a:hover,
        .primary-nav button:hover,
        .primary-nav button.is-open {
            border-bottom-color: #000;
        }

.mega {
    display: block;
    max-height: 0;
    margin-top: -1.2rem;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.65rem);
    background: #f4f4f4;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
    transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 420ms;
}

    .mega.is-open {
        max-height: 70vh;
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition: max-height 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease 70ms, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s;
    }

.mega-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 4.4rem;
    row-gap: 0.2rem;
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 1.95rem 0 2.15rem;
}

    .mega-inner.makeup {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

        .mega-inner.makeup .mega-group {
            margin-right: 3rem;
        }

.mega-group {
    min-width: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-0.4rem);
    transition: opacity 180ms ease, transform 240ms ease;
}

.mega.is-open .mega-group {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 260ms ease 120ms, transform 360ms cubic-bezier(0.22, 1, 0.36, 1) 90ms;
}

.mega-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.56rem 0;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    transition: color 180ms ease, transform 180ms ease;
}

.mega-group a {
    display: block;
    margin: 0;
    padding: 0.26rem 0;
    font-size: 0.94rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.mega-inner.makeup a {
    margin-left: 0;
}

.mega-group a:hover {
    color: rgba(0, 0, 0, 0.62);
    text-decoration: none;
    transform: translateX(0.18rem);
}

.mobile-menu {
    display: none;
}

.mobile-open-fallback {
    display: none;
}

.top-menu-button {
    display: none;
}

.home {
    padding-bottom: 1.55rem;
}

.home-stripe {
    position: relative;
    display: block;
    width: 100%;
    min-height: 392px;
    aspect-ratio: 1100 / 392;
    margin: 1.55rem 0;
    overflow: hidden;
    background-color: #f3f3f3;
}

    .home-stripe:first-child {
        margin-top: 1.25rem;
    }

    .home-stripe::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 76%);
    }

    .home-stripe:nth-child(2)::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0) 78%);
    }

.stripe-image {
    width: 100%;
    height: 100%;
    min-height: 392px;
    object-fit: cover;
}

.stripe-copy {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    display: grid;
    align-content: center;
    justify-items: start;
    width: 60%;
    min-height: 100%;
    padding: 3.1rem 3rem;
}

.stripe-title {
    display: block;
    margin-bottom: 2rem;
    color: var(--stripe-title, #222);
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.06;
}

.stripe-text {
    display: block;
    max-width: 36rem;
    margin-bottom: 2rem;
    color: #111;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.35;
}

    .stripe-text strong {
        font-weight: 700;
    }

.stripe-button {
    display: inline-block;
    padding: 0.72rem 2.05rem 0.72rem 1.05rem;
    color: #111;
    background: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: none;
}

    .stripe-button::after {
        content: "";
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 0.55rem;
        border-top: 0.4rem solid transparent;
        border-bottom: 0.4rem solid transparent;
        border-left: 0.42rem solid currentColor;
    }

.home-stripe:nth-child(2) .stripe-title,
.home-stripe:nth-child(2) .stripe-text,
.stripe-dark .stripe-title,
.stripe-dark .stripe-text {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.home-stripe:nth-child(2) .stripe-button,
.stripe-dark .stripe-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.28);
}

.home-stripe:focus-visible {
    outline: 3px solid #000;
    outline-offset: 3px;
}

.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
    background: linear-gradient( to bottom right, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0) );
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-info {
    color: rgba(0, 0, 0, 0.75);
}

.footer-links {
    text-align: right;
}

.footer-social-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.4rem;
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo {
    width: auto;
    height: 3rem;
}

.footer-social-links {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    color: #fff;
    background: #000;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    opacity: 0.78;
    transform: translateY(-2px);
}

.footer-social-links span {
    font-size: 0.62rem;
}

.footer-lang {
    margin-bottom: 2rem;
    font-weight: 700;
}

    .footer-lang a {
        display: inline-block;
        margin-left: 0.4rem;
        color: var(--muted);
    }

    .footer-lang .active {
        color: #000;
    }

.legal-links a {
    display: inline-block;
    margin-left: 0.6rem;
    padding-left: 0.6rem;
    border-left: 1px solid rgba(0, 0, 0, 0.3);
}

    .legal-links a:first-child {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

.footer-brands {
    display: grid;
    grid-auto-flow: column;
    justify-content: end;
    align-content: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0.52;
}

    .footer-brands img:first-child {
        height: 4.2rem;
    }

    .footer-brands img:last-child {
        align-self: center;
        height: 1.1rem;
    }

@media (max-width: 1120px) {
    .container,
    .mega-inner {
        max-width: none;
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media (max-width: 1000px) {
    .topbar .container {
        justify-content: flex-start;
        min-height: 2.15rem;
        font-size: 0.9rem;
        flex-direction: row;
    }

    .language-links {
        order: 2;
    }

    .social-links {
        order: 1;
        display: flex;
    }

    .partner-cta {
        order: 3;
        gap: 0;
        margin-right: 0;
        margin-left: auto;
    }

    .language-links a {
        padding: 0.2rem;
    }

    .icon-link {
        width: 1rem;
        height: 1rem;
        margin-left: 0.55rem;
    }

    .contact-link,
    .partner-cta .contact-link {
        min-height: 2.15rem;
        padding: 0 0.85rem;
    }

    .partner-cta-text {
        display: none;
    }

    .partner-cta-button {
        min-height: 1.9rem;
        padding: 0 0.75rem;
        font-size: 0.74rem;
    }

    .masthead {
        padding: 1.35rem 0 1.65rem;
    }

    .logo-row {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        margin: 0;
    }

    .logo {
        width: 14rem;
        height: auto;
        margin-bottom: 0;
    }

    .hamburger {
        position: static;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.24rem;
        width: 1.7rem;
        height: 1.7rem;
        margin: 0;
        padding: 0;
        color: #000;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

        .hamburger strong {
            display: none;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 0.18rem;
            margin: 0;
            background: #000;
        }

    .primary-nav,
    .mega {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 20;
        display: block;
        overflow: auto;
        width: 100vw;
        height: 100vh;
        padding: 5rem 1rem 1rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-100%);
        transition: transform 0.34s ease, opacity 0.24s ease, visibility 0s linear 0.34s;
    }

    .mobile-open-fallback {
        position: fixed;
        top: 3.55rem;
        right: 1rem;
        z-index: 15;
        display: block;
        padding: 0;
        color: #000;
        background: transparent;
        border: 0;
        font: inherit;
        font-size: 0.78rem;
        font-weight: 800;
        line-height: 1;
        text-transform: uppercase;
        cursor: pointer;
    }

    .top-menu-button {
        display: none;
    }

    .mobile-menu.is-open + .mobile-open-fallback {
        display: none;
    }

    .mobile-menu.is-open {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: transform 0.34s ease, opacity 0.24s ease, visibility 0s;
    }

    .mobile-menu a,
    .mobile-menu button {
        display: block;
        width: 100%;
        margin: 0 0 2rem;
        color: #000;
        background: transparent;
        border: 0;
        cursor: pointer;
        font: inherit;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-menu .mobile-close-text {
        margin-bottom: 2.5rem;
        color: rgba(0, 0, 0, 0.65);
        font-size: 0.9rem;
    }

    .mobile-submenu {
        display: block;
        overflow: hidden;
        max-height: 0;
        margin-top: -1rem;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(-0.4rem);
        transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.28s ease;
    }

        .mobile-submenu.is-open {
            max-height: 28rem;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-submenu a {
            margin-bottom: 0.55rem;
            font-weight: 400;
            text-transform: none;
        }

    .mobile-section-title {
        margin: 0 0 1rem;
        font-weight: 800;
        opacity: 0.6;
    }

    .mobile-langs {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 1rem;
        margin-top: 3rem;
    }

        .mobile-langs a {
            margin: 0;
        }

    .mobile-menu .close-menu {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        z-index: 25;
        display: block !important;
        width: 2rem !important;
        height: 2rem !important;
        margin: 0 !important;
        padding: 0;
        background: transparent;
        border: 0;
        opacity: 0.55;
        cursor: pointer;
    }

        .mobile-menu .close-menu span {
            position: absolute;
            top: 50%;
            left: 50%;
            display: block;
            width: 1.55rem;
            height: 0.18rem;
            background: #000;
            transform-origin: center;
        }

            .mobile-menu .close-menu span:first-child {
                transform: translate(-50%, -50%) rotate(45deg);
            }

            .mobile-menu .close-menu span:last-child {
                transform: translate(-50%, -50%) rotate(-45deg);
            }

    .home-stripe {
        margin: 1rem 0;
        min-height: 0;
    }

    .stripe-copy {
        width: 60%;
        padding: 1.35rem 1.2rem;
    }

    .stripe-title {
        margin-bottom: 0.85rem;
        font-size: 1.55rem;
        line-height: 1.16;
    }

    .stripe-text {
        max-width: 24rem;
        margin-bottom: 0.95rem;
        font-size: 0.78rem;
        line-height: 1.38;
    }

    .stripe-button {
        padding: 0.48rem 0.7rem;
        font-size: 0.6rem;
    }

    .footer {
        border-top: 0;
        background: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        margin-top: 1.5rem;
        text-align: center;
    }

    .footer-social-block {
        align-items: center;
    }

    .footer-social-links {
        justify-content: center;
    }

    .footer-brands {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .topbar .container {
        justify-content: flex-start;
        gap: 0.7rem;
    }

    .top-menu-button {
        display: none;
    }

    .social-links {
        display: flex;
        gap: 0.7rem;
    }

    .icon-link {
        margin-left: 0;
    }

    .account-links {
        display: none;
    }

    .contact-link {
        display: none;
    }

    .partner-cta .contact-link {
        display: grid;
        min-height: 2.15rem;
        padding: 0 1rem;
        font-size: 0.88rem;
    }

    .partner-cta-text {
        display: none;
    }

    .masthead {
        padding: 1.2rem 0 1.55rem;
    }

    .logo {
        width: min(14rem, 66vw);
    }

    .home-stripe {
        aspect-ratio: 1100 / 438;
    }

    .stripe-image {
        min-height: 0;
    }

    .stripe-copy {
        width: 63%;
        padding: 0.9rem 1rem;
    }

    .stripe-title {
        margin-bottom: 0.45rem;
        font-size: 0.86rem;
        line-height: 1.14;
    }

    .stripe-text {
        max-width: 13rem;
        margin-bottom: 0.55rem;
        font-size: 0.45rem;
        line-height: 1.34;
    }

    .stripe-button {
        padding: 0.3rem 0.44rem;
        font-size: 0.36rem;
    }

    .footer-lang a,
    .legal-links a {
        margin-top: 0.45rem;
    }

    .footer-brands {
        grid-auto-flow: row;
        justify-items: center;
    }
}
