/*
 * Components - Modern UI Components
 * Composants modernes pour le thème
 */

/* Header Component */
.site-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--wp--preset--color--background);
    align-items: center;
}
.header-content{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 2rem var(--gutters);
    position: relative;
    z-index: 1;
    /* MODIFS PRIMEURS */
    justify-content: flex-end;
}
.header-content .is-style-montrose-beige a{
    padding: 0.5rem 2rem;
}
.site-branding svg{
    width: 200px;
    height: auto;
}
.site-branding{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.menu-options{
    display: flex;
    gap: 1rem;
    align-items: baseline;
}
.menu-languages{
    display: flex;
    gap: 0.5rem;
}
.menu-languages a{
    font-size: var(--wp--preset--font-size--size-14);
    color: var(--wp--preset--color--bordeau);
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}
.menu-languages a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--bordeau);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.menu-languages a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.menu-languages a:not(:hover)::before {
    transform-origin: right;
}
.menu-languages a.active::before {
    transform: scaleX(1);
}
.menu-sound {
    display: flex;
}
.sound-toggle-btn {
    display: flex;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    /* MODIFS PRIMEURS */
    display: none;
}
.sound-toggle-icon {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--bordeau);
    transition: color 0.3s ease;
}

.sound-toggle-svg {
    width: 100%;
    height: 100%;
}

.sound-toggle-icon path {
    transform-box: fill-box;
    transform-origin: 50% 100%;
}

.sound-toggle-btn.is-paused .sound-toggle-icon path:nth-child(1) { transform: scaleY(0.7); }
.sound-toggle-btn.is-paused .sound-toggle-icon path:nth-child(2) { transform: scaleY(1); }
.sound-toggle-btn.is-paused .sound-toggle-icon path:nth-child(3) { transform: scaleY(0.5); }
.sound-toggle-btn.is-paused .sound-toggle-icon path:nth-child(4) { transform: scaleY(0.85); }
.sound-toggle-btn.is-paused .sound-toggle-icon path:nth-child(5) { transform: scaleY(0.65); }

