/*** Hero ***/
.hero {
    background: linear-gradient(90deg,rgba(254, 251, 246, 1) 50%, rgba(247, 242, 239, 1) 50%);
    padding-top: var(--pm-2xl);
    padding-bottom: var(--pm-3xl);
}
/* ── Colonne image ── */
.hero--visual {
    position: relative;
    background-color: var(--color-beige);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* Slides */
.hero--slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}
.hero--slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
/* Effet zoom sur l'image active */
.hero--slide img {
    width: 78%;
    max-width: 480px;
    object-fit: contain;
    transform: scale(1.04);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity  0.55s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.hero--slide.is-active img {
    transform: scale(1);
}
/* Navigation carrousel */
.hero--nav {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.hero--nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-mid);
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
    border: 1px solid var(--color-marroon);
    border-radius: var(--radius-true);
}
.hero--nav-btn:hover { color: var(--color-leather); border-color: var(--color-leather); transform: scale(1.1); }
.hero--nav-btn svg { display: block; }
.hero--nav-label {
    white-space: nowrap;
}
/* Dots */
.hero--dots {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}
.hero--dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-mouse);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.hero--dot.is-active {
    background: var(--color-leather);
    transform: scale(1.35);
}
/* ── Colonne infos ── */
.hero--info {
    background-color: var(--color-creme);
    padding: var(--pm-2xl);
    border-left: 1px solid var(--color-border);
}
/* CTA */
.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}




/*** Détails ***/
.section-tab.margin-top-negative {
    margin-top: -80px;
}
#details {
    background-color: var(--color-beige);
}
.scroll-horizontal {
    overflow: scroll;
    display: flex;
    gap: var(--pm-md);
    margin-bottom: var(--pm-2xl);
    padding-left: var(--pm-xl);
}
.matiere {
    min-width: 300px;
}
.design {
    min-width: 360px;
    margin-left: -160px;
    z-index: 0;
}
.fabrication {
    min-width: 410px;
    margin-left: var(--pm-5xl);
}
.polaroid-terrasse {
    align-self: end;
    z-index: 1;
    margin-left: -80px;
}
.text {
    margin-left: var(--pm-4xl);
    margin-top: var(--pm-md);
    min-width: 300px;
}
.details--mobile { display: none; }
::-webkit-scrollbar {
    display: none;
}
.duree--mobile {
    display: none;
}


/*** Storytelling ***/
#storytelling {
    background-color: var(--color-creme);
}
.quotidien h2 {
    width: 80%;
    margin-bottom: var(--pm-xl);
}
.quotidien p {
    width: 92%;
}
.postit-visuel--park,
.postit-visuel--sac {
    margin-top: -210px;
}
.duree {
    margin-left: var(--pm-4xl);
    margin-right: var(--pm-3xl);
    margin-top: var(--pm-xl);
}
.visuel--street--mobile {
    display: none;
}
/* What's in my LUA ? */
.whats-in-my-lua {
    margin-top: var(--pm-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.titre {
    text-align: center;
}
.lua-bag-wrapper {
    position: relative;
    width: 550px;
    height: 571px;
    margin-bottom: 1.5rem;
}
.lua-bag-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.lua-bag-img.active {
    opacity: 1;
}
.lua-command {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: var(--pm-md);
}
.lua-objects-label {
    margin: var(--pm-none);
}
.lua-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 130px;
    border: 1px solid var(--color-marroon);
    border-radius: var(--radius-true);
}
.lua-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
}
.lua-btn:hover { background-color: transparent; color: var(--color-leather); }
.lua-btn:disabled { opacity: 0.25; cursor: default; color: var(--color-grey); }
.lua-btn:disabled:hover { background-color: transparent; color: var(--color-grey); }








/*** RESPONSIVE ***/

/* Tablettes */
@media (max-width: 1199px) {
    /* Détails */
    .details--text {
        margin-bottom: var(--pm-xl);
    }

    /* Storytelling */
    .postit-visuel--park {
        display: none;
    }
    .visuel--street {
        margin-top: var(--pm-xl);
    }
    .postit-visuel--sac img {
        margin-left: var(--pm-2xl);
    }
    .duree {
        margin-left: var(--pm-2xl);
        margin-top: var(--pm-3xl);
        margin-right: var(--pm-none);
    }
}
@media (max-width: 1010px) {
    /* Storytelling */
    .quotidien h2, .quotidien p {
        width: 100%;
    }
    .quotidien {
        margin-bottom: var(--pm-xl);
    }
    .postit-visuel--sac,
    .visuel--street {
        display: none;
    }
    .visuel--street--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .duree--mobile {
        margin-top: var(--pm-xl);
        display: block;
    }
}

/* Mobiles */
@media (max-width: 767px) {
    /* Hero */
    .hero {
        background: linear-gradient(180deg,rgba(254, 251, 246, 1) 35%, rgba(247, 242, 239, 1) 35%);
        padding-top: var(--pm-none);
    }
    .hero--info {
        padding-left: var(--pm-none);
        padding-right: var(--pm-none);
        padding-top: var(--pm-xl);
        padding-bottom: var(--pm-none);
        background-color: transparent;
    }
    .hero--info h1 {
        margin-top: var(--pm-md);
    }
    .hero--visual {
        height: 300px;
        background-color: transparent;
    }
    .hero--slide {
        top: -40px;
    }
    /* Détails */
    .scroll-horizontal.desktop {
        display: none;
    }
    .details--mobile {
        display: block;
    }
    .details--mobile img {
        width: 100%;
        height: auto;
        margin-top: var(--pm-xl);
        margin-bottom: var(--pm-xl);
    }

    /* Storytelling */
    .visuel--street--mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .visuel--street--mobile img:first-child {
        width: 100%;
        height: auto;
    }
    .visuel--street--mobile > img:last-child {
        margin-top: -160px;
        width: 80%;
        height: auto;
    }
    .lua-bag-wrapper {
        width: 100%;
        height: 340px;
    }
    .informations {
        order: 1;
        margin-top: var(--pm-xl);
    }
}