/*
Theme Name: Prems Systèmes
Theme URI: https://antigravity-systemes.com
Author: Antigravity
Author URI: https://antigravity-systemes.com
Description: Thème sur-mesure pour Antigravity — Intégrateur de solutions techniques professionnelles. Design clair premium.
Version: 5.0.6
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prems-systemes
*/

/* ============================================
   CSS VARIABLES / DESIGN TOKENS — LIGHT PREMIUM
   ============================================ */
:root {
    /* Core light palette */
    --color-bg-primary: #FAFAFD;
    --color-bg-secondary: #F2F1FA;
    --color-bg-tertiary: #EAE9F5;
    --color-bg-card: #FFFFFF;
    --color-bg-card-hover: #FDFDFF;
    --color-bg-elevated: #FFFFFF;

    /* Accent gradient — violet → electric blue */
    --color-accent-start: #7C3AED;
    --color-accent-mid: #8B5CF6;
    --color-accent-end: #6366F1;
    --color-neon-magenta: #EC4899;
    --color-neon-blue: #3B82F6;
    --gradient-accent: linear-gradient(135deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
    --gradient-accent-hover: linear-gradient(135deg, #6D28D9 0%, #4F46E5 100%);
    --gradient-accent-subtle: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(99,102,241,0.12) 100%);
    --gradient-neon: linear-gradient(135deg, #7C3AED 0%, #6366F1 50%, #3B82F6 100%);

    /* Text */
    --color-text-primary: #1B1633;
    --color-text-secondary: #4D4A63;
    --color-text-muted: #75718C;
    --color-text-accent: #6D28D9;

    /* Borders */
    --color-border: rgba(27,22,51,0.10);
    --color-border-hover: rgba(27,22,51,0.18);
    --color-border-accent: rgba(124,58,237,0.35);

    /* Misc */
    --color-success: #10B981;
    --color-error: #EF4444;
    --color-white: #FFFFFF;

    /* Typography */
    --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Spacing & Layout */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(46,29,94,0.07);
    --shadow-md: 0 4px 16px rgba(46,29,94,0.09);
    --shadow-lg: 0 10px 32px rgba(46,29,94,0.12);
    --shadow-xl: 0 18px 52px rgba(46,29,94,0.16);
    --shadow-glow: 0 0 40px rgba(124,58,237,0.10);
    --shadow-glow-strong: 0 0 60px rgba(124,58,237,0.16);

    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

::selection {
    background: rgba(139,92,246,0.3);
    color: var(--color-text-primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: 7rem 0;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-title--center {
    text-align: center;
    display: block;
}

.section-title--center::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center { text-align: center; }

/* Glowing divider */
.glow-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-start), var(--color-accent-end), transparent);
    border: none;
    opacity: 0.3;
    margin: 0;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.topbar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.topbar__item:hover {
    color: var(--color-text-secondary);
}

.topbar__item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.topbar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.topbar__icon svg {
    stroke: url(#topbar-gradient);
}

/* Gradient SVG icons fallback */
.topbar__item svg {
    color: var(--color-accent-start);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: rgba(255,255,255,0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    transition: all var(--transition-base);
}

.navbar--scrolled {
    background-color: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-md);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: -0.5rem;
}

.navbar__logo-img {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(139,92,246,0.2));
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar__link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.navbar__link:hover {
    color: var(--color-text-primary);
    background-color: rgba(27,22,51,0.05);
}

.navbar__link--active {
    color: var(--color-text-primary);
    background: var(--gradient-accent-subtle);
}

.navbar__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Mobile hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 750px;
    padding: 5rem 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 55% 60% at 18% 15%, rgba(124,58,237,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 50% 55% at 85% 20%, rgba(236,72,153,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(99,102,241,0.08) 0%, transparent 60%),
        linear-gradient(180deg, #F4F2FB 0%, var(--color-bg-primary) 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 15% 20%, rgba(124,58,237,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 85% 30%, rgba(236,72,153,0.10) 0%, transparent 60%),
        rgba(246,245,251,0.95);
}

/* Animated orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.14;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.hero__orb--1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-start);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero__orb--2 {
    width: 350px;
    height: 350px;
    background: var(--color-accent-end);
    bottom: -80px;
    left: -80px;
    animation-delay: -4s;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--color-accent-mid);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
    opacity: 0.08;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-accent-subtle);
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-accent);
    margin-bottom: 2rem;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent-start);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-size: clamp(var(--font-size-3xl), 4.5vw, var(--font-size-5xl));
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: var(--font-size-lg);
    font-weight: 300;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero__subtitle strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

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

/* Small hero variant for inner pages */
.hero--small {
    min-height: 300px;
    padding: 4rem 1.5rem;
}

.hero--small .hero__title {
    font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Hero Logo (Homepage — large) */
.hero__logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: heroLogoReveal 1s ease-out;
}

.hero__logo-img {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(124,58,237,0.18));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes heroLogoReveal {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 8px 24px rgba(124,58,237,0.18));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 10px 30px rgba(124,58,237,0.24));
        transform: scale(1.02);
    }
}

/* Hero Logo (Inner pages — smaller) */
.hero__logo--small {
    margin-bottom: 1.25rem;
}

.hero__logo--small .hero__logo-img {
    width: 100px;
    animation: logoPulse 4s ease-in-out infinite;
}

/* Footer Logo */
.footer-bottom__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.footer-bottom__logo-img {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(139,92,246,0.3));
    opacity: 0.7;
    transition: all var(--transition-base);
}

.footer-bottom__logo-img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(139,92,246,0.5));
    transform: scale(1.05);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(139,92,246,0.3);
}

