/* ==========================================================================
   EMS PIÈCES AUTO - CHARTE GRAPHISME DYNAMIQUE, PÉTANTE ET PREMIUM (V2)
   ========================================================================== */

/* IMPORT GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');


/* ============================
   TOP INFO TICKER BAR
   ============================ */
.top-ticker {
    width: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 3px solid var(--color-primary);
    height: 38px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #cbd5e1;
    padding-left: 100%;
    animation: tickerScroll 40s linear infinite;
}

.ticker-content strong {
    color: var(--color-accent);
    font-weight: 800;
}

.ticker-content a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.ticker-content a:hover {
    color: var(--color-accent);
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* VARIABLES / DESIGN SYSTEM DYNAMIQUE */
:root {
    /* Couleurs */
    --bg-primary: #ffffff;
    --bg-secondary: #fafbfd;
    --bg-tertiary: #f1f5f9;
    --bg-accent-light: #fffbeb;
    --bg-red-light: #fff1f2;
    
    --text-primary: #0f172a; /* Ardoise très sombre */
    --text-secondary: #334155; /* Ardoise moyenne */
    --text-muted: #64748b;
    
    --color-primary: #e50914; /* Rouge Sport super pétant */
    --color-primary-hover: #b9050f;
    --color-primary-light: #ffe4e6;
    
    --color-accent: #ffd600; /* Jaune EMS super pétant */
    --color-accent-hover: #e0bc00;
    --color-accent-light: #fef9c3;
    
    --border-color: #cbd5e1;
    --border-color-hover: #94a3b8;
    --border-color-focus: #e50914;
    
    /* Typographies */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espacements, Bordures & Ombres */
    --border-radius-sm: 8px;
    --border-radius-md: 14px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
    --shadow-yellow: 0 8px 20px rgba(255, 214, 0, 0.2);
    --shadow-red: 0 8px 20px rgba(229, 9, 20, 0.25);
    
    --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width-content: 1200px;
    --header-height: 85px;
}

/* 1. RESET & GLOBAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 900;
    line-height: 1.15;
}

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

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* UTILITIES */
.container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-bg {
    background-color: var(--bg-tertiary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-tag {
    display: inline-block;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff3d47 100%);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.45rem 1.25rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-red);
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-accent);
    z-index: -1;
    transform: skewX(-15deg);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 500;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.25rem;
    font-family: var(--font-title);
    font-weight: 800;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 3px solid transparent;
    gap: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff3d47 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-red);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffb300 100%);
    color: var(--text-primary);
    box-shadow: var(--shadow-yellow);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 214, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
.header {
    height: var(--header-height);
    width: 100%;
    position: fixed;
    top: 38px;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    height: 75px;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-icon {
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffb300 100%);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-yellow);
    border: 2.5px solid var(--text-primary);
    transform: rotate(-5deg);
}

.logo-text h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--color-primary);
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    margin-top: -3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   3. HERO SECTION - REDESIGNED FOR CLARITY AND LESS OVERLOAD
   ========================================================================== */
.hero {
    min-height: calc(100vh - 50px);
    padding-top: calc(var(--header-height) + 38px + 1.5rem);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.14), transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(229, 9, 20, 0.08), transparent 45%),
                var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Slanted background stripe */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffb300 100%);
    transform: skewX(-12deg) translateX(12%);
    z-index: 1;
    opacity: 0.85;
    border-left: 10px solid var(--color-primary);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Vibrant Banner Badge */
.hero-promo-banner {
    display: inline-flex;
    flex-direction: column;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    border: 3px solid var(--color-accent);
    border-radius: var(--border-radius-md);
    padding: 1.15rem 1.85rem;
    margin-bottom: 2rem;
    transform: rotate(-2deg);
    box-shadow: var(--shadow-lg), var(--shadow-yellow);
    position: relative;
}

.hero-promo-banner::after {
    content: '★ OFFRE PROMO';
    position: absolute;
    top: -14px;
    right: 15px;
    background-color: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.2rem 0.65rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.hero-promo-main {
    font-family: var(--font-title);
    font-size: 2.15rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--color-accent);
    text-shadow: 2px 2px 0px #000;
}

