/* --- STYLE DE BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #2a2a2a;
}

:root {
    --bleu-marine: #2C4A6B;
    --orange: #FF6B35;
    --gris-fonce: #2a2a2a;
    --gris-moyen: #333333;
    --gris-clair: #3d3d3d;
}

/* NAVIGATION */
nav {
    background: var(--bleu-marine);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    width: auto;
    border-radius: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--orange);
}

/* BOUTON CTA DANS LA NAVIGATION */
.nav-cta-btn {
    background: var(--orange);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    color: white !important;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #1a2f47 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-creations {
    padding: 60px 20px;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero .orange { color: var(--orange); }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; }

.btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: white;
    color: var(--bleu-marine);
}

.btn-large {
    font-size: 1.1rem;
    padding: 15px 40px;
}

/* SECTIONS COMMUNES */
section { padding: 60px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: white; }

/* À PROPOS */
.about { background: var(--gris-fonce); }
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text h3 { color: var(--orange); margin-bottom: 1rem; }
.about-text p { color: #d0d0d0; margin-bottom: 1rem; }
.about-image {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* MENTION COMPLÉMENTAIRE DANS À PROPOS */
.bonus-service {
    background: var(--gris-moyen);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
    margin-top: 2rem;
}
.bonus-service h4 {
    color: var(--orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.bonus-service p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

/* MES CRÉATIONS */
.creations { background: var(--gris-moyen); }
.creations-page { 
    background: var(--gris-moyen); 
    padding-top: 40px;
}
.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* 1 seul résultat : centré, largeur limitée */
.creations-grid.grid-1 {
    grid-template-columns: minmax(320px, 420px);
    justify-content: center;
}

/* 2 résultats : 2 colonnes centrées */
.creations-grid.grid-2 {
    grid-template-columns: repeat(2, minmax(320px, 420px));
    justify-content: center;
}

/* =========================
   FILTRES PAR CATÉGORIE
   ========================= */
.filter-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gris-clair);
    border: 2px solid #4a4a4a;
    color: #b0b0b0;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--orange);
    color: white;
    background: rgba(255, 107, 53, 0.1);
}

.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.filter-icon {
    font-size: 1.1rem;
}

/* =========================
   BARRE DE RECHERCHE
   ========================= */
.search-container {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gris-clair);
    border: 2px solid #4a4a4a;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: border-color 0.3s;
}

.search-box:focus-within {
    border-color: var(--orange);
}

.search-icon {
    color: #999;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
    padding: 0;
}

.search-box input::placeholder {
    color: #999;
}

.clear-search {
    background: var(--orange);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.clear-search:hover {
    background: #e55a25;
}

.search-info {
    text-align: center;
    margin-top: 0.8rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Message aucun résultat */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gris-clair);
    border-radius: 10px;
    margin-bottom: 2rem;
}

.no-results p {
    color: #d0d0d0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.no-results-hint {
    color: #999;
    font-size: 0.9rem;
}

.no-results a {
    color: var(--orange);
    text-decoration: underline;
}

.no-results a:hover {
    color: #ff8555;
}
.creation-item {
    background: var(--gris-clair);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.creation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.5);
}
.creation-img {
    width: 100%;
    height: 250px;
    background: #4a4a4a;
    cursor: pointer;
    position: relative;
}
.creation-img img { width: 100%; height: 100%; object-fit: cover; }
.click-badge {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(255,107,53,0.9); color: white;
    padding: 4px 8px; font-size: 0.7rem; border-radius: 4px;
}
.disponibilite-badge {
    position: absolute; bottom: 10px; left: 10px;
    color: white;
    padding: 4px 8px; font-size: 0.7rem; border-radius: 4px;
    font-weight: bold;
}
.disponible {
    background: rgba(34, 197, 94, 0.9); /* Vert */
}
.indisponible {
    background: rgba(107, 114, 128, 0.9); /* Gris */
}

/* =========================
   BADGES DE CATÉGORIE
   ========================= */
.categorie-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categorie-badge.accessoires {
    background: rgba(139, 92, 246, 0.9); /* Violet */
}