.btn--primary:hover {
    background: var(--gradient-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,92,246,0.4);
}

.btn--outline {
    background: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-hover);
    box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
    border-color: var(--color-accent-start);
    background: rgba(139,92,246,0.08);
    color: var(--color-text-accent);
}

.btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: var(--font-size-xs);
}

.btn--block {
    width: 100%;
}

/* ============================================
   INTRO / TWO-COL SECTION
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

.two-col__text p {
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.two-col__text p strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

.two-col__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.two-col__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.two-col__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.two-col__image:hover img {
    transform: scale(1.03);
}

.two-col__image--grayscale img {
    filter: none;
    transition: filter var(--transition-slow), transform var(--transition-slow);
}

.two-col__image--grayscale:hover img {
    filter: grayscale(0%);
}

/* ============================================
   SERVICE CARDS (Accueil)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent-subtle);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
    border-radius: inherit;
}

.service-card:hover {
    border-color: var(--color-border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:nth-child(even) {
    margin-top: 2.5rem;
}

.service-card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: none;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
    filter: brightness(1);
}

.service-card__body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card__title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card__link {
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity var(--transition-fast);
}

.service-card__link:hover {
    opacity: 0.8;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    background: var(--color-bg-card);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,22,51,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.gallery__item:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-accent);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    filter: none;
    transition: all var(--transition-slow);
}

.gallery__item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background:
        radial-gradient(ellipse 60% 80% at 85% 10%, rgba(124,58,237,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 10% 90%, rgba(236,72,153,0.05) 0%, transparent 55%),
        var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Formulaire présenté en carte */
.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact__text {
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact__text strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-base);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.875rem 1.25rem;
    box-shadow: var(--shadow-sm);
}

.contact__info-item:hover {
    color: var(--color-text-primary);
    border-color: var(--color-border-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact__info-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent-start);
    flex-shrink: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 0.375rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-start);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
    background-color: var(--color-bg-card);
}

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

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-page__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    height: 520px;
    position: relative;
}

.contact-page__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.contact-page__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page__info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-info-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.contact-info-block:hover {
    border-color: var(--color-border-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-info-block__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-accent-subtle);
    border: 1px solid var(--color-border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-block__icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-start);
}

.contact-info-block__text {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
}

.contact-info-block__text a {
    transition: color var(--transition-fast);
}

.contact-info-block__text a:hover {
    color: var(--color-text-accent);
}

.contact-meta {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-meta__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.contact-meta__item strong {
    color: var(--color-text-secondary);
}

/* ============================================
   SERVICE DETAIL (Page Services)
   ============================================ */
.service-detail {
    padding: 5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail:nth-child(even) {
    background-color: var(--color-bg-secondary);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail--reverse .service-detail__grid {
    direction: rtl;
}

.service-detail--reverse .service-detail__grid > * {
    direction: ltr;
}

.service-detail__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-detail__text {
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail__text strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

.service-detail__list {
    margin: 1rem 0;
    padding-left: 0;
}

.service-detail__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.service-detail__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-accent);
}

.service-detail__list li strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

.service-detail__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
}

.service-detail__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.service-detail__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: none;
}

.service-detail__image:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

/* ============================================
   CLE EN MAIN Section
   ============================================ */
.cle-en-main {
    background-color: var(--color-bg-secondary);
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
}

.cle-en-main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cle-en-main__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cle-en-main__text {
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cle-en-main__text strong {
    font-weight: 600;
    color: var(--color-text-primary);
}

.cle-en-main__list {
    margin: 1rem 0;
}

.cle-en-main__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

.cle-en-main__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-accent);
}

.cle-en-main__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
}

.cle-en-main__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.cle-en-main__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    border-top: 1px solid var(--color-border);
    background:
        radial-gradient(ellipse 50% 90% at 50% 0%, rgba(124,58,237,0.05) 0%, transparent 60%),
        var(--color-bg-secondary);
}

.footer-top {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-top__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.footer-top__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.footer-top__item:hover {
    color: var(--color-text-secondary);
}

.footer-top__item svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent-start);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grids */
.fade-up-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.fade-up-stagger.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* ============================================
   NOISE / GRAIN OVERLAY
   ============================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.008;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ============================================
   TRUST BAR (Chiffres clés)
   ============================================ */
.trust-bar {
    padding: 3rem 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-bar__item {
    position: relative;
    padding: 1rem;
}

.trust-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: var(--color-border);
}

.trust-bar__number {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    line-height: 1.2;
}

.trust-bar__number--text {
    font-size: var(--font-size-3xl);
}

.trust-bar__suffix {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-bar__label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
}

/* ============================================
   NAVBAR CTA BUTTON
   ============================================ */
.navbar__link--cta {
    background: var(--gradient-accent) !important;
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 10px rgba(139,92,246,0.3);
    letter-spacing: 0.04em !important;
}

.navbar__link--cta:hover {
    background: var(--gradient-accent-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139,92,246,0.45) !important;
}

/* ============================================
   SERVICES STICKY NAVIGATION
   ============================================ */
.services-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.875rem 0;
    position: sticky;
    top: calc(var(--navbar-h, 61px) - 1px); /* sous la navbar : hauteur mesurée dans main.js */
    z-index: 90;
    transition: box-shadow var(--transition-base);
}

.services-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.services-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.services-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.services-nav__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.services-nav__link:hover {
    color: var(--color-text-secondary);
    background-color: rgba(27,22,51,0.05);
}

.services-nav__link:hover svg {
    opacity: 1;
}