.hero-promo-sub {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 214, 0, 0.4);
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* HIGH-IMPACT PROMO SHOWCASE HERO CARD */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fadeIn 1s ease-out;
}

.hero-marketing-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffd600 100%);
    border: 3.5px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-yellow);
    padding: 0;
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: rotate(2deg);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.hero-marketing-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.hero-marketing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 135px;
    background-color: var(--color-primary);
    border-bottom: 3.5px solid var(--text-primary);
    z-index: 1;
}

.hero-marketing-content {
    position: relative;
    z-index: 2;
    padding: 1.25rem 2rem 2rem 2rem;
}

.marketing-header {
    height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0.25rem;
    gap: 0.35rem;
}

.marketing-badge {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.marketing-main-title {
    color: #ffffff;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.15;
    font-weight: 900;
    line-height: 1.1;
    margin-top: 0.15rem;
}

.marketing-body {
    margin-top: 0;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed rgba(15, 23, 42, 0.2);
}

.marketing-part-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.marketing-part-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.marketing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.marketing-price-box {
    display: flex;
    flex-direction: column;
}

.marketing-price-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.marketing-price-value {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.marketing-cta {
    background-color: var(--text-primary);
    color: #ffffff;
    border: none;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.7rem 1.15rem;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.marketing-cta:hover {
    background-color: var(--color-primary);
    transform: scale(1.05);
}

.floating-visual-badge {
    display: none;
}

.badge-pos-1 {
    top: -14px;
    left: 16px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffd600 100%);
    transform: rotate(-2deg);
    animation: float 4s ease-in-out infinite;
    border-radius: 6px;
}

.badge-pos-2 {
    bottom: -14px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff3d47 100%);
    color: #ffffff;
    transform: rotate(2deg);
    animation: float 5s ease-in-out infinite 1.5s;
    border-radius: 6px;
}

/* ==========================================================================
   3B. VIBRANT TRANSITIONAL STATS BAR (MOVED OUT OF HERO TO DECLUTTER)
   ========================================================================== */
.stats-bar {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    color: #ffffff;
    border-top: 4px solid var(--color-accent);
    border-bottom: 4px solid var(--color-accent);
    padding: 2.25rem 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-md);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-bar-item {
    border-right: 2px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-num {
    font-family: var(--font-title);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-bar-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #e2e8f0;
}

/* ==========================================================================
   4. ADVANTAGES SECTION (POURQUOI NOUS CHOISIR)
   ========================================================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.advantage-card {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.advantage-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    background-color: var(--color-accent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: none;
}

.advantage-card:hover::after {
    opacity: 1;
    transform: translate(5px, 5px);
}

.advantage-icon {
    width: 65px;
    height: 65px;
    background-color: var(--color-accent-light);
    color: var(--text-primary);
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.advantage-card:hover .advantage-icon {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: rotate(-10deg) scale(1.1);
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.advantage-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.6;
}

/* ==========================================================================
   4B. NEW CRITICAL ADDITION: PARTNERS LOGOS SLIDER (VIBRANT)
   ========================================================================== */
.partners-section {
    padding: 3rem 0;
    background-color: var(--bg-primary);
    border-bottom: 3px solid var(--text-primary);
}

.partners-title {
    text-align: center;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.partners-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.partner-logo-badge {
    background-color: var(--bg-tertiary);
    border: 2.5px solid var(--text-primary);
    padding: 0.65rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.partner-logo-badge:hover {
    transform: translateY(-3px) rotate(-3deg);
    background-color: var(--color-accent);
}

/* Logo Specific Colors on Hover to simulate actual logos */
.partner-logo-badge.logo-brembo:hover {
    color: #ffffff;
    background: #e50914;
}

.partner-logo-badge.logo-valeo:hover {
    color: #ffffff;
    background: #60b62e;
}

.partner-logo-badge.logo-castrol:hover {
    color: #ffffff;
    background: #007d40;
}

.partner-logo-badge.logo-bosch:hover {
    color: #ffffff;
    background: #00569d;
}

.partner-logo-badge.logo-varta:hover {
    color: #ffffff;
    background: #0a2540;
}

.partner-logo-badge.logo-bardahl:hover {
    color: var(--text-primary);
    background: #ffd600;
}

/* ==========================================================================
   5. SERVICES SECTION (NOS SERVICES)
   ========================================================================== */
.services-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
}

.services-visual {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.services-visual::before {
    content: 'PARTENAIRES OFFICIELS';
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--color-accent);
    color: var(--text-primary);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.services-badge {
    background-color: var(--bg-tertiary);
    border: 2px dashed var(--text-primary);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.services-badge-icon {
    font-size: 3rem;
}

.services-badge-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.services-badge-desc {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.services-list-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    border-left: 5px solid var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.service-preview-label {
    color: var(--text-primary);
}

.service-preview-value {
    color: var(--color-primary);
    font-weight: 900;
    background-color: #ffffff;
    padding: 0.25rem 0.75rem;
    border: 2px solid var(--text-primary);
    border-radius: var(--border-radius-sm);
}

.services-content h3 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.service-item-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-item-title::before {
    content: '🔥';
    font-size: 1.2rem;
}

.service-item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================================================
   6. CATALOGUE INTERACTIF (COMPACT MODEL WITH DYNAMIC JS PAGINATION)
   ========================================================================== */
.catalogue-filters {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    color: var(--text-primary);
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.filter-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: var(--color-primary);
    border-color: var(--text-primary);
    color: #ffffff;
    box-shadow: var(--shadow-red);
}

/* Compact Catalogue Grid for Better User Usability */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease-out;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    background-color: var(--color-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: none;
}

.product-card:hover::after {
    opacity: 1;
    transform: translate(4px, 4px);
}

/* Keep card white background on hover to prevent overlapping red overlays */
.product-card:hover .product-info {
    background-color: #ffffff;
}

.product-visual {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, #e2e8f0 100%);
    height: 200px; /* Reduit pour compacité */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--text-primary);
}

.product-icon-bg {
    font-size: 5rem;
    transition: var(--transition-smooth);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.product-card:hover .product-icon-bg {
    transform: scale(1.15) rotate(-8deg);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-accent);
    color: var(--text-primary);
    font-size: 0.72rem;
    font-weight: 900;
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--text-primary);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.product-tag.promo {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff3d47 100%);
    color: #ffffff;
}

.product-info {
    padding: 1.75rem; /* Reduit pour compacité */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.product-brand {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
    transition: var(--transition-smooth);
}

/* FIX HOVER PRICE VISIBILITY: Explicitly define hover states to prevent text color changes */
.product-card:hover .product-title {
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-weight: 500;
}

.product-specs {
    border-top: 2px dashed var(--border-color);
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.product-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.825rem;
}

.spec-label {
    color: var(--text-muted);
    font-weight: 600;
}

.spec-val {
    color: var(--text-primary);
    font-weight: 800;
    background-color: var(--bg-tertiary);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2.5px solid var(--text-primary);
    padding-top: 1.25rem;
}

.product-price-box {
    display: flex;
    flex-direction: column;
}

.product-price-old {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 700;
}

/* FIX HOVER PRICE VISIBILITY: Ensure the price remains solid red and highly visible */
.product-price {
    font-family: var(--font-title);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    transition: var(--transition-smooth);
}

.product-card:hover .product-price {
    color: var(--color-primary);
}

/* REDESIGNED BUTTON WITHOUT ARROWS */
.product-action-btn {
    background-color: var(--color-accent);
    color: var(--text-primary);
    border: 2.5px solid var(--text-primary);
    padding: 0.6rem 1.15rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.product-card:hover .product-action-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: scale(1.05);
}

/* PAGINATION CONTROLS (6 PRODUCTS DYNAMIC VIEW) */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4.5rem;
}

.page-control-btn {
    background-color: var(--bg-primary);
    border: 2.5px solid var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.page-control-btn:hover {
    background-color: var(--color-accent);
}

.page-control-btn:disabled {
    border-color: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    background-color: var(--bg-tertiary);
}

.page-numbers-container {
    display: flex;
    gap: 0.75rem;
}

.page-num-btn {
    background-color: var(--bg-primary);
    border: 2.5px solid var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-title);
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.page-num-btn:hover {
    background-color: var(--color-accent);
}

.page-num-btn.active {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-red);
}

/* ==========================================================================
   7. AVIS CLIENTS - REDESIGNED TO BE MODERN, EXCITING AND WITH AVATARS
   ========================================================================== */
.reviews-section-bg {
    background-color: var(--bg-secondary);
    border-top: 3px solid var(--text-primary);
    border-bottom: 3px solid var(--text-primary);
}

/* Google Reviews Verified Badge */
.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    border: 2.5px solid var(--text-primary);
    padding: 0.65rem 1.25rem;
    border-radius: var(--border-radius-md);
    margin: 0 auto 3rem auto;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.google-g-logo {
    font-weight: 900;
    font-size: 1.35rem;
    color: #4285f4;
}

.reviews-carousel-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.review-slide {
    min-width: 100%;
    padding: 0 1.5rem;
}

.review-card {
    background-color: var(--bg-primary);
    border: 3.5px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

/* User profile avatar style */
.review-avatar-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    border: 3px solid var(--text-primary);
    background-color: var(--color-accent);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-yellow);
}

.review-avatar-svg {
    font-size: 2.5rem;
}

.review-stars {
    color: #ffb300;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.review-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 600;
}

.review-author {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-meta {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 800;
}

/* ==========================================================================
   8. FAQ SECTION - ADDED MECHANICAL ILLUSTRATION
   ========================================================================== */
.faq-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
}

.faq-illustration-column {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffb300 100%);
    border: 4.5px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg), var(--shadow-yellow);
    transform: rotate(-2deg);
}

.faq-illustration-column::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px dashed var(--text-primary);
    border-radius: var(--border-radius-md);
}