.categorie-badge.autre {
    background: rgba(59, 130, 246, 0.9); /* Bleu */
}

.categorie-badge.insert {
    background: rgba(255, 107, 53, 0.9); /* Orange - couleur Antho3DStudio */
}

.creation-info { 
    padding: 1.5rem; 
}
.creation-info h3 { 
    color: white; 
    margin-bottom: 0.5rem; 
}
.creation-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0.8rem 0;
    font-size: 0.85rem;
}
.creation-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
}
.creation-detail-item .icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}
.zone-info {
    background: rgba(44,74,107,0.3);
    border: 1px solid rgba(44,74,107,0.6);
    border-left: 3px solid var(--bleu-marine);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.zone-info strong { color: white; }

.zone-info span { 
    font-size: 0.82rem; 
    color: rgba(255,255,255,0.5); 
}

.mention-coloris {
    font-size: 0.72rem;
    color: #888;
    font-style: italic;
    margin: 0.4rem 0 0.2rem;
    line-height: 1.3;
}

.creation-price { 
    font-size: 1.5rem; 
    color: var(--orange); 
    font-weight: bold; 
    margin-top: 1rem; 
}

/* AUTRES SERVICES (SECTION COMPACTE) */
/* =============================================
   AVIS CLIENTS
============================================= */
.avis-section {
    background: var(--gris-fonce);
    padding: 5rem 2rem;
}

.avis-intro {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

.avis-card {
    background: var(--gris-moyen);
    border-radius: 14px;
    padding: 1.8rem;
    border-top: 3px solid var(--orange);
    transition: transform 0.2s;
}

.avis-card:hover { transform: translateY(-4px); }

.avis-stars {
    color: var(--orange);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.avis-texte {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.avis-auteur {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avis-nom {
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.avis-jeu {
    font-size: 0.78rem;
    color: var(--orange);
    background: rgba(255,107,53,0.1);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-weight: 600;
}

.avis-cta-text {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.avis-cta-text a {
    color: var(--orange);
    text-decoration: none;
}

.avis-cta-text a:hover { text-decoration: underline; }

/* =============================================
   PARTENAIRES / POINTS DE RETRAIT
============================================= */
.partenaires-section {
    background: var(--bleu-marine);
    padding: 5rem 2rem;
}

.partenaires-intro {
    text-align: center;
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 600px;
    margin: -2rem auto 3rem;
    line-height: 1.7;
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.partenaire-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.partenaire-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-3px);
}

.partenaire-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partenaire-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.partenaire-info h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.partenaire-info p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}

.partenaires-bientot {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    font-style: italic;
}

/* Cacher "bientôt" quand des partenaires sont présents */
.partenaires-grid:not(:empty) + .partenaires-bientot {
    display: none;
}

.autres-services {
    background: var(--gris-fonce);
    padding: 50px 20px;
}
.autres-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.autres-services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #d0d0d0;
    font-size: 1rem;
}
.autres-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}
.service-item {
    background: var(--gris-moyen);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service-img {
    width: 100%;
    height: 180px;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
    overflow: hidden;
}
.service-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
}
.service-info {
    padding: 1.2rem;
}
.service-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.service-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}
.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
   ENCART "VOIR MES CRÉATIONS"
   ========================= */
.voir-creations-box {
    background: linear-gradient(135deg, var(--bleu-marine) 0%, #1a2f47 100%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.voir-creations-box .box-content {
    flex: 1;
    min-width: 250px;
}

.voir-creations-box .box-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.voir-creations-box h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.voir-creations-box p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.voir-creations-box .btn {
    white-space: nowrap;
}

/* =========================
   LIGHTBOX GÉNÉRALE (IMAGES)
   ========================= */
.lightbox-overlay {
    display: none; 
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--gris-moyen);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--orange);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.lightbox-prev,
.lightbox-next {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #e55a25;
}

.lightbox-caption {
    color: #d0d0d0;
    text-align: center;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* =========================
   LIGHTBOX FORFAITS V2 - NOUVEAU DESIGN
   ========================= */
#forfaitsLightbox .lightbox-content {
    max-width: 1200px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 0;
    background: #1a1a1a;
}

.forfaits-container-v2 {
    width: 100%;
}

/* HEADER */
.forfaits-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid #333;
}

.forfaits-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 900;
}