.services-nav__link--active {
    color: var(--color-text-primary);
    border-bottom-color: var(--color-accent-start);
    border-image: var(--gradient-accent) 1;
}

.services-nav__link--active svg {
    opacity: 1;
    color: var(--color-accent-start);
}

/* Service CTA buttons within detail blocks */
.service-cta {
    margin-top: 1.5rem;
}

/* ============================================
   FORM VALIDATION STATES
   ============================================ */
.form-control--valid {
    border-color: var(--color-success) !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}

.form-control--error {
    border-color: var(--color-error) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* ============================================
   FORM PROGRESS BAR
   ============================================ */
.form-progress {
    width: 100%;
    height: 4px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.form-progress__bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-progress__text {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* ============================================
   FORM REASSURANCE TEXT
   ============================================ */
.form-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    font-weight: 400;
}

.form-reassurance svg {
    color: var(--color-success);
    flex-shrink: 0;
}

/* ============================================
   CTA REASSURANCE TEXT
   ============================================ */
.cta-reassurance {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
    display: none;
}

/* ============================================
   PAGE ENTER ANIMATION
   ============================================ */
main#main-content {
    animation: pageEnter 0.4s ease-out;
}

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

/* ============================================
   SHIMMER EFFECT ON PRIMARY BUTTONS
   ============================================ */
.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.12),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ============================================
   ARROW HOVER ANIMATION
   ============================================ */
.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

a:hover .arrow,
button:hover .arrow {
    transform: translateX(4px);
}

/* ============================================
   BUTTON CLICK / ACTIVE FEEDBACK
   ============================================ */
.btn--primary:active {
    transform: scale(0.97) translateY(0);
    transition-duration: 100ms;
}

/* ============================================
   BUTTON SIZE VARIANT — LARGE
   ============================================ */
.btn--lg {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-base);
}

/* ============================================
   SPINNER (Loading)
   ============================================ */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   BUTTON INNER TEXT / LOADER
   ============================================ */
.btn__text,
.btn__loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn__text[hidden],
.btn__loader[hidden] {
    display: none;
}

/* ============================================
   BUTTON SUCCESS STATE
   ============================================ */
.btn--success {
    background: var(--color-success) !important;
    box-shadow: 0 4px 15px rgba(16,185,129,0.3) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(even) {
        margin-top: 0;
    }

    .two-col,
    .contact-grid,
    .contact-page-grid,
    .service-detail__grid,
    .cle-en-main__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .two-col--reverse,
    .service-detail--reverse .service-detail__grid {
        direction: ltr;
    }

    .contact-page__image {
        height: 350px;
    }

    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar__item:nth-child(2)::after {
        display: none;
    }

    .services-nav__inner {
        gap: 0.25rem;
    }

    .services-nav__link {
        font-size: var(--font-size-xs);
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    .section-padding {
        padding: 4.5rem 0;
    }

    .navbar__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg-secondary);
        flex-direction: column;
        padding: 1.5rem;
        border-top: 1px solid var(--color-border);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
    }

    .navbar__nav.active {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__inner {
        position: relative;
    }

    .topbar__inner {
        gap: 1rem;
        font-size: 0.65rem;
    }

    .hero__logo-img {
        width: 280px;
    }

    .hero__logo--small .hero__logo-img {
        width: 70px;
    }

    .hero {
        min-height: auto;
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .hero__logo {
        margin-bottom: 0.5rem;
    }

    .hero__badge {
        margin-bottom: 0.75rem;
    }

    .hero--small {
        min-height: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .two-col__image img,
    .service-detail__image img {
        height: 280px;
    }

    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-bar__item:not(:last-child)::after {
        display: none;
    }

    .trust-bar__number {
        font-size: var(--font-size-3xl);
    }

    .services-nav__inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .services-nav__link {
        white-space: nowrap;
    }

    /* Mobile Sticky CTA */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0.75rem 1rem;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--color-border-accent);
        z-index: 99;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }

    /* Add padding at bottom so content is not hidden behind sticky CTA */
    body {
        padding-bottom: 70px;
    }

    .navbar__link--cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 1.25rem 1.25rem 1.25rem;
    }

    .hero__logo-img {
        width: 180px;
    }

    .hero__logo {
        margin-bottom: 0.35rem;
    }

    .hero__badge {
        margin-bottom: 0.6rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   BOUTIQUE FILTERS (Page Boutique)
   ============================================ */
.boutique-filters-wrapper {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--navbar-h, 61px) - 1px); /* sous la navbar : hauteur mesurée dans main.js */
    z-index: 90;
    padding: 1rem 0;
}

.boutique-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.boutique-filters__tabs {
    display: flex;
    gap: 0.5rem;
}

.boutique-filters__tab {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.boutique-filters__tab:hover {
    color: var(--color-text-primary);
    border-color: var(--color-border-hover);
}

.boutique-filters__tab.active {
    background: var(--gradient-accent);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(139,92,246,0.3);
}

.boutique-filters__actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.boutique-filters__group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.boutique-filters__group label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.boutique-select {
    background-color: var(--color-bg-card);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 0.5rem 2rem 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A1A1B5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.boutique-select:focus {
    outline: none;
    border-color: var(--color-accent-start);
}

.boutique-results-count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--color-border);
}

.boutique-results-count span {
    font-weight: 600;
    color: var(--color-text-primary);
}

/* ============================================
   BOUTIQUE GRID & CARDS
   ============================================ */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--shadow-md);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent-subtle);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}

