/* ═══ HERO VIDÉO ═══════════════════════════════════════════ */
.hero-video-section {
    width: 100%;
    position: relative;
}

.hero-video-wrap {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 700px;
    animation: heroFadeUp .8s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(255,255,255,.75);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,.5);
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.hero-subtitle {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    margin-bottom: 36px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #fff;
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.hero-btn-primary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
}

.hero-btn-secondary {
    background: rgba(255,255,255,.15);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(8px);
    transition: all .25s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-2px);
}

.hero-scroll-btn {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.4);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    animation: bounce 2s infinite;
    transition: background .2s;
}

.hero-scroll-btn:hover {
    background: rgba(255,255,255,.3);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══ LOOKBOOK ══════════════════════════════════════════════ */
.lookbook-section {
    max-width: 1440px;
    margin: 80px auto;
    padding: 0 24px;
}

.lookbook-header {
    text-align: center;
    margin-bottom: 48px;
}

.lookbook-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #9e958a;
    margin-bottom: 12px;
}

.lookbook-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -.03em;
    margin-bottom: 10px;
}

.lookbook-subtitle {
    font-size: .95rem;
    color: #9e958a;
}

/* Grille asymétrique */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

/* Grande vidéo occupe 2 colonnes et 2 lignes */
.lookbook-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.lookbook-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    aspect-ratio: 9/16;
}

.lookbook-item--large {
    aspect-ratio: unset;
}

.lookbook-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.2,0,0,1);
}

.lookbook-item:hover .lookbook-video {
    transform: scale(1.04);
}

.lookbook-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.1) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background .3s;
}

.lookbook-item:hover .lookbook-item-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.2) 50%,
        transparent 100%
    );
}

.lookbook-tag {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 10px;
}

.lookbook-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    color: #1a1a1a;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    padding-left: 3px; /* centre visuellement l'icône play */
}

.lookbook-play-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.lookbook-play-btn.playing {
    padding-left: 0;
    background: #1a1a1a;
    color: #fff;
}

/* ═══ MODAL VIDÉO PLEIN ÉCRAN ═══════════════════════════════ */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
    padding: 20px;
}

.video-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    animation: modalScale .25s ease;
}

@keyframes modalScale {
    from { transform: scale(.95); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

.video-modal-content video {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background .2s;
}

.video-modal-close:hover { background: rgba(255,255,255,.3); }

/* ═══ RESPONSIVE ════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-video-wrap { height: 75vh; }

    .lookbook-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .lookbook-item--large {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .lookbook-item {
        aspect-ratio: 9/16;
    }
}

@media (max-width: 600px) {
    .hero-video-wrap   { height: 85vh; }
    .hero-title        { font-size: 2.6rem; }
    .hero-btn-primary,
    .hero-btn-secondary { padding: 12px 24px; font-size: .88rem; }

    .lookbook-section  { padding: 0 12px; margin: 48px auto; }
    .lookbook-grid     { grid-template-columns: 1fr; gap: 12px; }

    .lookbook-item--large {
        grid-column: 1;
        aspect-ratio: 16/9;
    }

    .lookbook-item { aspect-ratio: 9/16; }
}

/* ── Animation d'entrée après scroll hero ── */
#produits {
    scroll-margin-top: 80px;
}

.product-grid.hero-reveal .product-card {
    animation: heroReveal .5s cubic-bezier(.2,0,0,1) both;
}

.product-grid.hero-reveal .product-card:nth-child(1)  { animation-delay: .05s; }
.product-grid.hero-reveal .product-card:nth-child(2)  { animation-delay: .10s; }
.product-grid.hero-reveal .product-card:nth-child(3)  { animation-delay: .15s; }
.product-grid.hero-reveal .product-card:nth-child(4)  { animation-delay: .20s; }
.product-grid.hero-reveal .product-card:nth-child(5)  { animation-delay: .25s; }
.product-grid.hero-reveal .product-card:nth-child(6)  { animation-delay: .30s; }
.product-grid.hero-reveal .product-card:nth-child(n+7) { animation-delay: .35s; }

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.97);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

