/* ============================================
   CSS DÉDIÉ PAGE VASQUES
   ============================================ */

body {
    background: #f5f5f5;
}

/* Sous-header catégorie */
.vasque-subheader {
    padding: clamp(5rem, 7vw, 6rem) clamp(3rem, 5vw, 5rem) 0.5rem;
    background: #f5f5f5;
}

.vasque-category {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    color: #666;
    font-weight: 400;
}

/* Barre d'onglets produits */
.vasque-tabs {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 3rem);
    padding: clamp(5rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem) 1rem;
    background: #f5f5f5;
}

.vasque-tab {
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 400;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.vasque-tab strong {
    font-weight: 600;
    color: inherit;
}

.vasque-tab:hover {
    color: #333;
    border-color: #ddd;
}

.vasque-tab.active {
    color: #333;
    border-color: #000;
    background: white;
}

/* Contenu des onglets */
.vasque-content {
    display: none;
}

.vasque-content.active {
    display: block;
}

/* ============================================
   SECTION GALERIE AVEC IMAGES EMPILÉES + TEXTE STICKY
   ============================================ */

.vasque-gallery-section {
    display: flex;
    gap: clamp(3rem, 5vw, 5rem);
    padding: clamp(1rem, 2vw, 2rem) clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
    background: #f5f5f5;
    align-items: flex-start;
}

/* Miniatures de navigation sticky */
.vasque-nav-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    flex-shrink: 0;
}

