@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;700&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;
}

.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: var(--color-primary);
}

/* 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: 900px !important;
    margin: 0 auto;
    color: var(--color-text);
    padding: 20px;
}

.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%;
    height: 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;
    }

    /* Slider desktop = flex grid pleine largeur avec 5px gaps */
    .lookbook .line-slider-only-mob {
        display: flex;
        justify-content: center;
        gap: 5px;
        padding: 0;
        width: 100%;
    }

    .lookbook .line-slider-only-mob .cell {
        width: calc(33.333% - 3.33px);
        flex: none;
    }

    /* 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;
}