.product-card:hover {
    border-color: var(--color-border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card__image-wrap {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background: var(--color-bg-secondary);
    overflow: hidden;
    z-index: 1;
}

.product-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(27,22,51,0.18);
}

.product-card__new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-success);
    color: white;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.product-card__content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.product-card__title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.product-card__price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-primary);
}

.product-card__stock {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.product-card__stock .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.stock-in { color: var(--color-success); }
.stock-in .dot { background: var(--color-success); }
.stock-order { color: var(--color-text-accent); }
.stock-order .dot { background: var(--color-text-accent); }

.product-card__actions {
    padding: 0 1.25rem 1.25rem;
    z-index: 1;
    display: flex;
    gap: 0.5rem;
}

/* ============================================
   PRODUCT CAROUSEL (Accueil)
   ============================================ */
.product-carousel {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 2rem;
}

.product-carousel__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    padding-bottom: 1rem; /* Space for shadow */
}

.product-carousel__track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-carousel .product-card {
    min-width: calc(25% - 1.125rem); /* 4 visible items */
    scroll-snap-align: start;
    flex-shrink: 0;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.carousel-nav {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-accent-start);
    color: var(--color-accent-start);
}

/* ============================================
   PRODUCT MODAL
   ============================================ */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 22, 51, 0.45);
    backdrop-filter: blur(8px);
}

.product-modal__dialog {
    position: relative;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-base);
    z-index: 2;
}

.product-modal.active .product-modal__dialog {
    transform: translateY(0) scale(1);
}

.product-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(27,22,51,0.07);
    border: none;
    border-radius: 50%;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
    z-index: 10;
}

.product-modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: var(--color-error);
}

.product-modal__content {
    padding: 2rem;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.modal-gallery {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.modal-badge, .modal-badge-new {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.modal-badge-new {
    background: var(--color-success);
}

.modal-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
}

.modal-desc {
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-specs h4, .modal-options h4 {
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.modal-specs ul {
    margin-bottom: 2rem;
}

.modal-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.modal-specs li strong {
    color: var(--color-text-primary);
    font-weight: 500;
    margin-right: 0.5rem;
}

.options-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-border);
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
}

/* ============================================
   STATE CLASSES (Loaders, Empty)
   ============================================ */
.boutique-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
}

.boutique-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
    background: var(--color-bg-card);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
}

.boutique-empty h3 {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.boutique-empty p {
    color: var(--color-text-muted);
}

/* ============================================
   BANNER BOUTIQUE
   ============================================ */
.custom-solution-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(236,72,153,0.05) 100%);
    border: 1px solid var(--color-border-accent);
    border-radius: var(--radius-lg);
    gap: 2rem;
}

