@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&display=swap');

@font-face {
    font-family: 'Gyst';
    src: url('/UI/bandeaux-categories/typographie-campagne-header/gyst-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

Montserrat pour le texte
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 160%;
}


@media screen and (max-width: 1023px) {
    .montserrat-regular {
        font-size: 14px !important;
        line-height: 130% !important;
    }
}



/* BASE */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #ffffff;
    --color-accent: #f9d387;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-primary: "Montserrat", sans-serif;
    --spacing-xs: 5px;
    --spacing-sm: 5px;
    --spacing-md: 5px;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* CONTAINER */
.lookbook {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FAF9F6 ;
}

.lookbook * {
    box-sizing: border-box;
}

/* IMAGES - GLOBAL*/
.lookbook .img-responsive {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* .lookbook .img-container {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
} */

.lookbook .img-container img {
    transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lookbook a:hover .img-container img {
    transform: scale(1.015);
}

/* LINE - SECTIONS  */
.lookbook .line {
    width: 100%;
    position: relative;
}

.lookbook .line-margin {
    margin-bottom: 5px;
}

/* HEADER / INTRO*/
.lookbook .line-intro {
    position: relative;
    width: 100%;
}

.lookbook .line-intro .cell {
    position: relative;
    width: 100%;
}

.lookbook .line-intro .img-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
}

.lookbook .line-intro .img-container img {
    /* width: 100%;
    object-fit: cover;
    object-position: center; */
    height: auto;
    min-height: auto;
    width: 100%;
    object-fit: contain;
    object-position: center;
} 


.lookbook .beijos-cta-header {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    padding: 16px 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.lookbook .beijos-cta-header:hover {
    background-color: var(--color-secondary);
    color:#DC8E7D;
}

/* TEXTE INTRO / EDITO */
.lookbook .line-edito {
    position: relative;
    text-align: center;
    padding: 0;
    width: 100%;
    overflow: hidden;
    /* padding: var(--spacing-xl) var(--spacing-md); */
}

/* .lookbook .line-edito {
    position: relative;
    text-align: center;
    padding: 0;
    width: 100%;
} */

.lookbook .line-edito > picture {
    display: block;
    width: 100%;
}

.lookbook .line-edito > picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lookbook .title-intro {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    /* line-height: 2; */
    text-transform: uppercase;
    max-width: 35% !important;
    margin: 0 auto;
    color: var(--color-text);
    padding: 20px;
}

@media (max-width: 1024px) {
    .lookbook .title-intro {
        max-width: 90% !important;
    }
}

.lookbook .title-intro em {
    font-style: italic;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-top: var(--spacing-sm);
}

/* Bloc Azulejos avec background */
.lookbook .line-edito.line-margin {
    padding: 0;
}

.lookbook .line-edito .line-edito-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: #434867;
    padding: 40px 60px;
    width: auto;
    max-width: 80%;
}

.lookbook .line-edito .line-edito-inner img {
    max-width: clamp(120px, 30vw, 220px);
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

.lookbook .line-edito .edito {
  font-family: var(--font-primary);
    font-size: clamp(10px, 1.5vw, 13px);
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1.8;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin: 0;
}

/* FLEX LAYOUTS - GRILLES (5px gaps) */
.lookbook .line-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 5px;
}


/* 2 images portrait côte à côte */
.lookbook .line-2-img {
    display: flex;
    gap: 5px;
}

.lookbook .line-2-img .cell {
    flex: 1;
    position: relative;
}

.lookbook .line-2-img .cell .img-container {
    aspect-ratio: 2/3;
}

.lookbook .line-2-img .cell .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LIGNE 2/3 - IMAGE PAYSAGE + PORTRAIT */
.lookbook .line-2-3-img {
    display: flex;
    gap: 5px;
    padding: 0 5px;
}

.lookbook .line-2-3-img-first-full .cell01 {
    flex: 2;
    position: relative;
}

.lookbook .line-2-3-img-first-full .cell02 {
    flex: 1;
    position: relative;
}

.lookbook .line-2-3-img .cell .img-container {
    height: 100%;
}

.lookbook .line-2-3-img .cell .img-container img {
    width: 100%;
    object-fit: cover;
}

/* LIGNE 2/3 - IMAGE PORTRAIT + PAYSAGE */
.lookbook .line-2-3-img-second-full .cell01 {
    flex: 1;
    position: relative;
}

.lookbook .line-2-3-img-second-full .cell02 {
    flex: 2;
    position: relative;
}

/* Fix pour ligne 2/3 - forcer les images à remplir le conteneur */
.lookbook .line-2-3-img .cell {
    display: flex;
}

.lookbook .line-2-3-img .cell > a {
    display: flex;
    flex: 1;
    width: 100%;
}

.lookbook .line-2-3-img .cell .img-container {
    flex: 1;
    display: flex;
}

.lookbook .line-2-3-img .cell .img-container picture {
    flex: 1;
    display: flex;
}

.lookbook .line-2-3-img .cell .img-container picture img {
    flex: 1;
    object-fit: cover;
    min-height: 100%;
}

/* LIGNE IMAGE PLEINE LARGEUR (PAYSAGE)*/
.lookbook .line-scroll {
    padding: 0 5px;
}

.lookbook .line-scroll .cell {
    position: relative;
    width: 100%;
}

.lookbook .line-scroll .img-container {
    width: 100%;
}

.lookbook .line-scroll .img-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* VIDÉO */
.lookbook .videoContainer {
    position: relative;
    width: 100%;
    background-color: #000;
}

.lookbook .videoContainer video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lookbook .videoContainer.-full video {
    min-height: 50vh;
    object-fit: cover;
}

.lookbook .loaderContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lookbook .loaderContainer.hidden {
    display: none;
}

.lookbook .loader-element {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* CARROUSEL / SLIDER - PLEINE LARGEUR */
.lookbook .line-slider-only-mob {
    padding: 0;
    width: 100%;
}

.lookbook .line-slider-only-mob .cell {
    position: relative;
}

.lookbook .line-slider-only-mob .cell .img-container {
    aspect-ratio: 2/3;
}

.lookbook .line-slider-only-mob .cell .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LIBELLÉS PRODUITS*/
.lookbook .libelle-abs {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%); */
    z-index: 10;
}

.lookbook .libelle-abs-left {
    text-align: left;
}

.lookbook .libelle-abs-right {
    text-align: right;
}

.lookbook .libelle {
    margin: 0;
    padding: 0;
}

.lookbook .libelle a {
    display: block;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    transition: opacity var(--transition-base);
}

.lookbook .libelle a:hover {
    opacity: 0.8;
}

.lookbook .libelle .text-italic {
    font-style: italic;
    font-weight: 400;
    opacity: 0.85;
    font-size: 10px;
}

/* QUICKSHOP BUTTON - STYLE MAISON 123 (sans fond rond, en haut)*/
.lookbook .quickshop {
    display: block;
    position: relative;
    text-decoration: none;
}

.lookbook .quickAddToCartMobile__button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 15;
    padding: 0;
}

.lookbook .quickAddToCartMobile__button:hover {
    transform: scale(1.15);
}

.lookbook .quickAddToCartMobile__button:hover .quickAddToCartMobile__buttonIcon {
    opacity: 1;
}

.lookbook .quickAddToCartMobile__buttonIcon {
    font-size: 22px;
    color: var(--color-secondary);
    opacity: 0.9;
    transition: opacity var(--transition-base);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Animation panier style Maison 123 */
.lookbook .quickAddToCartMobile__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.lookbook .quickAddToCartMobile__button:active::before {
    width: 50px;
    height: 50px;
}

/* CTA BANNER FINAL */
.lookbook .line-cta {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

.lookbook .line-cta a {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    padding: 16px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    transition: all var(--transition-base);
}

.lookbook .line-cta a:hover {
    background-color: #e8c276;
    box-shadow: 0 6px 20px rgba(249, 211, 135, 0.5);
}

/* FLICKITY CAROUSEL STYLES - FLÈCHES SANS FOND BLANC*/
.lookbook .flickity-enabled {
    position: relative;
}

.lookbook .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.lookbook .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Flèches style Maison 123 - pas de fond rond blanc */
.lookbook .flickity-prev-next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
    /* transition: all var(--transition-base); */
    padding: 0;
}

.lookbook .flickity-prev-next-button:hover {
    background: transparent;
}

.lookbook .flickity-prev-next-button:focus {
    outline: none;
    box-shadow: none;
}

.lookbook .flickity-prev-next-button.previous {
    left: 10px;
}

.lookbook .flickity-prev-next-button.next {
    right: 10px;
}

.lookbook .flickity-prev-next-button svg {
    width: 100%;
    height: 100%;
}

.lookbook .flickity-prev-next-button .flickity-button-icon {
    fill: #ffffff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
    transform: scale(0.7);
}

.lookbook .flickity-prev-next-button:hover .flickity-button-icon {
    transform: scale(1.1);
}

/* Désactiver les dots si présents */
.lookbook .flickity-page-dots {
    display: none;
}

/* RESPONSIVE - DESKTOP (>= 1025px) */
@media (min-width: 1025px) {
    /* Visibility */
    .lookbook .hidden-d {
        display: none !important;
    }

    /* Margins - garder 5px */
    .lookbook .line-margin {
        margin-bottom: 5px;
    }

    /* Flex layouts - 5px gaps */
    .lookbook .line-flex {
        gap: 5px;
        padding: 0 5px;
    }

    .lookbook .line-2-img {
        gap: 5px;
    }

    .lookbook .line-2-3-img {
        gap: 5px;
        padding: 0 5px;
    }

     .mobile-only {
        display: none !important;
    }

    /* Sticky text */
    .lookbook .text-inner,
    .lookbook .libelle-inner {
        position: -webkit-sticky;
        position: sticky;
    }

    /* Row reverse */
    .lookbook .line-reverse {
        flex-direction: row-reverse;
    }

    /* Ligne 2/3 images */
    .lookbook .line-2-3-img .cell .lazyLoadedContainer {
        height: 100% !important;
    }

.lookbook .line-slider-only-mob {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 5px;
    padding: 0;
    width: 100%;
}

.lookbook .line-slider-only-mob .cell {
    min-width: 0;
    overflow: hidden;
}

/* Désactiver Flickity sur desktop */
.lookbook .line-slider-only-mob.flickity-enabled {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 5px;
}

.lookbook .line-slider-only-mob .flickity-viewport {
    display: contents;
}

.lookbook .line-slider-only-mob .flickity-slider {
    display: contents;
}

    /* Quickshop on hover */
    .lookbook .quickshop:hover .quickAddToCartMobile__button {
        display: flex;
    }

    /* Scroll line */
    .lookbook .line-scroll {
        padding: 0 5px;
    }

    /* Header */
    .lookbook .line-intro .img-container {
        min-height: auto;
    }

    .lookbook .line-intro .img-container img {
        height: auto;
        min-height: auto;
    }

    /* Libellés */
    .lookbook .libelle-abs {
        padding: 20px;
    }

    .lookbook .libelle a {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Edito
    .lookbook .line-edito {
        padding: 0;
    } */

    /* Video */
    .lookbook .videoContainer.-full video {
        min-height: 70vh;
    }

    /* CTA */
    .lookbook .line-cta {
        min-height: 369px;
    }
}

/*  RESPONSIVE - TABLET (768px - 1024px)*/
@media (min-width: 768px) and (max-width: 1024px) {
    .lookbook .hidden-m {
        display: none !important;
    }

    .lookbook .line-2-3-img-second-full .cell02 {
        display: none !important;
    }

    .lookbook .line-margin {
        margin-bottom: 5px;
    }

    .lookbook .line-flex {
        gap: 5px;
        padding: 0 5px;
    }

    .lookbook .line-2-img {
        gap: 5px;
    }

    .lookbook .line-2-3-img {
        flex-direction: column;
        gap: 5px;
        padding: 0 5px;
    }

    .lookbook .line-2-3-img-first-full .cell01,
    .lookbook .line-2-3-img-first-full .cell02 {
        flex: none;
        width: 100%;
    }

    .lookbook .line-scroll {
        padding: 0 5px;
    }

    /* Slider */
    .lookbook .line-slider-only-mob {
        padding: 0;
    }

    .lookbook .line-slider-only-mob .cell {
        width: 80%;
        margin: 0 auto;
    }

    /* Show quickshop on tablet */
    .lookbook .quickAddToCartMobile__button {
        display: flex;
    }

    /* Libellés */
    .lookbook .libelle a {
        font-size: 12px;
    }

    /* Header */
    .lookbook .line-intro .img-container img {
        height: auto;
        min-height: auto;
    }

.lookbook .beijos-cta-header {
    padding: 14px 40px;
    font-size: 12px;
    bottom: 10%;
}
}

/* RESPONSIVE - MOBILE (< 768px) */
@media (max-width: 767px) {
    .lookbook .hidden-m {
        display: none !important;
    }

    .lookbook .line-margin {
        margin-bottom: 5px;
    }

    /* Flex layouts - stack on mobile avec 5px gaps */
    .lookbook .line-flex {
        flex-direction: column;
        gap: 5px;
        padding: 0 5px;
    }

    .lookbook .line-2-img {
        flex-direction: row;
        gap: 5px;
    }

    .lookbook .line-2-img .cell {
        width: calc(50% - 2.5px);
        flex: none;
    }

    .lookbook .line-2-3-img {
        flex-direction: column;
        gap: 5px;
        padding: 0 5px;
    }

    .lookbook .line-2-3-img-first-full .cell01,
    .lookbook .line-2-3-img-first-full .cell02 {
        flex: none;
        width: 100%;
    }

    .lookbook .line-scroll {
        padding: 0 5px;
    }

    /* Header mobile */
    .lookbook .line-intro .img-container {
        min-height: auto;
    }

    .lookbook .line-intro .img-container img {
        height: auto;
        min-height: auto;
        width: 100%;
        object-fit: contain;
        object-position: center top;
    }

     .lookbook .header-content {
        bottom: 10%;
        right: 50%;
        transform: translateX(50%);
    }
    
    .lookbook .header-logo {
        max-width: 200px;
    }
    
 .lookbook .beijos-cta-header {
    padding: 14px 35px;
    font-size: 12px;
    letter-spacing: 1px;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

    /* Texte intro
    .lookbook .line-edito {
        padding: 0;
    } */

    .lookbook .title-intro {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1.8;
        max-width: 370px;
    }

    .lookbook .line-edito .edito {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .lookbook .line-edito .line-edito-inner {
    padding: 45px 20px;
    max-width: 100%;
}

    /* Slider mobile - Flickity active, pleine largeur */
    .lookbook .line-slider-only-mob {
        padding: 0;
        width: 100%;
    }

    .lookbook .line-slider-only-mob .cell {
        width: 85%;
        margin-right: 5px;
    }

    /* Libellés */
    .lookbook .libelle-abs {
        padding: 10px;
    }

    .lookbook .libelle a {
        font-size: 10px;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .lookbook .libelle .text-italic {
        font-size: 8px;
    }

    /* Quickshop visible on mobile - style épuré, en haut */
    .lookbook .quickAddToCartMobile__button {
        display: flex;
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .lookbook .quickAddToCartMobile__buttonIcon {
        font-size: 20px;
    }

    /* Video */
    .lookbook .videoContainer.-full video {
        min-height: 40vh;
    }

    /* CTA */
    .lookbook .line-cta {
        min-height: 250px;
        padding: var(--spacing-lg) 15px;
    }

    .lookbook .line-cta a {
        padding: 14px 30px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    /* Flickity arrows mobile - sans fond */
    .lookbook .flickity-prev-next-button {
        width: 36px;
        height: 36px;
    }

    .lookbook .flickity-prev-next-button.previous {
        left: 10px;
    }

    .lookbook .flickity-prev-next-button.next {
        right: 10px;
    }
}
/* RESPONSIVE - SMALL MOBILE (< 480px) */
@media (max-width: 479px) {
    .lookbook .line-margin {
        margin-bottom: 5px;
    }

  .lookbook .line-intro .img-container img {
        height: auto;
        min-height: auto;
}

    .lookbook .line-flex,
    .lookbook .line-2-img,
    .lookbook .line-2-3-img {
        gap: 5px;
        padding: 0 5px;
    }


    .lookbook .line-scroll {
        padding: 0 5px;
    }

   .lookbook .beijos-cta-header {
    padding: 12px 28px;
    font-size: 10px;
    letter-spacing: 1px;
    bottom: 5%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

    .lookbook .title-intro {
        font-size: 12px;
        max-width: 300px;
    }

    .lookbook .libelle a {
        font-size: 9px;
        line-height: 1.6;
    }

    .lookbook .line-cta a {
        padding: 12px 24px;
        font-size: 9px;
    }

    /* Flèches encore plus petites sur très petit écran */
    .lookbook .flickity-prev-next-button {
        width: 30px;
        height: 30px;
    }
}

/*ANIMATIONS & TRANSITIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lookbook .line {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation for cells */
.lookbook .line-flex .cell:nth-child(1) { animation-delay: 0.1s; }
.lookbook .line-flex .cell:nth-child(2) { animation-delay: 0.2s; }
.lookbook .line-flex .cell:nth-child(3) { animation-delay: 0.3s; }

/*  UTILITY CLASSES*/
.lookbook .u-center-abs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lookbook .depth-1 {
    z-index: 1;
}

/* Ensure picture elements fill container */
.lookbook picture {
    display: block;
    width: 100%;
    /* height: 100%; */
}

.lookbook picture img {
    display: block;
}

/* Link reset */
.lookbook a {
    color: inherit;
    text-decoration: none;
}

/* Focus states for accessibility */
.lookbook a:focus-visible,
.lookbook button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* STRUCTURE PRINCIPALE */
.lookbook .line-mosaic-3-1 {
    display: flex !important;
    gap: 5px;
    padding: 0 5px;
    align-items: stretch;
}

/* COLONNE GAUCHE : flex:1 */
.lookbook .mosaic-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* COLONNE DROITE : flex:1 — même largeur que la gauche */
.lookbook .mosaic-col-right {
    flex: 1;
    position: relative;
    display: flex;
}

/* ---- Grande image HAUT gauche ---- */
.lookbook .mosaic-cell-top {
    position: relative;
    width: 100%;
}

.lookbook .mosaic-cell-top .img-container {
    width: 100%;
    aspect-ratio: 4/3; /* paysage */
}

.lookbook .mosaic-cell-top .img-container picture,
.lookbook .mosaic-cell-top .img-container picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lookbook .mosaic-row-bottom {
    display: flex !important;
    flex-direction: row !important;
    gap: 5px !important;
}

.lookbook .mosaic-cell-small {
    flex: 1 !important;
    width: auto !important;
}

.lookbook .mosaic-col-right > a {
    display: flex !important;
    flex: 1 !important;
    width: 100% !important;
}

.lookbook .mosaic-col-right .img-container {
    flex: 1 !important;
    display: flex !important;
    height: 100% !important;
}

.lookbook .mosaic-col-right .img-container picture {
    flex: 1 !important;
    display: flex !important;
    height: 100% !important;
}

.lookbook .mosaic-col-right .img-container picture img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ---- Grande image DROITE pleine hauteur ---- */
.lookbook .mosaic-col-right > a {
    display: flex;
    flex: 1;
    position: relative;
    width: 100%;
}

.lookbook .mosaic-col-right .img-container {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.lookbook .mosaic-col-right .img-container picture {
    flex: 1;
    display: flex;
}

.lookbook .mosaic-col-right .img-container picture img {
    flex: 1;
    object-fit: cover;
    width: 100%;
    min-height: 100%;
}

/* RESPONSIVE - TABLET (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .lookbook .line-mosaic-3-1 {
        min-height: auto;
    }

    .lookbook .mosaic-cell-top .img-container {
        aspect-ratio: 4/3;
    }

    .lookbook .mosaic-cell-small .img-container {
        aspect-ratio: 2/3;
    }
}

/* RESPONSIVE - MOBILE (< 767px) */
@media (max-width: 767px) {
    .lookbook .line-mosaic-3-1 {
        flex-direction: column;
        padding: 0 5px;
    }

    .lookbook .mosaic-col-left {
        flex: none;
    }

    /* Grande image haut : paysage sur mobile */
    .lookbook .mosaic-cell-top .img-container {
        aspect-ratio: 4/3;
    }

    /* Les 2 petites restent côte à côte en portrait */
    .lookbook .mosaic-row-bottom {
        flex: none;
    }

    .lookbook .mosaic-cell-small .img-container {
        aspect-ratio: 2/3;
    }

    /* Grande image droite pleine largeur */
    .lookbook .mosaic-col-right {
        flex: none;
    }

    .lookbook .mosaic-col-right .img-container {
        aspect-ratio: 2/3;
        min-height: auto;
    }

    .lookbook .mosaic-col-right > a {
        flex-direction: column;
    }
}

/* RESPONSIVE - SMALL MOBILE (< 479px) */
@media (max-width: 479px) {
    .lookbook .line-mosaic-3-1 {
        gap: 5px;
    }
}

.lookbook .line-scroll-padded {
    padding: 15px 15px;
}

/* STYLE MAGAZINE */
.lookbook .line-magazine {
    padding: 32px;
}

@media (max-width: 1024px) {
    .lookbook .line-magazine {
        padding: 15px !important;
    }
}

.lookbook .magazine-header,
.lookbook .magazine-footer {
font-family: 'Gyst';
   display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #000000;
    margin-bottom: 5px;
  }

.lookbook .magazine-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.lookbook .magazine-img-wrap {
    position: relative;
}

.lookbook .magazine-libelle {
    padding: 10px 0;
}

.lookbook .magazine-libelle .libelle a {
    color: var(--color-text);
    font-size: 11px;
    letter-spacing: 1px;
}

/* Mobile */
@media (max-width: 767px) {

    .lookbook .magazine-images {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .lookbook .magazine-header,
    .lookbook .magazine-footer {
        font-size: 9px;
        padding: 2px 2px;
    }
}

.lookbook .line-mosaic-3-1 .mosaic-col-left,
.lookbook .line-mosaic-3-1 .mosaic-col-right {
    width: auto !important;
}

/* Logo centré au milieu de la cellule texture - desktop */
.lookbook .cell02 .img-container {
    position: relative;
}

.lookbook .beijos-cta-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 320px;
    width: 100%;
    display: block;
    z-index: 5;
}

/* Masquer le CTA mobile sur desktop */
.lookbook .beijos-cta-mobile-only {
    display: none !important;
}

/* Mobile & Tablet */
@media (max-width: 1024px) {

    /* Masquer cell02 (texture) */
    .lookbook .line-2-3-img-first-full .cell02 {
        display: none !important;
        flex: 0 !important;
        width: 0 !important;
        overflow: hidden !important;
    }

    /* CTA superposé en bas de header-solar */
    .lookbook .beijos-cta-mobile-only {
        display: block !important;
        position: absolute;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        z-index: 10;
    }

    /* cell01 prend toute la largeur */
    .lookbook .line-2-3-img-first-full .cell01 {
        flex: 1 !important;
        width: 100% !important;
    }
}

.lookbook .intro-picto {
    display: flex;
    justify-content: center;
    padding: 0px 0 20px;
}

.lookbook .intro-picto img {
    width: 90px;
    height: auto;
    display: block;
}

/* Masquer sur desktop */
@media (min-width: 1025px) {
    .lookbook .hidden-d {
        display: none !important;
    }
}

/* Masquer sur mobile ET tablet */
@media (max-width: 1024px) {
    .lookbook .hidden-m {
        display: none !important;
    }
}

.lookbook .libelle-noir .libelle a {
    color: #000000;
    text-shadow: none;
}

/* NO-GAP - toutes combinaisons */
.lookbook .no-gap,
.lookbook .line-flex.no-gap,
.lookbook .line-2-img.no-gap,
.lookbook .line-flex.line-2-img.no-gap,
.lookbook .line-flex.line-2-3-img.no-gap {
    gap: 0 !important;
    padding: 0 !important;
}

.lookbook .no-gap .cell {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 1024px) {
    .lookbook .no-gap,
    .lookbook .line-flex.no-gap,
    .lookbook .line-2-img.no-gap,
    .lookbook .line-flex.line-2-img.no-gap {
        gap: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 479px) {
    .lookbook .no-gap,
    .lookbook .line-flex.no-gap,
    .lookbook .line-2-img.no-gap,
    .lookbook .line-flex.line-2-img.no-gap {
        gap: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 1024px) {
    .lookbook .line-flex.line-2-img.no-gap {
        margin-left: -5px !important;
        margin-right: -5px !important;
        width: calc(100% + 10px) !important;
    }
}