.forfaits-subtitle {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.forfaits-info-banner {
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.4);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.forfaits-info-banner strong {
    color: white;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.forfaits-info-banner p {
    color: #d0d0d0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* GRILLE DES FORFAITS V2 */
.forfaits-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem 2rem;
    background: #1a1a1a;
}

.forfait-card-v2 {
    background: linear-gradient(145deg, #252525 0%, #1f1f1f 100%);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.forfait-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border-color: #444;
}

.forfait-titre-v2 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.forfait-description-v2 {
    color: #b0b0b0;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 50px;
}

.forfait-prix-box {
    background: linear-gradient(135deg, #2C4A6B 0%, #234063 100%);
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.prix-label {
    color: #b0b0b0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.prix-montant {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.forfait-estimation-box {
    text-align: center;
    padding: 0.8rem;
}

.estimation-label {
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
}

.estimation-montant {
    color: #d0d0d0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* SECTION INCLUS */
.inclus-section {
    background: #1f1f1f;
    padding: 2.5rem 2rem;
    border-top: 2px solid #333;
}

.inclus-section h3 {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.inclus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.inclus-card {
    background: #252525;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.inclus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.inclus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.inclus-titre {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.inclus-description {
    color: #b0b0b0;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* FOOTER */
.forfaits-footer {
    background: #1a1a1a;
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #333;
}

.footer-note {
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.btn-cta-orange {
    background: var(--orange);
    color: white;
    padding: 14px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-cta-orange:hover {
    background: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

/* Scrollbar pour la popup V2 */
#forfaitsLightbox .lightbox-content {
    scrollbar-width: thin;
    scrollbar-color: var(--orange) #1a1a1a;
}

#forfaitsLightbox .lightbox-content::-webkit-scrollbar {
    width: 10px;
}

#forfaitsLightbox .lightbox-content::-webkit-scrollbar-track {
    background: #1a1a1a;
}

#forfaitsLightbox .lightbox-content::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

#forfaitsLightbox .lightbox-content::-webkit-scrollbar-thumb:hover {
    background: #e55a25;
}

/* =========================
   CONTACT
   ========================= */
.contact {
    background: var(--gris-moyen);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #d0d0d0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gris-clair);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    background: var(--gris-moyen);
    color: white;
    border: 2px solid #4a4a4a;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Champ article readonly (panier) */
textarea[readonly] {
    background: #f5f5f5 !important;
    color: #333 !important;
    cursor: not-allowed;
}

button[type="submit"] {
    width: 100%;
    background: var(--orange);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
}

button[type="submit"]:hover {
    background: #e55a25;
}

/* =========================
   OPTIONS TYPE DE DEMANDE
   ========================= */
.demande-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.demande-option {
    cursor: pointer;
}

.demande-option input[type="radio"] {
    display: none;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gris-moyen);
    border: 2px solid #4a4a4a;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.demande-option input[type="radio"]:checked + .option-card {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.1);
}

.option-card:hover {
    border-color: #666;
}

.option-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.option-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.option-text strong {
    color: white;
    font-size: 1rem;
}

.option-text small {
    color: #999;
    font-size: 0.85rem;
}

/* =========================
   CONTACT INFOS
   ========================= */
.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gris-moyen);
}

.contact-info p {
    color: #d0d0d0;
    font-size: 1rem;
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--orange);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff8555;
}

/* =========================
   FOOTER
   ========================= */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 20px;
    font-size: 0.9rem;
}
footer a:link,
footer a:visited {
    color: white;
    text-decoration: none;
}

/* =========================
   RESPONSIVE - TABLETTES
   ========================= */
@media (max-width: 1024px) {
    .forfaits-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inclus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #forfaitsLightbox .lightbox-content {
        padding: 0;
    }
    
    .forfaits-header {
        padding: 2rem 1.5rem;
    }
    
    .forfaits-grid-v2 {
        padding: 2rem 1.5rem;
    }
    
    .inclus-section {
        padding: 2rem 1.5rem;
    }
    
    .about-content {
        gap: 2rem;
    }
}

/* =========================
   RESPONSIVE - MOBILE
   ========================= */
@media (max-width: 768px) {
    /* NAVIGATION MOBILE */
    nav .container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 10px 15px;
    }
    
    .logo-container {
        margin-bottom: 0.3rem;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    nav ul {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    nav li {
        white-space: nowrap;
    }
    
    /* BOUTON CTA NAV MOBILE */
    .nav-cta-btn {
        margin-top: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* HERO MOBILE */
    .hero {
        padding: 60px 20px;
    }
    
    .hero-creations {
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    /* À PROPOS MOBILE - CORRECTION PRINCIPALE */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        height: 300px;
        min-height: 300px;
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* FILTRES MOBILE */
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .filter-btn span:not(.filter-icon) {
        display: none;
    }
    
    .filter-btn .filter-icon {
        font-size: 1.3rem;
    }
    
    .filter-btn.active span:not(.filter-icon) {
        display: inline;
    }
    
    /* CRÉATIONS MOBILE */
    .creations-grid {
        grid-template-columns: 1fr;
    }
    
    .creation-img {
        height: 200px;
        min-height: 200px;
    }
    
    .creation-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* RECHERCHE MOBILE */
    .search-container {
        margin-bottom: 2rem;
    }
    
    .search-box {
        padding: 0.6rem 0.8rem;
    }
    
    .search-box input {
        font-size: 0.9rem;
    }
    
    .search-box input::placeholder {
        font-size: 0.85rem;
    }
    
    /* AUTRES SERVICES MOBILE */
    .autres-services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-img {
        height: 180px;
        min-height: 180px;
        overflow: hidden;
    }
    
    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* ENCART VOIR CRÉATIONS MOBILE */
    .voir-creations-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .voir-creations-box .box-content {
        min-width: auto;
    }
    
    /* FORFAITS V2 MOBILE */
    #forfaitsLightbox .lightbox-content {
        max-width: 95%;
    }
    
    .forfaits-header {
        padding: 1.5rem 1rem;
    }
    
    .forfaits-header h2 {
        font-size: 1.6rem;
    }
    
    .forfaits-info-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .forfaits-grid-v2 {
        padding: 1.5rem 1rem;
    }
    
    .forfait-card-v2 {
        padding: 1.5rem 1rem;
    }
    
    .forfait-titre-v2 {
        font-size: 1.1rem;
    }
    
    .prix-montant {
        font-size: 2rem;
    }
    
    .inclus-section {
        padding: 1.5rem 1rem;
    }
    
    .inclus-section h3 {
        font-size: 1.3rem;
    }
    
    .inclus-icon {
        font-size: 2.5rem;
    }
    
    .forfaits-footer {
        padding: 1.5rem 1rem;
    }
    
    /* CONTACT MOBILE */
    .contact-content {
        padding: 1.5rem;
    }
    
    /* OPTIONS FORMULAIRE MOBILE */
    .option-card {
        padding: 0.8rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
    }
    
    .option-text strong {
        font-size: 0.9rem;
    }
    
    .option-text small {
        font-size: 0.8rem;
    }
    
    /* TITRES GÉNÉRAUX */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

/* =========================
   RESPONSIVE - PETITS MOBILES
   ========================= */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    nav ul {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* FILTRES PETITS MOBILES */
    .filter-btn {
        padding: 0.5rem 0.6rem;
    }
    
    /* RECHERCHE PETITS MOBILES */
    .search-box input::placeholder {
        font-size: 0.8rem;
    }
    
    .search-icon {
        width: 18px;
        height: 18px;
    }
    
    /* FORFAITS V2 PETITS MOBILES */
    .forfaits-header h2 {
        font-size: 1.4rem;
    }
    
    .forfait-card-v2 {
        padding: 1.2rem 0.8rem;
    }
    
    .prix-montant {
        font-size: 1.8rem;
    }
    
    .inclus-icon {
        font-size: 2rem;
    }
    
    .btn-cta-orange {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ========================================
   SYSTÈME DE PANIER
   ======================================== */

/* Bouton Ajouter au panier sur les cartes */
.btn-panier {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin-top: 1rem;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-panier:hover {
    background: linear-gradient(135deg, #ff8c5a, #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-panier.btn-devis {
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
}

.btn-panier.btn-devis:hover {
    background: linear-gradient(135deg, #2c3e50, #1a2a3a);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.btn-panier.btn-indispo {
    background: #666;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-panier.btn-indispo:hover {
    transform: none;
    box-shadow: none;
}

/* Panier flottant */
.panier-flottant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.panier-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.panier-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.panier-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #1a2a3a;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.panier-bounce {
    animation: bounce 0.3s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Modal panier */
.panier-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.panier-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.panier-header {
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panier-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.panier-close {
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.panier-close:hover {
    opacity: 1;
}

.panier-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.panier-vide {
    text-align: center;
    color: #888;
    padding: 40px 20px;
    font-size: 1.1rem;
}

.panier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
}

.panier-item-info {
    flex: 1;
}

.panier-item-info strong {
    display: block;
    color: #1a2a3a;
    font-size: 1rem;
    margin-bottom: 4px;
}

.panier-item-prix {
    color: #FF6B35;
    font-size: 0.9rem;
    font-weight: 600;
}

.panier-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

.qty-value {
    min-width: 25px;
    text-align: center;
    font-weight: bold;
    color: #1a2a3a;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 5px;
}

.remove-btn:hover {
    opacity: 1;
}

.panier-footer {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    border-top: 1px solid #eee;
}

.panier-footer .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}

/* Notification */
.panier-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #1a2a3a;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    z-index: 3000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.panier-notification.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive panier */
@media (max-width: 600px) {
    .panier-flottant {
        bottom: 20px;
        right: 20px;
    }
    
    .panier-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .panier-modal-content {
        max-height: 90vh;
        margin: 10px;
    }
    
    .panier-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .panier-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .panier-footer {
        flex-direction: column;
    }
    
    .panier-notification {
        right: 15px;
        left: 15px;
        bottom: 90px;
        text-align: center;
    }
}

/* ========================================
   VIGNETTES CLIQUABLES - PAGE ACCUEIL
   ======================================== */
.creation-item-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--gris-moyen);
    border-radius: 8px;
}

.creation-item-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.creation-item-clickable:hover .voir-details-btn {
    background: var(--orange);
    color: white;
}

.creation-item-clickable .creation-img-preview {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.creation-item-clickable .creation-img-preview img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    object-position: top; /* Cela remontera l'image pour voir le haut en priorité */
    transition: transform 0.3s ease;
}

.creation-item-clickable:hover .creation-img-preview img {
    transform: scale(1.05);
}

/* Badges de catégorie INSERT / AUTRE */
.creation-item-clickable .categorie-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
}

.creation-item-clickable .categorie-badge.insert {
    background: var(--orange);
    color: white;
}

.creation-item-clickable .categorie-badge.autre {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.creation-item-clickable .creation-info-preview {
    padding: 1rem;
}

.creation-item-clickable .creation-info-preview h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.creation-item-clickable .creation-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.creation-item-clickable .voir-details-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--gris-clair);
    color: #e0e0e0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ========================================
   CHECKBOX ENGAGEMENT - FORMULAIRE
   ======================================== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #b0b0b0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: var(--orange);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--orange);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #ff8c5a;
}

#engagementGroup {
    background: var(--gris-moyen);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--orange);
}

/* ========================================
   FORMULAIRE DEVIS - CHAMPS INSERTS
   ======================================== */
.dimensions-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dimension-input {
    width: 80px !important;
    text-align: center;
}

.dimension-separator {
    color: #888;
    font-weight: bold;
}

.checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #d0d0d0;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--orange);
    cursor: pointer;
}

#insertDetailsGroup {
    background: var(--gris-moyen);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--orange);
}

#insertDetailsGroup .form-group {
    margin-bottom: 1rem;
}

#insertDetailsGroup .form-group:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .dimension-input {
        width: 60px !important;
    }
}