.sound-toggle-btn.is-playing .sound-toggle-icon path {
    animation-name: sound-bars;
    animation-duration: 0.9s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.sound-toggle-btn.is-playing .sound-toggle-icon path:nth-child(1) { animation-delay: 0s; }
.sound-toggle-btn.is-playing .sound-toggle-icon path:nth-child(2) { animation-delay: 0.15s; }
.sound-toggle-btn.is-playing .sound-toggle-icon path:nth-child(3) { animation-delay: 0.3s; }
.sound-toggle-btn.is-playing .sound-toggle-icon path:nth-child(4) { animation-delay: 0.45s; }
.sound-toggle-btn.is-playing .sound-toggle-icon path:nth-child(5) { animation-delay: 0.6s; }

.menu-modal-active .sound-toggle-icon {
    color: var(--wp--preset--color--background);
}

@keyframes sound-bars {
    0% {
        transform: scaleY(0.35);
    }

    100% {
        transform: scaleY(1);
    }
}
.menu-modal{
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--wp--preset--color--bordeau);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.menu-modal.active{
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.menu-modal-content{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    height: 100%;
}
.nav-menu{
    display: flex;
    flex-direction: column;
    padding: 0% var(--gutters);
    width: fit-content;
    position: relative;
    z-index: 2;
}
.nav-menu li{
    display: flex;
    gap: 1rem;
}
.nav-menu li a{
    display: flex;
    font-size: var(--wp--preset--font-size--size-40);
    font-weight: 500;
    color: var(--wp--preset--color--background);
    font-family: "Kalufonia Regular", cursive;
    transition: color 0.3s ease;
}
.nav-menu li span{
    display: flex;
    font-size: var(--wp--preset--font-size--size-20);
    font-weight: 500;
    color: var(--wp--preset--color--background);
    font-family: "Kalufonia Regular", cursive;
    padding-top: 0.5rem;
    transition: color 0.3s ease;
}
.nav-menu li:hover a, .nav-menu li.active a, .nav-menu li:hover span, .nav-menu li.active span{
    color: var(--wp--preset--color--vin);
}
.menu-modal-close{
    position: absolute;
    bottom: 2rem;
    left: var(--gutters);
    background: none;
    border: none;
    color: var(--wp--preset--color--background);
    text-transform: uppercase;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none;
}
.menu-modal-close span{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--wp--preset--color--background);
    transition: all 0.3s ease;
}
.menu-modal-close span:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.site-branding svg path{
    fill: var(--wp--preset--color--bordeau);
    transition: fill 0.3s ease;
}
.menu-modal-active .site-branding svg path{
    fill: var(--wp--preset--color--background);
}
.menu-options{
    position: relative;
    z-index: 1;
}
.menu-modal-active .menu-options a{
    color: var(--wp--preset--color--background);
}
.menu-modal-active .menu-options a::before, .menu-modal-active .menu-options a.active::before{
    background-color: var(--wp--preset--color--background);
}
.menu-modal-active .menu-languages a.active::before {
    transform: scaleX(1);
}

/* Menu images wrapper */
.menu-images-wrapper {
    position: absolute;
    bottom: 2rem;
    right: var(--gutters);
    max-width: 500px;
    height: 50vh;
    aspect-ratio: 2/3;
    max-height: 800px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow: hidden;
    clip-path: polygon(8% 0%, 92% 0, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0 92%, 0 8%);
}
.menu-modal-active .menu-images-wrapper {
    opacity: 1;
}
.menu-image-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 400ms ease;
}
.menu-image-layer.is-current {
    opacity: 1;
    z-index: 2;
}
.menu-image-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-image-layer.is-leaving {
    z-index: 2;
    opacity: 0;
}
.menu-image-layer.is-entering {
    z-index: 1;
    opacity: 1;
}
.menu-blazon{
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: url(../svg/blason_dark.svg) no-repeat center;
    background-size: contain;
    z-index: 0;

}
@media (min-width: 1600px) {
    /* .header-content{
        padding: 2rem calc(var(--gutters) / 2);
    } */
    .nav-menu{
        padding: 0% var(--gutters);
    }
    .menu-modal-close{
        left: var(--gutters)
    }
    .menu-images-wrapper{
        right: var(--gutters);
    }
    .nav-menu li a{
        font-size: var(--wp--preset--font-size--size-60);
    }
    .nav-menu li span{
        font-size: var(--wp--preset--font-size--size-30);
    }
}
@media (max-width: 1024px){
    .menu-images-wrapper{
        width: 50%;
        max-width: 500px;
        height: 33vh;
    }
}
@media (max-height: 600px) {
    .menu-images-wrapper{
        display: none;
    }
}
@media (max-width: 768px) {
    .menu-images-wrapper{
        display: none;
    }
    .site-branding svg{
        width: 150px;
    }
    .menu-languages a{
        font-size: 12px;
    }
    .header-content .is-style-montrose-beige a{
        padding: 0.5rem 1rem;
        font-size: 10px;
    }
}

/* HEADER WHITE */
.site-header.header-white{
    background-color: transparent;
    color: var(--wp--preset--color--blanc);
    backdrop-filter: none;
}

/* Footer Component */
.site-footer {
    display: flex;
    background-color: var(--wp--preset--color--bordeau);
    width: 100%;
}
.footer-inner{
    display: flex;
    padding: 4rem var(--gutters);
    width: 100%;
    justify-content: space-between;
    position: relative;
}
.footer-col__left{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 50%;
}
.footer-col__right{
    display: flex;    
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}
.footer-menu{
    display: flex;
    flex-direction: column;
}
.footer-menu h2{
    font-size: var(--wp--preset--font-size--size-16);
    font-weight: 500;
    color: var(--wp--preset--color--blanc);
    text-transform: uppercase;
    margin-top: 0;
}
.footer-social-nav, .footer-nav{
    display: flex;
}
.footer-social-menu, .footer-main-menu{
    display: flex;
    flex-direction: column;
}
.footer-main-menu{
    gap: 0.5rem;
    align-items: flex-end;
}
.footer-social-menu{
    gap: 0.25rem;
}
.footer-social-menu li, .footer-main-menu li{
    display: flex;
}
.footer-social-menu li a, .footer-main-menu li a{
    display: flex;
    font-size: var(--wp--preset--font-size--size-16);
    font-weight: 500;
    color: var(--wp--preset--color--blanc);
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}
.footer-social-menu li a::before,
.footer-main-menu li a::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--blanc);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-social-menu li a:hover::before,
.footer-main-menu li a:hover::before{
    transform: scaleX(1);
    transform-origin: left;
}

