/*
Theme Name: HoLazyV
Theme URI: https://holazyv.local
Description: Thème WordPress futuriste pour boutique de mode holographique et équipements VR. Ambiance cyberpunk avec dark mode intégral.
Author: Votre Nom
Author URI: https://holazyv.local
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: holazyv
Tags: dark, cyberpunk, futuristic, custom-menu, featured-images
*/

/* ================================
   IMPORTATION DES POLICES
================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ================================
   RESET & VARIABLES CSS
================================ */
:root {
    /* === Couleurs de fond === */
    --noir-profond: #0a0a0f;
    --bleu-spatial: #0d1117;
    --bleu-fonce: #151b26;
    
    /* === Couleurs holographiques principales === */
    --blanc-opalescent: #e8f4f8;
    --bleu-glacier: #a8c5da;
    --violet-profond: #6b5b95;
    --or-rose: #d4a5a5;
    --bleu-acier: #4a5f7f;
    
    /* === Dégradés iridescents === */
    --gradient-holographique: linear-gradient(135deg, #a8c5da 0%, #6b5b95 50%, #d4a5a5 100%);
    --gradient-etoile: linear-gradient(135deg, #4a6fa5 0%, #6b5b95 25%, #b565a7 50%, #d4a5a5 75%, #e8c4a0 100%);
    --gradient-fond: linear-gradient(180deg, #0a0a0f 0%, #0d1117 50%, #151b26 100%);
    
    /* === Transparences et glassmorphism === */
    --verre-leger: rgba(168, 197, 218, 0.03);
    --verre-moyen: rgba(168, 197, 218, 0.08);
    --verre-intense: rgba(168, 197, 218, 0.15);
    --bordure-subtile: rgba(168, 197, 218, 0.2);
    
    /* === États interactifs === */
    --hover-lumineux: rgba(168, 197, 218, 0.25);
    --active-lumineux: rgba(107, 91, 149, 0.3);
    --focus-outline: rgba(168, 197, 218, 0.5);
    
    /* === Ombres élégantes === */
    --shadow-soft: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 12px 32px rgba(0, 0, 0, 0.5);
    
    /* === Typographie === */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    /* === Échelle typographique === */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    
    /* === Line heights === */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================
   STYLES GLOBAUX
================================ */
body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    background: var(--gradient-fond);
    color: var(--blanc-opalescent);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particules subtiles en arrière-plan (sera amélioré avec JS plus tard) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(168, 197, 218, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 91, 149, 0.02) 0%, transparent 50%),
        radial-gradient(1px 1px at 20% 40%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(168, 197, 218, 0.4), transparent),
        radial-gradient(1px 1px at 50% 60%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(168, 197, 218, 0.5), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 30% 90%, rgba(212, 165, 165, 0.3), transparent);
    background-size: 
        400% 400%,
        400% 400%,
        200% 200%,
        300% 300%,
        250% 250%,
        280% 280%,
        350% 350%,
        220% 220%;
    background-position: 
        0% 0%,
        100% 100%,
        50% 50%,
        80% 20%,
        40% 60%,
        60% 80%,
        30% 40%,
        70% 70%;
    pointer-events: none;
    z-index: -1;
    animation: float-stars 120s ease-in-out infinite;
}

@keyframes float-stars {
    0%, 100% {
        background-position: 
            0% 0%,
            100% 100%,
            50% 50%,
            80% 20%,
            40% 60%,
            60% 80%,
            30% 40%,
            70% 70%;
    }
    50% {
        background-position: 
            100% 100%,
            0% 0%,
            60% 40%,
            70% 30%,
            50% 70%,
            50% 90%,
            40% 30%,
            80% 60%;
    }
}

a {
    color: var(--bleu-glacier);
    text-decoration: none;
    transition: color var(--transition-normal) var(--ease-smooth), 
                transform var(--transition-fast) var(--ease-smooth);
}

a:hover {
    color: var(--or-rose);
}

img {
    max-width: 100%;
    height: auto;
}

/* Typographie de base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: var(--leading-tight);
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

p {
    margin-bottom: 1rem;
    line-height: var(--leading-relaxed);
}

strong {
    font-weight: 600;
}

/* ================================
   ANIMATIONS ÉLÉGANTES (pas de scintillement)
================================ */

/* Timing functions réutilisables */
:root {
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    --transition-slower: 0.8s;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* ================================
   HEADER & NAVIGATION
================================ */
.site-header {
    background: var(--verre-moyen);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bordure-subtile);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal) var(--ease-smooth);
}

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

/* Logo personnalisé WordPress */
.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo-link {
    display: inline-block;
    max-width: 120px;
    height: auto;
    transition: transform var(--transition-normal) var(--ease-smooth);
}

.custom-logo-link:hover {
    transform: scale(1.05);
}

.custom-logo {
    width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.site-logo {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--blanc-opalescent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-holographique);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform var(--transition-normal) var(--ease-smooth);
}

.site-logo:hover {
    transform: scale(1.05);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all var(--transition-normal) var(--ease-smooth);
    position: relative;
    color: var(--bleu-glacier);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-holographique);
    transition: width var(--transition-normal) var(--ease-smooth);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 80%;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--blanc-opalescent);
    background: var(--verre-leger);
    border-color: var(--bordure-subtile);
}

