/* boutique-style.css */

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    align-items: center;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    scroll-behavior: auto;
}

.gallery-container::-webkit-scrollbar { display: none; }

.circular-gallery {
    display: flex;
    gap: 30px;
    padding: 0 100px;
    height: 100%;
    align-items: center;
}

/* --- Style des Flèches --- */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.8);
    color: white;
    border: 2px solid var(--pink);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 45, 141, 0.3);
}

.nav-arrow:hover {
    background: var(--pink);
    box-shadow: 0 0 25px var(--pink);
}

.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

/* --- Cartes Maillots --- */
.gallery-item {
    position: relative;
    min-width: 300px;
    height: 480px;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    will-change: transform;
}

.gallery-item:hover { border-color: var(--pink); }

.gallery-img-container {
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-info {
    padding: 15px;
    text-align: center;
    height: 25%;
}

.gallery-info h3 { font-size: 1.1rem; margin-bottom: 5px; font-weight: 800; }
.gallery-info .price { color: var(--pink); font-weight: 900; margin-bottom: 10px; }

.btn-add-circular {
    background: white;
    color: black;
    border: none;
    padding: 8px 18px;
    font-weight: 900;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-add-circular:hover { background: var(--pink); color: white; }

/* ============================================================
   AJUSTEMENTS NAVBAR MOBILE (POUR TELEPHONE)
   ============================================================ */
@media (max-width: 768px) {
    .nav-arrow { display: none; }

    /* Fixe la largeur de la barre pour qu'elle ne déborde pas */
    .navbar-gooey {
        width: 95% !important;
        padding: 10px 15px !important;
        top: 10px !important;
    }

    /* Empêche le blob rose de créer un scroll horizontal bugué */
    .nav-blob {
        display: none !important;
    }

    /* Aligne mieux le logo et les liens */
    .nav-container {
        gap: 10px;
    }

    .logo-area img {
        height: 30px !important;
    }

    /* Resserre les liens pour que tout tienne sur une ligne */
    .nav-links {
        gap: 12px !important;
    }

    .nav-links li a {
        font-size: 0.75rem !important;
        letter-spacing: 0px !important;
    }

    /* Ajuste l'espace en haut de la page pour le titre */
    header.hero, main.container header {
        margin-top: 100px !important;
    }
}