.custom-solution-banner__content h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.custom-solution-banner__content p {
    color: var(--color-text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* ============================================
   BOUTIQUE RESPONSIVE
   ============================================ */
@media (max-width: 1280px) {
    .boutique-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-carousel .product-card {
        min-width: calc(33.333% - 1rem); /* 3 visible items */
    }
}

@media (max-width: 1024px) {
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-carousel .product-card {
        min-width: calc(50% - 0.75rem); /* 2 visible items */
    }
    .custom-solution-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .product-card__actions {
        flex-direction: column;
    }
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-modal__dialog {
        max-height: 85vh;
    }
    .product-modal__content {
        padding: 1.5rem;
    }
    /* Hide topbar on mobile to save space if needed */
}

@media (max-width: 480px) {
    .boutique-grid {
        grid-template-columns: 1fr;
    }
    .product-carousel .product-card {
        min-width: 85%; /* 1 visible item + peek */
    }
}

/* ============================================
   DARK NEON PREMIUM — HERO CANVAS OVERLAY
   ============================================ */
.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* ============================================
   ENHANCED LOGO GLOW
   ============================================ */
.hero__logo-img--glow {
    filter: drop-shadow(0 8px 24px rgba(124,58,237,0.18));
    animation: logoGlowPulse 4s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% {
        filter: drop-shadow(0 8px 24px rgba(124,58,237,0.18));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 10px 32px rgba(124,58,237,0.26));
        transform: scale(1.02);
    }
}

/* ============================================
   ANIMATED GRADIENT TEXT (sur mesure)
   ============================================ */
.gradient-text--animated {
    background: linear-gradient(
        90deg,
        #7C3AED,
        #6366F1,
        #3B82F6,
        #8B5CF6,
        #7C3AED
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: none;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   NEON GLASSMORPHISM CTA BUTTON
   ============================================ */
.btn--neon-glass {
    position: relative;
    background: linear-gradient(135deg,
        rgba(124,58,237,0.95) 0%,
        rgba(99,102,241,0.95) 50%,
        rgba(79,70,229,0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(124,58,237,0.4);
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow:
        0 4px 15px rgba(124,58,237,0.30),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn--neon-glass .btn__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    animation: neonShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes neonShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.btn--neon-glass:hover {
    background: linear-gradient(135deg,
        rgba(109,40,217,1) 0%,
        rgba(79,70,229,1) 100%
    );
    border-color: rgba(124,58,237,0.7);
    box-shadow:
        0 8px 25px rgba(124,58,237,0.35),
        inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-3px) scale(1.02);
    color: var(--color-white);
}

.btn--neon-glass:active {
    transform: scale(0.98);
    transition-duration: 100ms;
}

/* ============================================
   REACTIVE BORDER OUTLINE BUTTON
   ============================================ */
.btn--reactive-border {
    position: relative;
    background: rgba(255,255,255,0.75);
    color: var(--color-text-primary);
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(27,22,51,0.18);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn--reactive-border:hover {
    border-color: rgba(124,58,237,0.6);
    color: var(--color-text-accent);
    background: rgba(124,58,237,0.06);
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(124,58,237,0.12);
}

.btn--reactive-border:active {
    transform: scale(0.98);
}

/* ============================================
   HERO GLASSMORPHISM SERVICE CARDS
   ============================================ */
.hero-services {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-service-card {
    position: absolute;
    width: 190px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: var(--radius-lg);
    pointer-events: auto;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hero-service-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(124,58,237,0.08) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.hero-service-card:hover .hero-service-card__glow {
    opacity: 1;
}

.hero-service-card:hover {
    border-color: rgba(124,58,237,0.35);
    transform: translateY(-6px) !important;
    box-shadow:
        0 8px 32px rgba(27,22,51,0.10),
        0 0 40px rgba(124,58,237,0.08);
}

.hero-service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(99,102,241,0.1) 100%);
    border: 1px solid rgba(124,58,237,0.2);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.hero-service-card__icon svg {
    color: #7C3AED;
    filter: none;
    transition: all 0.4s ease;
}

.hero-service-card:hover .hero-service-card__icon {
    background: linear-gradient(135deg, rgba(124,58,237,0.25) 0%, rgba(99,102,241,0.2) 100%);
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 0 20px rgba(124,58,237,0.2);
}

.hero-service-card:hover .hero-service-card__icon svg {
    filter: none;
    color: #6D28D9;
}

.hero-service-card__title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.hero-service-card__desc {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* Card Positions */
.hero-service-card--left-top {
    top: 22%;
    left: 3%;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-service-card--left-bottom {
    bottom: 12%;
    left: 5%;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: -1.5s;
}

.hero-service-card--right-top {
    top: 22%;
    right: 3%;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-service-card--right-bottom {
    bottom: 12%;
    right: 5%;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: -4.5s;
}

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

/* ============================================
   DATA STREAMS (Flowing particles)
   ============================================ */
.data-streams {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.data-stream-particle {
    position: absolute;
    width: 2px;
    border-radius: 2px;
    opacity: 0;
    animation: dataStreamFlow linear infinite;
}

@keyframes dataStreamFlow {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

/* ============================================
   FLOATING CHAT BUBBLE
   ============================================ */
.chat-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 98;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(124,58,237,0.4),
        0 8px 40px rgba(99,102,241,0.2);
}

.chat-bubble svg {
    color: var(--color-white);
    z-index: 2;
    position: relative;
}

.chat-bubble__glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #6366F1);
    filter: blur(12px);
    opacity: 0.4;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.chat-bubble__pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(124,58,237,0.4);
    animation: chatPulse 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.chat-bubble:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 6px 30px rgba(124,58,237,0.5),
        0 12px 60px rgba(99,102,241,0.3);
}

.chat-bubble:hover .chat-bubble__glow {
    opacity: 0.7;
}

.chat-bubble:active {
    transform: scale(0.95);
}

/* ============================================
   HERO RESPONSIVE — SERVICE CARDS
   ============================================ */
@media (max-width: 1440px) {
    .hero-service-card {
        width: 170px;
        padding: 1.25rem;
    }
    .hero-service-card--left-top { left: 1.5%; }
    .hero-service-card--left-bottom { left: 2.5%; }
    .hero-service-card--right-top { right: 1.5%; }
    .hero-service-card--right-bottom { right: 2.5%; }
}

@media (max-width: 1280px) {
    .hero-service-card {
        width: 155px;
        padding: 1rem;
    }
    .hero-service-card__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }
    .hero-service-card__icon svg {
        width: 26px;
        height: 26px;
    }
    .hero-service-card__title {
        font-size: var(--font-size-sm);
    }
    .hero-service-card__desc {
        font-size: 0.65rem;
    }
}

@media (max-width: 1024px) {
    .hero-services {
        display: none;
    }
}

@media (max-width: 768px) {
    .chat-bubble {
        bottom: 5.5rem;
        right: 1rem;
        width: 56px;
        height: 56px;
    }

    .chat-bubble svg {
        width: 24px;
        height: 24px;
    }

    .btn--neon-glass,
    .btn--reactive-border {
        padding: 0.875rem 1.75rem;
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .btn--neon-glass,
    .btn--reactive-border {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   FOOTER CONTACT WIDGET
   ============================================ */
.footer-contact-widget {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139,92,246,0.12);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-contact-widget:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 0 30px rgba(139,92,246,0.08);
}

.footer-contact-widget__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(236,72,153,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-widget__icon svg {
    color: #7C3AED;
    width: 20px;
    height: 20px;
}

.footer-contact-widget__text {
    flex-grow: 1;
}

.footer-contact-widget__text h4 {
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-contact-widget__text p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.footer-contact-widget__text a:hover {
    color: var(--color-accent-start) !important;
}

@media (max-width: 768px) {
    .footer-contact-widget {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }
}

/* ============================================
   PREMSYSTEME — LOGO STYLES
   ============================================ */
.navbar__logo-img {
    height: 38px;
    width: auto;
    transition: all var(--transition-base);
    filter: drop-shadow(0 0 8px rgba(124,58,237,0.15));
}

.navbar__logo:hover .navbar__logo-img {
    filter: drop-shadow(0 0 16px rgba(124,58,237,0.4));
    transform: scale(1.03);
}

.hero__logo-img--glow {
    width: 160px;
    height: auto;
    animation: heroLogoReveal 1s ease-out;
    filter: drop-shadow(0 8px 24px rgba(124,58,237,0.18));
}

@keyframes heroLogoReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
        filter: drop-shadow(0 0 0 transparent);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 8px 24px rgba(124,58,237,0.18));
    }
}

.footer-bottom__logo-img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: all var(--transition-base);
    filter: drop-shadow(0 0 12px rgba(124,58,237,0.2));
}

.footer-bottom__logo-img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(124,58,237,0.4));
}

/* ============================================
   ANTIGRAVITY — COSMIC LIGHT-BEND EFFECT
   ============================================ */
.hero__cosmic-bend {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(124,58,237,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 30% 70%, rgba(99,102,241,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 35% 25% at 75% 30%, rgba(59,130,246,0.04) 0%, transparent 55%);
    animation: cosmicPulse 8s ease-in-out infinite;
}

@keyframes cosmicPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   ANTIGRAVITY — FLOATING TRUST BAR PANELS
   ============================================ */
.trust-bar__item--floating {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: perspective(800px) rotateX(2deg);
}

.trust-bar__item--floating::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.trust-bar__item--floating::after {
    display: none;
}

.trust-bar__item--floating:hover {
    transform: perspective(800px) rotateX(0deg) translateY(-4px);
    border-color: rgba(124,58,237,0.25);
    box-shadow:
        0 12px 40px rgba(27,22,51,0.10),
        0 0 30px rgba(124,58,237,0.06);
}

/* ============================================
   ANTIGRAVITY — HOLOGRAPHIC SERVICE CARDS
   ============================================ */
.service-card--holographic {
    position: relative;
    overflow: hidden;
}

.service-card--holographic::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(124,58,237,0.03) 45%,
        rgba(99,102,241,0.05) 50%,
        rgba(124,58,237,0.03) 55%,
        transparent 60%
    );
    animation: holographicSheen 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes holographicSheen {
    0% { transform: rotate(0deg) translateX(-100%); }
    50% { transform: rotate(0deg) translateX(100%); }
    100% { transform: rotate(0deg) translateX(-100%); }
}

.service-card--holographic:hover::after {
    animation-duration: 2s;
}

/* ============================================
   ANTIGRAVITY — GALLERY LEVITATION
   ============================================ */
.gallery__item--levitate {
    animation: subtleLevitate 4s ease-in-out infinite;
}

.gallery__item--levitate:nth-child(2) { animation-delay: -0.7s; }
.gallery__item--levitate:nth-child(3) { animation-delay: -1.4s; }
.gallery__item--levitate:nth-child(4) { animation-delay: -2.1s; }
.gallery__item--levitate:nth-child(5) { animation-delay: -2.8s; }
.gallery__item--levitate:nth-child(6) { animation-delay: -3.5s; }

@keyframes subtleLevitate {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.gallery__item--levitate:hover {
    animation-play-state: paused;
    transform: translateY(-8px) !important;
}

/* ============================================
   ANTIGRAVITY — NAVBAR CTA BUTTON OVERRIDE
   ============================================ */
.navbar__link--cta {
    background: var(--gradient-neon) !important;
    box-shadow: 0 2px 12px rgba(124,58,237,0.3), 0 0 20px rgba(99,102,241,0.15);
}

.navbar__link--cta:hover {
    background: var(--gradient-accent-hover) !important;
    box-shadow: 0 4px 20px rgba(124,58,237,0.45), 0 0 30px rgba(99,102,241,0.2) !important;
}

/* ============================================
   ANTIGRAVITY — GLOW DIVIDER OVERRIDE
   ============================================ */
.glow-divider {
    background: linear-gradient(90deg, transparent, var(--color-accent-start), var(--color-accent-end), var(--color-neon-blue), transparent);
}

/* ============================================
   PARCOURS CLIENT — 3 ÉTAPES
   ============================================ */
.steps-section {
    background:
        radial-gradient(ellipse 60% 70% at 50% 0%, rgba(124,58,237,0.06) 0%, transparent 60%),
        var(--color-bg-primary);
}

.steps-intro {
    text-align: center;
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-accent);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(124,58,237,0.30);
    margin-bottom: 1.25rem;
}

.step-card__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.step-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

/* Flèche de liaison entre les étapes */
.step-card:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -1.3rem;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--color-accent-start);
    opacity: 0.5;
    z-index: 2;
}

.steps-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .step-card:not(:last-child)::after {
        content: '↓';
        top: auto;
        bottom: -1.6rem;
        right: 50%;
        transform: translateX(50%);
    }
}


/* ============================================
   FOOTER MAIN (colonnes de liens)
   ============================================ */
.footer-main {
    padding: 3.5rem 0 3rem;
    border-bottom: 1px solid var(--color-border);
}
.footer-main__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
    gap: 3rem;
}
.footer-col__logo {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-col--brand p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 34ch;
}
.footer-col__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 1.1rem;
}
.footer-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}
.footer-col__list a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-col__list a:hover {
    color: var(--color-accent-start);
}
.footer-bottom__links {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: var(--font-size-xs);
}
.footer-bottom__links a {
    color: var(--color-text-muted);
    text-decoration: none;
}
.footer-bottom__links a:hover {
    color: var(--color-accent-start);
}
@media (max-width: 1024px) {
    .footer-main__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .footer-main__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   PAGES LÉGALES (contenu riche dans page.php)
   ============================================ */
.two-col__text h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-text-primary);
}
.two-col__text h2:first-child { margin-top: 0; }
.two-col__text h3 {
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--color-text-primary);
}
.two-col__text ul, .two-col__text ol {
    margin: 0 0 1.25rem 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}