.footer-social-menu li a:not(:hover)::before,
.footer-main-menu li a:not(:hover)::before{
    transform-origin: right;
}
.footer-main-menu li a{
    font-size: var(--wp--preset--font-size--size-14);
}
.footer-blason{
    display: flex;
    background: url(../svg/blason_dark.svg) no-repeat center;
    width: 175px;
    height: 175px;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -75%);
    z-index: 1;
}
.footer-address p, .footer-warning p{
    font-size: var(--wp--preset--font-size--size-14);
    color: var(--wp--preset--color--blanc);
}
.footer-content {
    display: flex;
}
footer.remove-footer{
    display: none;
}
.footer-inner-mobile{
    display: none;
}
.footer-warning{
    margin-top: auto;
}
@media (max-width: 768px) {
    .footer-inner{
        display: none;
    }
    .footer-inner-mobile{
        display: flex;
        flex-direction: column;
        padding: 2rem var(--gutters);
        width: 100%;
        justify-content: space-between;
        position: relative;
    }
    .footer-main-menu{
        align-items: flex-start;
    }
    .footer-blason{
        width: 350px;
        height: 350px;
        top: 50%;
        left: unset;
        right: 0%;
        transform: translate(50%, -60%);
    }
    .footer-menu h2{
        font-size: var(--wp--preset--font-size--size-14);
    }
    .footer-social-menu li a, .footer-main-menu li a{
        font-size: var(--wp--preset--font-size--size-14);
    }
    .footer-mobile-nav{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .footer-social-menu{
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .footer-social-nav .footer-social-menu .menu-link{
        width: 24px;
        height: 24px;
        font-size: 0;
        line-height: 0;
        text-indent: -9999px;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-social-nav .footer-social-menu .menu-link::before{
        display: none;
    }

    .footer-social-nav .footer-social-menu .menu-link::after{
        content: '';
        width: 20px;
        height: 20px;
        display: block;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .footer-social-nav .footer-social-menu li:nth-child(1) .menu-link::after{
        background-image: url(../svg/insta.svg);
    }

    .footer-social-nav .footer-social-menu li:nth-child(2) .menu-link::after{
        background-image: url(../svg/linkedin.svg);
    }

    .footer-social-nav .footer-social-menu li:nth-child(3) .menu-link::after{
        background-image: url(../svg/facebook.svg);
    }

    .footer-social-nav .footer-social-menu li:nth-child(4) .menu-link::after{
        background-image: url(../svg/wechat.svg);
    }
    .footer-address{
        padding-top: 6rem;
    }
    .footer-address p, .footer-warning p{
        text-align: center!important;
    }
}
@media (min-width: 1600px) {
    .footer-inner{
        padding: 4rem calc(var(--gutters) / 2);
    }
}

/* Footer QR Code Modal */
.footer-qr-code {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-qr-code.is-open {
    pointer-events: auto;
    opacity: 1;
}
.footer-qr-code-bkg {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}
.footer-qr-code__img {
    position: relative;
    z-index: 1;
    max-width: min(320px, 80vw);
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
}
.footer-qr-code__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.footer-qr-code__close::before,
.footer-qr-code__close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--wp--preset--color--blanc);
    border-radius: 1px;
}
.footer-qr-code__close::before { transform: rotate(45deg); }
.footer-qr-code__close::after  { transform: rotate(-45deg); }

/* Buttons */
.btn-cta{
    display: flex;
}
.btn-cta::before{
    content: '';
}

/* Hero Section */
.hero {
    display: flex;
}

/* Responsive images */
.wp-block-image img,
.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* Modern spacing */
.has-small-margin { margin: var(--spacing-sm); }
.has-medium-margin { margin: var(--spacing-md); }
.has-large-margin { margin: var(--spacing-lg); }

.has-small-padding { padding: var(--spacing-sm); }
.has-medium-padding { padding: var(--spacing-md); }
.has-large-padding { padding: var(--spacing-lg); }

/* === Modern Block Styles === */

/* Custom Columns Styles */
.wp-block-columns.is-style-border-columns {
    position: relative;
}

.wp-block-columns.is-style-border-columns .wp-block-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(11, 11, 11, 0.1);
}

.wp-block-columns.is-style-third-columns {
    --wp--style--block-gap: var(--spacing-lg);
}

.wp-block-columns.is-style-third-columns .wp-block-column:first-child {
    flex-basis: 33.333%;
}

.wp-block-columns.is-style-third-columns .wp-block-column:last-child {
    flex-basis: 66.666%;
}

.wp-block-columns.is-style-equal-height {
    align-items: stretch;
}

.wp-block-columns.is-style-equal-height .wp-block-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Custom Button Styles */
.wp-block-buttons{
    display: flex;
}
.is-style-montrose-button,
.is-style-montrose-beige,
.is-style-montrose-bordeau {
    display: inline-flex;
    width: fit-content;
    position: relative;
    z-index: 0;
    isolation: isolate;
}
.is-style-montrose-button a,
.is-style-montrose-beige a,
.is-style-montrose-bordeau a, .is-style-montrose-beige p button{
    display: flex;
    width: fit-content;
    background-color: var(--wp--preset--color--blanc);
    border: 0;
    border-radius: 0;
    clip-path: polygon(8% 0, 92% 0, 100% 30%, 100% 70%, 92% 100%, 8% 100%, 0 70%, 0 30%);
    padding: 1rem;
    transition: var(--transition);
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    color: var(--wp--preset--color--bordeau);
    text-transform: uppercase;
    font-size: var(--wp--preset--font-size--size-14);
    white-space: nowrap;
    z-index: 1;
    line-height: 1;
}

.is-style-montrose-beige p{
    display: flex;
    width: fit-content;
    background-color: var(--wp--preset--color--blanc);
    border: 0;
    border-radius: 0;
    clip-path: polygon(8% 0, 92% 0, 100% 30%, 100% 70%, 92% 100%, 8% 100%, 0 70%, 0 30%);
    transition: var(--transition);
    font-weight: 500;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    color: var(--wp--preset--color--bordeau);
    text-transform: uppercase;
    font-size: var(--wp--preset--font-size--size-14);
    white-space: nowrap;
    z-index: 1;
    line-height: 1;
    margin: 0;
}

.is-style-montrose-button a , .is-style-montrose-beige a ,.is-style-montrose-bordeau a, .is-style-montrose-beige p button{
    background-image: linear-gradient(var(--wp--preset--color--bordeau), var(--wp--preset--color--bordeau));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 0%;
}

.is-style-montrose-beige a, .is-style-montrose-beige p button {
    background-color: var(--wp--preset--color--background);
    color: var(--wp--preset--color--bordeau);
}

.is-style-montrose-bordeau a {
    background-color: var(--wp--preset--color--bordeau);
    color: var(--wp--preset--color--blanc);
}

.montrose-button__shape {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    clip-path: polygon(8% 0, 92% 0, 100% 30%, 100% 70%, 92% 100%, 8% 100%, 0 70%, 0 30%);
    padding: 0.65rem 1.6rem;
    background-color: var(--wp--preset--color--bordeau);
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
}

.is-style-montrose-button .montrose-button__shape,
.is-style-montrose-beige .montrose-button__shape{
    background-color: var(--wp--preset--color--bordeau);
}

.is-style-montrose-button a:hover, .is-style-montrose-button.active a, .is-style-montrose-beige a:hover, .is-style-montrose-beige.active a,  .is-style-montrose-beige p button:hover{
    background-size: 100% 100%;
    color: var(--wp--preset--color--background);
}

.is-style-montrose-bordeau .montrose-button__shape {
    background-color: var(--wp--preset--color--background);
}
.menu-btn-wrapper{
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    color: var(--wp--preset--color--bordeau);
    /* MODIFS PRIMEURS */
    display: none;
    pointer-events: none;
}
body.menu-modal-active .menu-btn-wrapper{
    color: var(--wp--preset--color--background);
}
@media (max-width: 1000px) {
    .is-style-montrose-button a,
    .is-style-montrose-beige a,
    .is-style-montrose-bordeau a {
        font-size: 12px;
    }
    .is-style-montrose-button a:hover {
        background-size: 100% 0%;
        color: var(--wp--preset--color--bordeau);
    }
    .is-style-montrose-beige a:hover {
        background-size: 100% 0%;
        color: var(--wp--preset--color--bordeau);
    }
}
/* Custom Group/Container Styles */
.wp-block-group.is-style-container-grid {
    max-width: var(--wp--style--global--content-size);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.wp-block-group.is-style-container-medium {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.wp-block-group.is-style-container-small {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.wp-block-group.is-style-card-style {
    background: var(--wp--preset--color--blanc);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: var(--spacing-lg);
    transition: var(--transition);
}

.wp-block-group.is-style-card-style:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Custom Heading Styles */
.wp-block-heading.is-style-gradient-heading {
    background: linear-gradient(135deg, var(--wp--preset--color--vert) 0%, var(--wp--preset--color--jaune) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.wp-block-heading.is-style-underline-heading {
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.wp-block-heading.is-style-underline-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--wp--preset--color--vert);
    border-radius: 2px;
}

/* Custom Paragraph Styles */
.wp-block-paragraph.is-style-lead-text {
    font-size: var(--wp--preset--font-size--size-14);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(11, 11, 11, 0.8);
}

.wp-block-paragraph.is-style-highlight-text {
    background: var(--wp--preset--color--jaune);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--wp--preset--color--vert);
}

/* Custom Image Styles */
.wp-block-image.is-style-rounded-image img {
    border-radius: var(--border-radius-lg);
}

.wp-block-image.is-style-shadow-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.wp-block-image.is-style-shadow-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Custom Quote Styles */
.wp-block-quote.is-style-modern-quote {
    border: none;
    background: var(--wp--preset--color--background);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    position: relative;
}

.wp-block-quote.is-style-modern-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--wp--preset--color--vert);
    position: absolute;
    top: 0;
    left: var(--spacing-md);
    font-family: var(--font-sans);
    line-height: 1;
}
/* AGE GATE */
body.age-gate-active {
    overflow: hidden;
}
.age-gate{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--wp--preset--color--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.age-gate.is-leaving {
    opacity: 0;
    pointer-events: none;
}
.age-gate-inner{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: 2rem 4rem;
    background-color: var(--wp--preset--color--bordeau);
    clip-path: polygon(8% 0, 92% 0, 100% 8%, 100% 92%, 92% 100%, 8% 100%, 0 92%, 0 8%);
}
.age-gate-languages{
    display: flex;
    gap: 0.5rem;
    padding-bottom: 1rem;
}
.age-gate-languages a, .age-gate-languages span{
    font-size: 12px;
    color: var(--wp--preset--color--background);
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
}
.age-gate-languages a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--wp--preset--color--background);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.age-gate-languages a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.age-gate-languages a:not(:hover)::before {
    transform-origin: right;
}
.age-gate-languages a.active::before {
    transform: scaleX(1);
}
.age-gate-blazon{
    display: flex;
    width: 50px;
    height: 50px;
}
.age-gate-text h2{
    margin: 0;
}
.age-gate-validation{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.age-gate-validation p{
    font-size: 12px;
    color: var(--wp--preset--color--background);
}
.age-gate-validation input[type="checkbox"]{
    background-color: var(--wp--preset--color--bordeau);
    border: 1px solid var(--wp--preset--color--background);
    appearance: none;
    width: 15px;
    height: 15px;
    display: flex;
}
.age-gate-validation input[type="checkbox"]:checked{
    background-color: var(--wp--preset--color--background);
}
.age-gate-buttons{
    display: flex;
    gap: 1rem;
}
.age-gate-buttons .is-style-montrose-button a{
    background-color: var(--wp--preset--color--bordeau);
    color: var(--wp--preset--color--background);
    padding: 1rem 2rem;
    background-image: linear-gradient(var(--wp--preset--color--background), var(--wp--preset--color--background));
}
.age-gate-buttons .is-style-montrose-button .montrose-button__shape {
    background-color: var(--wp--preset--color--background);
}
.age-gate-buttons .is-style-montrose-button a:hover {
    background-size: 100% 100%;
    color: var(--wp--preset--color--bordeau);
}
@media (max-width: 576px) {
    .age-gate{
        padding: 0 var(--gutters);
    }
}