.faq-ill-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: rotateClockwise 25s linear infinite;
    display: inline-block;
}

.faq-ill-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-ill-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.faq-item {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
}

.faq-question {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: var(--color-accent);
    border: 2px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--color-primary);
    color: #ffffff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-content-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.7;
    border-top: 2px dashed var(--border-color);
}

/* ==========================================================================
   9. FORMULAIRE DE CONTACT - ELEGANT DARK RED ACCENT WITH ZERO YELLOW OVERLOAD
   ========================================================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    background-color: var(--bg-primary);
    border: 4px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Info Panel: Slate/Black Gradient with vibrant Sport Red instead of yellow */
.contact-info-panel {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 4px solid var(--text-primary);
    position: relative;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    background-color: var(--color-primary); /* CHANGED FROM YELLOW TO SPORT RED */
}

.contact-info-header h3 {
    font-size: 2.25rem;
    color: var(--color-primary-light); /* CHANGED FROM YELLOW TO PREMIUM RED LIGHT */
    margin-bottom: 1.25rem;
}

.contact-info-header p {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 4.5rem 0;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: #ffffff;
    background-color: var(--color-primary); /* SPORT RED ICON BORDER */
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--color-primary);
}

.contact-info-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #cbd5e1;
    font-weight: 500;
    word-break: break-word;
}