.two-col__text li { margin-bottom: 0.35rem; }
.two-col__text a:not(.btn) { color: var(--color-accent-start); }
.two-col__text .btn--primary { color: var(--color-white); }
.two-col__text table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.5rem;
    font-size: var(--font-size-sm);
}
.two-col__text th, .two-col__text td {
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}
.two-col__text th { width: 32%; color: var(--color-text-primary); font-weight: 600; }
.legal-updated {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: 2rem !important;
}

/* ============================================
   FAQ (accordéon)
   ============================================ */
.faq { max-width: 860px; }
.faq__intro { margin-bottom: 2.5rem; }
.faq__group { margin-bottom: 3rem; }
.faq__group-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-text-primary);
}
.faq__item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq__item:hover, .faq__item[open] {
    border-color: rgba(124,58,237,0.35);
    box-shadow: 0 8px 30px rgba(124,58,237,0.06);
}
.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-primary);
    list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question svg {
    flex-shrink: 0;
    color: var(--color-accent-start);
    transition: transform var(--transition-fast);
}
.faq__item[open] .faq__question svg { transform: rotate(180deg); }
.faq__answer {
    padding: 0 1.35rem 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
}
.faq__answer a { color: var(--color-accent-start); }
.faq__cta {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 18px;
    background:
        radial-gradient(ellipse 60% 100% at 50% 0%, rgba(124,58,237,0.08) 0%, transparent 70%),
        var(--color-bg-secondary);
    border: 1px solid var(--color-border);
}
.faq__cta h3 { margin-bottom: 0.4rem; color: var(--color-text-primary); }
.faq__cta p { color: var(--color-text-muted); margin-bottom: 1.25rem; }