.vasque-nav-thumb {
    width: 110px;
    height: 90px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.vasque-nav-thumb:hover {
    opacity: 0.8;
}

.vasque-nav-thumb.active {
    opacity: 1;
    border-color: #5a5a3a;
}

.vasque-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Colonne des images empilées */
.vasque-images-stack {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vasque-stack-item {
    width: 100%;
}

.vasque-stack-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Texte sticky à droite */
.vasque-gallery-text {
    flex: 1;
    max-width: 480px;
    padding-top: 0.5rem;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.vasque-gallery-title {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #333;
    margin: 0 0 0.25rem 0;
    text-align: left;
}

.vasque-gallery-title strong {
    font-weight: 600;
}

.vasque-gallery-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #666;
    margin: 0 0 2rem 0;
    font-style: italic;
    text-align: left;
}

/* Stats en ligne */
.vasque-stats-inline {
    display: flex;
    gap: clamp(1.2rem, 2.5vw, 2.5rem);
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.vasque-stats-inline .vasque-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.vasque-stats-inline .vasque-stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.vasque-stats-inline .vasque-stat-label {
    font-size: clamp(0.45rem, 0.6vw, 0.6rem);
    color: #888;
    letter-spacing: 0.02em;
    margin-top: 0.3rem;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Images textures pour VasqueProfil */
.vasque-texture-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vasque-texture-grid {
    display: flex;
    gap: 0.4rem;
}

.vasque-texture-grid img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 0;
}

.vasque-texture-more {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Description */
.vasque-gallery-description {
    margin-bottom: 1.5rem;
}

.vasque-gallery-description p {
    font-size: clamp(0.92rem, 1.05vw, 1rem);
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.vasque-gallery-description strong {
    color: #333;
    font-weight: 600;
}

/* Section Détails (legacy, pour compatibilité) */
.vasque-details {
    display: flex;
    gap: clamp(3rem, 5vw, 6rem);
    padding: clamp(3rem, 5vw, 5rem);
    background: #f5f5f5;
    align-items: flex-start;
}

.vasque-details-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vasque-details-image {
    position: relative;
    width: 100%;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
}

.vasque-details-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    color: #666;
}

.vasque-details-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.vasque-cta-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2.5rem;
    background: black;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.vasque-cta-btn:hover {
    background: #4a4a2a;
    transform: translateY(-2px);
}

/* Détails droite */
.vasque-details-right {
    flex: 1;
}

.vasque-description {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.8;
    color: #444;
    margin: 0 0 3rem 0;
}

/* Stats */
.vasque-stats {
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.vasque-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vasque-stat-number {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.vasque-stat-label {
    font-size: clamp(0.75rem, 0.95vw, 0.9rem);
    color: #888;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* Bandeau projets */
.vasque-projets-banner {
    background: white;
    padding: 2rem clamp(3rem, 5vw, 5rem);
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.vasque-projets-banner p {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: #666;
    margin: 0;
    letter-spacing: 0.03em;
}

.vasque-projets-banner strong {
    color: #333;
    font-weight: 700;
}

/* Slideshow */
.vasque-slideshow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
    background: #f5f5f5;
    overflow: hidden;
}

.slideshow-container {
    width: 90%;
    max-width: 1400px;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.slide-item {
    flex: 0 0 calc(50% - 0.75rem);
    aspect-ratio: 16/9;
    border-radius: 0;
    overflow: hidden;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.4s ease;
}

.slide-item.active {
    opacity: 1;
    transform: scale(1);
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333;
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slideshow-btn:hover {
    background: #333;
    color: white;
}

/* ============================================
   SECTIONS BLOCS (Image + Texte)
   ============================================ */

.vasque-section-bloc {
    padding: clamp(3rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem);
    background: #f5f5f5;
}

.vasque-bloc-content {
    display: flex;
    gap: clamp(3rem, 5vw, 6rem);
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.vasque-bloc-image {
    flex: 0 0 50%;
}

.vasque-bloc-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.vasque-bloc-text {
    flex: 1;
    padding-top: 1rem;
}

.vasque-bloc-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    margin-left: -60px;
}

.vasque-bloc-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: #888;
    margin: 0 0 2rem 0;
    margin-left: -60px;
    font-style: italic;
}

.vasque-bloc-body {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: #555;
}

.vasque-bloc-body p {
    margin: 0 0 1rem 0;
}

.vasque-bloc-body strong {
    color: #333;
    font-weight: 600;
}

/* Section inversée (texte à gauche, image à droite) */
.vasque-section-bloc.reverse {
    background: #f5f5f5;
}

.vasque-section-bloc.reverse .vasque-bloc-content {
    flex-direction: row;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .vasque-details {
        flex-direction: column;
    }
    
    .vasque-details-left {
        flex: none;
        width: 100%;
    }
    
    .vasque-stats {
        justify-content: space-between;
    }
    
    .vasque-bloc-content {
        flex-direction: column !important;
    }
    
    .vasque-bloc-image {
        flex: none;
        width: 100%;
    }
    
    .vasque-section-bloc.reverse .vasque-bloc-content {
        flex-direction: column-reverse !important;
    }
    
    /* Galerie responsive tablette */
    .vasque-gallery-section {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .vasque-nav-thumbnails {
        flex-direction: row;
        position: relative;
        top: 0;
        width: 100%;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        order: 1;
    }
    
    .vasque-nav-thumb {
        width: 70px;
        height: 55px;
        flex-shrink: 0;
    }
    
    .vasque-images-stack {
        flex: none;
        width: 100%;
        order: 2;
    }
    
    .vasque-gallery-text {
        flex: none;
        width: 100%;
        max-width: 100%;
        position: relative;
        top: 0;
        order: 3;
    }
    
    .vasque-thumbnails {
        flex-direction: row;
        width: 100%;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .vasque-thumb {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .vasque-main-image {
        max-width: 100%;
        order: 1;
    }
}

@media (max-width: 768px) {
    .vasque-subheader {
        padding: 4.5rem 1.5rem 0.5rem;
    }
    
    .vasque-tabs {
        padding: 5rem 1.5rem 1rem;
        overflow-x: auto;
    }
    
    .vasque-tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .vasque-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .vasque-details {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .vasque-stats {
        gap: 1.5rem;
    }
    
    .vasque-stat-number {
        font-size: 2.5rem;
    }
    
    /* Galerie responsive mobile */
    .vasque-nav-thumbnails {
        gap: 0.4rem;
    }
    
    .vasque-nav-thumb {
        width: 60px;
        height: 50px;
    }
    
    .vasque-stats-inline {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .vasque-stats-inline .vasque-stat-number {
        font-size: 2.5rem;
    }
    
    .vasque-gallery-title {
        font-size: 1.8rem;
    }
    
    .vasque-gallery-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    
    /* Centrer titres et textes sur mobile */
    .vasque-gallery-title,
    .vasque-gallery-subtitle,
    .vasque-gallery-description {
        text-align: center;
    }
    
    .vasque-cta-btn {
        align-self: center;
    }
    
    /* Centrer les sections blocs */
    .vasque-bloc-text h2 {
        text-align: center;
        margin-left: 0;
    }
    
    .vasque-bloc-subtitle {
        text-align: center;
        margin-left: 0;
    }
    
    .vasque-bloc-body {
        text-align: center;
    }
    
    .vasque-bloc-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .vasque-hero-title {
        font-size: 1.8rem;
    }
    
    .vasque-stats,
    .vasque-stats-inline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        width: 100%;
    }
    
    .vasque-stats-inline .vasque-stat-number {
        font-size: 1.8rem;
    }
    
    .vasque-stats-inline .vasque-stat-label {
        font-size: 0.5rem;
    }
    
    .vasque-stat {
        align-items: center;
        text-align: center;
    }
    
    /* Centrer les titres sur mobile */
    .vasque-gallery-title,
    .vasque-gallery-subtitle,
    .vasque-gallery-description {
        text-align: center;
    }
    
    .vasque-gallery-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }
    
    .vasque-cta-btn {
        align-self: center;
    }
    
    /* Centrer les titres des sections blocs sur mobile */
    .vasque-bloc-text h2 {
        text-align: center;
        margin-left: 0;
    }
    
    .vasque-bloc-subtitle {
        text-align: center;
        margin-left: 0;
    }
    
    .vasque-bloc-body {
        text-align: center;
    }
    
    .vasque-bloc-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   SECTION FAQ / ACCORDEON
   ============================================ */

.vasque-faq-section {
    background: #f5f5f5;
    padding: clamp(3rem, 5vw, 5rem) 0;
}

.vasque-faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.vasque-faq-item {
    background: transparent;
    border-bottom: 1px solid #000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vasque-faq-item:first-child {
    border-top: 1px solid #000;
}

.vasque-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.2rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2.5rem);
    background: transparent;
    border: none;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 500;
    color: #000;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.vasque-faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.vasque-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #666;
}

.vasque-faq-item.active .vasque-faq-icon {
    transform: rotate(45deg);
}

.vasque-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 clamp(1.5rem, 3vw, 2.5rem);
}

.vasque-faq-item.active .vasque-faq-answer {
    max-height: 500px;
    padding: 0 clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
}

.vasque-faq-answer p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .vasque-faq-question {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .vasque-faq-answer {
        padding: 0 1.2rem;
    }
    
    .vasque-faq-item.active .vasque-faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

/* ============================================
   SECTION SOLUTIONS DE POSE
   ============================================ */

.vasque-solutions-pose {
    padding: clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
    background: #f5f5f5;
}

.vasque-solutions-wrapper {
    display: flex;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: flex-start;
}

.vasque-solutions-left {
    flex: 1;
    max-width: 55%;
}

.vasque-solutions-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.vasque-solutions-text {
    margin-bottom: 1.5rem;
}

.vasque-solutions-text p {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.vasque-solutions-text p:last-child {
    margin-bottom: 0;
}

.vasque-solutions-small-img {
    margin-top: 1.5rem;
}

.vasque-solutions-small-img img {
    max-width: 100%;
    height: auto;
}

.vasque-solutions-right {
    flex: 1;
    max-width: 45%;
}

.vasque-solutions-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive Solutions de pose */
@media (max-width: 968px) {
    .vasque-solutions-wrapper {
        flex-direction: column;
    }
    
    .vasque-solutions-left,
    .vasque-solutions-right {
        max-width: 100%;
    }
    
    .vasque-solutions-right img {
        max-width: 500px;
    }
}

/* ============================================
   SECTION POIDS ET DIMENSIONS
   ============================================ */

.vasque-dimensions-section {
    padding: clamp(1rem, 2vw, 2rem) clamp(3rem, 5vw, 5rem) clamp(3rem, 5vw, 5rem);
    background: white;
}

.vasque-dimensions-wrapper {
    display: flex;
    gap: clamp(6rem, 12vw, 15rem);
    align-items: flex-start;
}

.vasque-dimensions-left {
    flex: 0 0 auto;
    max-width: 340px;
    margin-left: clamp(4rem, 8vw, 10rem);
}

.vasque-dimensions-left h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 0.6rem;
}

.vasque-dimensions-table {
    width: 100%;
    max-width: 340px;
    border-collapse: collapse;
}

.vasque-dimensions-table thead th {
    text-align: left;
    padding: 0.4rem 0.6rem;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.vasque-dimensions-table thead th:first-child {
    padding-left: 0;
}

.vasque-dimensions-table tbody td {
    padding: 0.5rem 0.6rem;
    font-size: clamp(0.75rem, 0.85vw, 0.85rem);
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.vasque-dimensions-table tbody td:first-child {
    padding-left: 0;
}

.vasque-dimensions-table .vasque-ref {
    font-weight: 600;
    color: #333;
    font-style: italic;
}

.vasque-dimensions-images {
    flex: 1;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: flex-start;
}

.vasque-dim-img {
    text-align: center;
}

.vasque-dim-img img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.vasque-dim-label {
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    color: #999;
    font-style: italic;
    margin: 0;
}

/* Responsive Dimensions */
@media (max-width: 968px) {
    .vasque-dimensions-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .vasque-dimensions-images {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .vasque-dim-img img {
        max-width: 200px;
    }
}