.contact-info-text a {
    color: var(--color-primary-light);
    font-weight: 700;
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-socials-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.contact-socials {
    display: flex;
    gap: 1.25rem;
}

.social-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background-color: #ffffff;
    border: 2.5px solid var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.social-btn:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px) rotate(-8deg);
}

.contact-form-panel {
    padding: 5rem;
    background-color: var(--bg-secondary);
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem; /* Better structured fields gap */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.35rem;
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-md);
    background-color: #ffffff;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    font-weight: 600;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-red);
}

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

.form-submit-row {
    grid-column: span 2;
    margin-top: 1.25rem;
}

/* Beautiful Interactive Status Box for Autoresponder & Admin Notification visual simulation */
.form-system-status {
    background-color: #f8fafc;
    border: 2px dashed var(--border-color);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: none;
    margin-top: 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

.form-system-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-system-row:last-child {
    margin-bottom: 0;
}

.form-system-ok {
    color: #2e7d32;
    font-weight: bold;
}

/* ==========================================================================
   10. POINTS DE VENTE & HORAIRES (BOUTIQUES)
   ========================================================================== */
.shops-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.shop-card {
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shop-visual-map {
    height: 260px;
    background-color: var(--bg-tertiary);
    border-bottom: 3px solid var(--text-primary);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
    background: radial-gradient(circle, #ffd600 8%, transparent 9%),
                radial-gradient(circle, #e50914 8%, transparent 9%);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    background-color: #f8fafc;
    padding: 2.5rem;
    position: relative;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.85);
    z-index: 1;
}

.map-placeholder-content {
    position: relative;
    z-index: 2;
}

.map-icon {
    font-size: 3.5rem;
    animation: bounce 2s infinite;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.shop-card-content {
    padding: 3.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-branch-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-primary);
    background-color: var(--color-accent);
    padding: 0.35rem 1rem;
    border: 2px solid var(--text-primary);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.shop-branch-tag.main {
    color: #ffffff;
    background-color: var(--color-primary);
}

.shop-title {
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
}

.shop-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.shop-detail-row {
    display: flex;
    gap: 1.25rem;
    font-size: 1rem;
}

.shop-detail-icon {
    color: var(--color-primary);
    font-size: 1.35rem;
    font-weight: 900;
}

.shop-detail-info h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.shop-detail-info p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-weight: 500;
}

.shop-detail-info a {
    color: var(--color-primary);
    font-weight: 700;
}

.shop-detail-info a:hover {
    text-decoration: underline;
}

.shop-actions {
    border-top: 3px dashed var(--border-color);
    padding-top: 2rem;
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.footer {
    background-color: #090a0c;
    color: #cbd5e1;
    padding: 7rem 0 3.5rem 0;
    border-top: 8px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 5rem;
    border-bottom: 2px solid rgba(226, 232, 240, 0.1);
    padding-bottom: 5rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand .logo-icon {
    border-color: #ffffff;
}

.footer-brand .logo-text h3 {
    color: #ffffff;
}

.footer-brand-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 1.75rem;
    line-height: 1.8;
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.footer-link-item {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
}

.footer-link-item:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    font-weight: 500;
}

.footer-contact-row {
    display: flex;
    gap: 1rem;
}

.footer-contact-icon {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}



/* GRANDES MARQUES - intégré dans la carte hero */
.marketing-grandes-marques {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255,255,255,0.2);
    color: #ffffff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.28rem 0.85rem;
    border-radius: var(--border-radius-full);
    border: 1.5px solid rgba(255,255,255,0.4);
    width: fit-content;
}

/* HERO LOCATION BADGES */
.hero-location-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #ffffff;
    border: 2.5px solid var(--text-primary);
    padding: 0.5rem 1.1rem;
    border-radius: var(--border-radius-full);
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.hero-location-sep {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Hero product image */
.marketing-img-wrapper {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 2px solid rgba(15,23,42,0.15);
    overflow: hidden;
    margin: 1rem 0 1.25rem 0;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-product-img {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
}

/* PRODUCT CARD REAL IMAGE */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    background-color: #f8fafc;
    transition: var(--transition-smooth);
}

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

/* PARTNER LOGO IMAGES */
.partner-logo-item {
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.partner-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--text-primary);
}

.partner-logo-img {
    height: 38px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.partner-logo-item:hover .partner-logo-img {
    filter: grayscale(0%);
}

/* AVIS CLIENTS - MODERN REDESIGN */
.reviews-rating-bar {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #ffffff;
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 3.5rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    justify-content: center;
}

.reviews-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.rating-big {
    font-family: var(--font-title);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.rating-stars-big {
    color: #ffb300;
    font-size: 1.75rem;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-rating-divider {
    width: 2px;
    height: 80px;
    background: var(--border-color);
    flex-shrink: 0;
}

.reviews-rating-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
    min-width: 180px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.rating-bar-fill {
    flex: 1;
    height: 8px;
    background-color: var(--bg-tertiary);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    border: 1.5px solid var(--border-color);
}

.rating-bar-fill div {
    height: 100%;
    background: linear-gradient(90deg, #ffb300, #ff8c00);
    border-radius: var(--border-radius-full);
}

/* Review cards grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.review-card-modern {
    background-color: #ffffff;
    border: 3px solid var(--text-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.review-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.review-card-modern.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-red);
}

.review-card-modern.featured::before {
    content: '⭐ Coup de cœur';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--border-radius-full);
    z-index: 2;
    text-transform: uppercase;
}

.review-card-photo {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.review-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.2), rgba(15,23,42,0.55));
}

.review-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.review-avatar-initials {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-primary), #ff3d47);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    border: 2px solid var(--text-primary);
}

.review-author-name {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.review-google-icon {
    margin-left: auto;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #4285f4;
    flex-shrink: 0;
}

.review-stars-sm {
    color: #ffb300;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text-sm {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 500;
    font-style: italic;
    flex: 1;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-rating-bar {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .reviews-rating-divider {
        width: 80px;
        height: 2px;
    }
}

/* GOOGLE MAPS IFRAME */
.shop-map-iframe {
    width: 100%;
    height: 260px;
    border: none;
    display: block;
}

/* FAQ TRIGGER FIX - icon stays at top */
.faq-trigger {
    align-items: flex-start !important;
}

.faq-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* FORM GRID - ensure all fields are equal height */
.form-grid {
    align-items: start;
}


/* Facebook SVG button */
.social-btn-fb {
    background-color: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
}

.social-btn-fb:hover {
    background-color: #0d65d8;
    color: #ffffff;
}

/* Footer credit */
.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-credit {
    font-size: 0.8rem;
    color: #64748b;
}

.footer-credit strong {
    color: var(--color-accent);
}


/* ============================
   COOKIE CONSENT BANNER
   ============================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0f172a;
    border-top: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

#cookie-banner.hidden {
    display: none !important;
}

.cookie-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    min-width: 200px;
}

.cookie-text strong {
    color: #ffffff;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: var(--color-primary);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn-accept:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

.cookie-btn-refuse {
    background: transparent;
    color: #94a3b8;
    border: 2px solid #475569;
    padding: 0.7rem 1.25rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cookie-btn-refuse:hover {
    border-color: #94a3b8;
    color: #ffffff;
}

/* ==========================================================================
   12. ANIMATIONS & RESPONSIVE DESIGN
   ========================================================================== */

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

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

@keyframes float {
    0% { transform: translateY(0px) rotate(-6deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
    100% { transform: translateY(0px) rotate(-6deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    
    .hero-grid {
        gap: 2.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-flex {
        gap: 2rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    
    .catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .faq-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-illustration-column {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        border-right: none;
        border-bottom: 4px solid var(--text-primary);
    }
    
    .shops-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5.5rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .header {
        height: 75px;
    }
    
    .nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        transition: 0.4s ease-in-out;
        border-top: 3px solid var(--text-primary);
    }
    
    .nav.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 5rem;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-promo-banner {
        transform: rotate(0deg);
        width: 100%;
        max-width: 380px;
        margin: 0 auto 2rem auto;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-bar-item {
        border-right: none;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
        padding-bottom: 1.25rem;
    }
    
    .stats-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 3rem 1.75rem;
    }
    
    .review-card::before {
        display: none;
    }
    
    .review-text {
        font-size: 1.15rem;
    }
    
    .contact-form-panel {
        padding: 3rem 1.75rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .form-submit-row {
        grid-column: auto;
    }
    
    .shop-card-content {
        padding: 2.5rem 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