/* ============================================
   CHATBOT WIDGET (.pchat)
   ============================================ */
.pchat {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1001;
    font-family: inherit;
}
.pchat__bubble {
    position: relative;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124,58,237,0.4), 0 8px 40px rgba(99,102,241,0.2);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
}
.pchat__bubble:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 6px 30px rgba(124,58,237,0.5), 0 12px 60px rgba(99,102,241,0.3); }
.pchat__bubble:active { transform: scale(0.95); }
.pchat__bubble-glow {
    position: absolute; inset: -4px; border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #6366F1);
    filter: blur(12px); opacity: 0.4; z-index: 0;
}
.pchat__bubble-pulse {
    position: absolute; inset: -6px; border-radius: 50%;
    border: 2px solid rgba(124,58,237,0.4);
    animation: chatPulse 2s ease-in-out infinite; z-index: 0;
}
.pchat__icon { position: relative; z-index: 2; transition: opacity 0.2s, transform 0.2s; }
.pchat__icon--close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); }
.pchat[data-open="1"] .pchat__icon--open  { opacity: 0; transform: rotate(90deg) scale(0.6); }
.pchat[data-open="1"] .pchat__icon--close { opacity: 1; transform: none; }
.pchat[data-open="1"] .pchat__bubble-pulse { display: none; }
.pchat__bubble--nudge { animation: pchatNudge 1s ease-in-out 3; }
@keyframes pchatNudge {
    0%,100% { transform: translateY(0); }
    30% { transform: translateY(-8px) rotate(-6deg); }
    60% { transform: translateY(0) rotate(6deg); }
}

.pchat__panel {
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 380px;
    max-width: calc(100vw - 2rem);
    max-height: min(640px, calc(100vh - 7rem));
    display: flex;
    flex-direction: column;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27,22,51,0.18), 0 0 0 1px rgba(124,58,237,0.06);
    overflow: hidden;
    animation: pchatIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
.pchat__panel[hidden] { display: none; }
@keyframes pchatIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: none; } }