/* ================================
   CONTENU PRINCIPAL
================================ */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

/* ================================
   PAGE D'ACCUEIL - HERO SECTION
================================ */
.hero-section {
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 4rem;
    background: var(--verre-leger);
    border: 1px solid var(--bordure-subtile);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 197, 218, 0.1) 0%, transparent 70%);
    animation: shimmer 8s linear infinite;
    pointer-events: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    background: var(--gradient-etoile);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    line-height: var(--leading-tight);
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--bleu-glacier);
    margin-bottom: 2rem;
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 1;
}

/* ================================
   SECTION BEST SELLER
================================ */
.bestseller-section {
    padding: 4rem 2rem;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-holographique);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card {
    background: var(--verre-moyen);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bordure-subtile);
    border-radius: 24px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    transition: all var(--transition-slow) var(--ease-smooth);
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--bleu-glacier);
    background: var(--verre-intense);
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--verre-leger);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--bleu-glacier);
    border: 1px solid var(--bordure-subtile);
    position: relative;
    overflow: hidden;
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 197, 218, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--bordure-subtile);
    transition: all var(--transition-slow) var(--ease-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(168, 197, 218, 0.2);
}

.product-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    background: var(--gradient-holographique);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
}

.product-description {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--bleu-glacier);
    text-align: center;
    line-height: var(--leading-relaxed);
}

/* ================================
   SECTION B2B RESTAURANTS
================================ */
.b2b-section {
    padding: 4rem 2rem;
    background: var(--verre-leger);
    border: 1px solid var(--bordure-subtile);
    border-radius: 24px;
    margin-bottom: 4rem;
    backdrop-filter: blur(20px);
}

.b2b-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.b2b-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    background: var(--gradient-holographique);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.b2b-description {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--bleu-glacier);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    background: var(--verre-moyen);
    border: 2px solid var(--bleu-glacier);
    color: var(--blanc-opalescent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 12px;
    transition: all var(--transition-normal) var(--ease-smooth);
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--gradient-holographique);
    border-radius: 50%;
    transition: width var(--transition-slow) var(--ease-smooth), 
                height var(--transition-slow) var(--ease-smooth);
    z-index: -1;
}

.cta-button:hover::before {
    width: 300%;
    height: 300%;
}

.cta-button:hover {
    border-color: var(--or-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background: var(--verre-moyen);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--bordure-subtile);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-disclaimer {
    color: var(--bleu-acier);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bordure-subtile);
}

.footer-text {
    font-family: var(--font-primary);
    color: var(--bleu-glacier);
    font-size: var(--text-sm);
}

/* ================================
   GALERIE PRODUITS HORIZONTALE
   Style Nike/Adidas avec scroll
================================ */
.product-gallery-section {
    padding: 5rem 0;
    margin: 4rem 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0) 0%, 
        rgba(107, 91, 149, 0.03) 50%, 
        rgba(10, 10, 15, 0) 100%
    );
}

.product-gallery-scroll {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.product-gallery-container {
    display: flex;
    gap: 2rem;
    padding: 2rem 2rem 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    
    /* Scrollbar personnalisée */
    scrollbar-width: thin;
    scrollbar-color: var(--bleu-glacier) rgba(255, 255, 255, 0.05);
}

.product-gallery-container::-webkit-scrollbar {
    height: 8px;
}

.product-gallery-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 2rem;
}

.product-gallery-container::-webkit-scrollbar-thumb {
    background: var(--bleu-glacier);
    border-radius: 10px;
    transition: background var(--transition-fast);
}

.product-gallery-container::-webkit-scrollbar-thumb:hover {
    background: var(--violet-profond);
}

/* Card produit galerie */
.gallery-product-card {
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: start;
    background: var(--verre-leger);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bordure-subtile);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-normal) var(--ease-smooth);
    cursor: pointer;
}

.gallery-product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(168, 197, 218, 0.15);
    border-color: var(--bleu-glacier);
}