.pchat__header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
    color: #fff;
}
.pchat__avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pchat__avatar img { width: 26px; height: 26px; object-fit: contain; filter: brightness(0) invert(1); }
.pchat__header-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.pchat__header-text strong { font-size: 0.95rem; font-weight: 600; }
.pchat__header-text span { font-size: 0.75rem; opacity: 0.85; display: flex; align-items: center; gap: 0.35rem; }
.pchat__dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 3px rgba(52,211,153,0.3); }
.pchat__close {
    margin-left: auto; border: 0; background: rgba(255,255,255,0.15); color: #fff;
    width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.pchat__close:hover { background: rgba(255,255,255,0.3); }

.pchat__messages {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem;
    display: flex; flex-direction: column; gap: 0.6rem;
    background: var(--color-bg-primary);
    min-height: 220px;
    scroll-behavior: smooth;
}
.pchat__msg { display: flex; }
.pchat__msg--assistant { justify-content: flex-start; }
.pchat__msg--user { justify-content: flex-end; }
.pchat__msg-bubble {
    max-width: 85%;
    padding: 0.65rem 0.9rem;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
}
.pchat__msg--assistant .pchat__msg-bubble {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    border-bottom-left-radius: 4px;
}
.pchat__msg--user .pchat__msg-bubble {
    background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
}
.pchat__typing .pchat__msg-bubble { display: flex; gap: 4px; padding: 0.8rem 0.9rem; }
.pchat__typing span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent-start);
    opacity: 0.4; animation: pchatDots 1.2s infinite;
}
.pchat__typing span:nth-child(2) { animation-delay: 0.2s; }
.pchat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pchatDots { 0%,80%,100% { opacity: 0.3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

.pchat__quick {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
    padding: 0 1rem 0.6rem;
    background: var(--color-bg-primary);
}
.pchat__quick:empty { padding: 0; }
.pchat__quick[hidden] { display: none; }
.pchat__chip {
    font: inherit; font-size: 0.8rem; font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(124,58,237,0.35);
    background: var(--color-bg-card);
    color: var(--color-accent-start);
    cursor: pointer; text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pchat__chip:hover { background: var(--color-accent-start); color: #fff; transform: translateY(-1px); }

.pchat__input {
    display: flex; gap: 0.5rem; align-items: center;
    padding: 0.75rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-card);
}
.pchat__input[hidden] { display: none; }
.pchat__input input {
    flex: 1; min-width: 0;
    font: inherit; font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pchat__input input:focus { border-color: var(--color-accent-start); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.pchat__input button {
    width: 40px; height: 40px; border: 0; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #7C3AED 0%, #6366F1 100%);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s;
}
.pchat__input button:hover { transform: scale(1.08); }
.pchat__footer {
    text-align: center; font-size: 0.72rem; color: var(--color-text-muted);
    padding: 0.35rem 0.75rem 0.6rem; background: var(--color-bg-card);
}
.pchat__footer a { color: var(--color-accent-start); text-decoration: none; font-weight: 500; }

.pchat__lead {
    display: flex; flex-direction: column; gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-card);
}
.pchat__lead[hidden] { display: none; }
.pchat__lead-title { font-size: 0.82rem; color: var(--color-text-secondary); margin: 0 0 0.2rem; }
.pchat__lead input, .pchat__lead textarea {
    font: inherit; font-size: 0.88rem;
    padding: 0.55rem 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    outline: none; resize: none; width: 100%;
}
.pchat__lead input:focus, .pchat__lead textarea:focus { border-color: var(--color-accent-start); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.pchat__lead-actions { display: flex; justify-content: flex-end; gap: 0.5rem; align-items: center; margin-top: 0.2rem; }
.pchat__lead-cancel { font: inherit; font-size: 0.82rem; background: none; border: 0; color: var(--color-text-muted); cursor: pointer; padding: 0.4rem 0.6rem; }
.pchat__lead-cancel:hover { color: var(--color-text-primary); }
.pchat__lead-error { font-size: 0.8rem; color: #DC2626; margin: 0; }

@media (max-width: 768px) {
    .pchat { right: 1rem; bottom: 5.5rem; } /* au-dessus du sticky CTA mobile */
    .pchat__bubble { width: 56px; height: 56px; }
    .pchat__panel {
        position: fixed; inset: 0; bottom: 0; width: auto; max-width: none; max-height: none;
        border-radius: 0; border: 0;
    }
    .pchat[data-open="1"] .pchat__bubble { display: none; }
}


/* ============================================
   BOUTIQUE FILTERS — bouton "Filtres" + mode compact (<= 1024px)
   Le `top` de la barre sticky vient de --navbar-h (mesuré dans main.js).
   ============================================ */
.boutique-filters__toggle,
.boutique-filters__panel-footer {
    display: none;
}

@media (max-width: 1024px) {
    .boutique-filters-wrapper {
        padding: 0.6rem 0;
    }
    .boutique-filters-wrapper .container {
        position: relative;
    }
    .boutique-filters {
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.6rem;
    }

    /* Onglets : une seule ligne, défilement horizontal */
    .boutique-filters__tabs {
        flex: 1 1 auto;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 0;
        margin: -4px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }
    .boutique-filters__tabs::-webkit-scrollbar {
        display: none;
    }
    .boutique-filters__tab {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.45rem 0.9rem;
        scroll-snap-align: start;
    }

    /* Bouton "Filtres" */
    .boutique-filters__toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        flex-shrink: 0;
        padding: 0.45rem 0.85rem;
        border-radius: var(--radius-full);
        border: 1px solid var(--color-border);
        background: var(--color-bg-card);
        color: var(--color-text-primary);
        font-family: var(--font-family);
        font-size: var(--font-size-sm);
        font-weight: 500;
        cursor: pointer;
        transition: all var(--transition-fast);
    }
    .boutique-filters__toggle:hover,
    .boutique-filters__toggle[aria-expanded="true"] {
        border-color: var(--color-accent-start);
        color: var(--color-accent-start);
    }
    .boutique-filters__badge {
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: var(--gradient-accent);
        color: #fff;
        font-size: 0.7rem;
        font-weight: 600;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .boutique-filters__badge[hidden] {
        display: none;
    }

    /* Panneau déroulant (catégorie + tri) */
    .boutique-filters__actions {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1.1rem);
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem;
        padding: 1rem;
        background: var(--color-bg-card);
        border: 1px solid var(--color-border);
        border-radius: 16px;
        box-shadow: 0 16px 40px -8px rgba(27, 22, 51, 0.22);
        z-index: 2;
    }
    .boutique-filters-wrapper.is-open .boutique-filters__actions {
        display: grid;
        animation: boutiquePanelIn 0.2s ease;
    }
    @keyframes boutiquePanelIn {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: none; }
    }
    .boutique-filters__group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        min-width: 0;
    }
    .boutique-select {
        width: 100%;
    }
    .boutique-filters__panel-footer {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0.85rem;
        border-top: 1px dashed var(--color-border);
    }
    .boutique-filters__count {
        font-size: var(--font-size-sm);
        color: var(--color-text-muted);
    }
    .boutique-filters__count strong {
        color: var(--color-text-primary);
    }
    .boutique-filters__panel-footer .btn {
        padding: 0.55rem 1.1rem;
        font-size: var(--font-size-sm);
        white-space: nowrap;
    }

    /* Le compteur sous la barre n'existe plus sur mobile (il est dans le panneau) */
    .boutique-results-count--bar {
        display: none;
    }
}

@media (max-width: 480px) {
    .boutique-filters__actions {
        grid-template-columns: 1fr;
    }
}