/* Image wrapper avec overlay */
.gallery-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(168, 197, 218, 0.05), 
        rgba(107, 91, 149, 0.05)
    );
}

.gallery-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) var(--ease-smooth);
}

.gallery-product-card:hover .gallery-product-image {
    transform: scale(1.1);
}

/* Overlay au hover */
.gallery-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(168, 197, 218, 0.8), 
        rgba(107, 91, 149, 0.8)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-product-card:hover .gallery-product-overlay {
    opacity: 1;
}

.gallery-view-text {
    color: white;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Informations produit */
.gallery-product-name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--blanc-opalescent);
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.gallery-product-price {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--or-rose);
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* Indicateur de scroll */
.scroll-indicator {
    text-align: center;
    padding: 1rem 0;
    color: var(--bleu-acier);
    font-size: var(--text-sm);
    font-style: italic;
    animation: pulse-scroll 2s ease-in-out infinite;
}

@keyframes pulse-scroll {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ================================
   RESPONSIVE - MOBILE & TABLETTE
================================ */

/* Tablette (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }
    
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-section {
        padding: 6rem 1.5rem 4rem;
    }
    
    .bestseller-section,
    .b2b-section {
        padding: 3rem 1.5rem;
    }
    
    .product-card,
    .b2b-content {
        padding: 2rem 1.5rem;
    }
    
    /* Galerie produits tablette */
    .gallery-product-card {
        min-width: 300px;
        max-width: 300px;
    }
    
    .gallery-product-image-wrapper {
        height: 350px;
    }
    
    /* Menu hamburger pour tablette si nécessaire */
    .main-navigation ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile (jusqu'à 768px) */
@media (max-width: 768px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
        --text-xl: 1.125rem;
    }
    
    /* Header mobile */
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .site-branding {
        width: 100%;
    }
    
    .custom-logo-link img {
        max-height: 50px !important;
    }
    
    .main-navigation {
        width: 100%;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .main-navigation ul li {
        width: 100%;
        text-align: center;
    }
    
    .main-navigation ul li a {
        display: block;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 10px;
    }
    
    /* Hero mobile */
    .hero-section {
        padding: 4rem 1rem 3rem;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* Sections mobile */
    .bestseller-section,
    .b2b-section,
    .values-section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: var(--text-2xl);
        margin-bottom: 2rem;
    }
    
    /* Product card mobile */
    .product-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .product-title {
        font-size: var(--text-xl);
    }
    
    .product-description {
        font-size: var(--text-sm);
        line-height: 1.7;
    }
    
    /* B2B section mobile */
    .b2b-content {
        padding: 1.5rem;
    }
    
    .b2b-title {
        font-size: var(--text-xl);
        margin-bottom: 1.5rem;
    }
    
    .b2b-description {
        font-size: var(--text-sm);
    }
    
    /* Boutons mobile */
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-sm);
        width: 100%;
        text-align: center;
    }
    
    /* Footer mobile */
    .site-footer {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-text {
        font-size: 0.875rem;
    }
    
    /* Value cards mobile - stack verticalement */
    .values-section > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem !important;
    }
    
    /* Galerie produits mobile */
    .product-gallery-section {
        padding: 3rem 0;
    }
    
    .product-gallery-container {
        padding: 1rem 1rem 2rem;
        gap: 1.5rem;
    }
    
    .gallery-product-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .gallery-product-image-wrapper {
        height: 320px;
    }
    
    .gallery-product-name {
        font-size: var(--text-lg);
        padding: 1rem 1rem 0.5rem;
    }
    
    .gallery-product-price {
        font-size: var(--text-base);
        padding: 0 1rem 1rem;
    }
    
    .scroll-indicator {
        font-size: 0.75rem;
    }
}

/* Petit mobile (jusqu'à 480px) */
@media (max-width: 480px) {
    :root {
        --text-5xl: 1.75rem;
        --text-4xl: 1.5rem;
        --text-3xl: 1.375rem;
    }
    
    .hero-section {
        padding: 3rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .product-card,
    .b2b-content {
        padding: 1.25rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
    }
    
    /* Galerie produits petit mobile */
    .gallery-product-card {
        min-width: 250px;
        max-width: 250px;
    }
    
    .gallery-product-image-wrapper {
        height: 280px;
    }
}

/* ================================
   EFFETS GLASSMORPHISM
================================ */
.glass-effect {
    background: var(--verre-moyen);
    backdrop-filter: blur(20px);
    border: 1px solid var(--bordure-subtile);
    box-shadow: var(--shadow-soft);
}

.value-card {
    transition: all var(--transition-normal) var(--ease-smooth);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--bleu-glacier);
}
