/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #ff3e6c;
    --color-primary-dark: #e6395f;
    --color-primary-light: #fff0f3;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f5;
    --color-border: #e0e0e0;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===================================
   CONTAINER
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    text-transform: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: box-shadow var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.logo-text {
    display: inline-block;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle-icon {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

/* ============================================
   HERO SECTION - Version texte centrée ROSE
============================================ */
.hero {
    background: none;      /* pas de fond sur toute la largeur */
    padding: 120px 0 80px; /* espace haut/bas */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-container {
    max-width: 900px; /* largeur max du bloc */
    margin: 0 auto;   /* centrer horizontalement */
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px; /* coins arrondis */
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.hero-content-full {
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-description {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-description strong {
    font-weight: 700;
    color: #fff;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.badge-icon {
    background: #fff;
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.hero-cta {
    margin-top: 40px;
}

.hero .btn-primary {
    background: #fff;
    color: var(--color-primary);
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: var(--color-primary-light);
}

.hero-trust {
    color: #fff;
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero .btn-primary {
        padding: 15px 35px;
        font-size: 1.05rem;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
    padding: var(--spacing-xxl) 0;
}

.section-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

/* ===================================
   CONCEPT SECTION
   =================================== */

.concept {
    background-color: var(--color-white);
}

.concept-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    color: var(--color-text-light);
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
    text-align: center;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary);
}

.feature-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.feature-description {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.email-link {
    color: var(--color-primary);
    font-weight: var(--font-weight-medium);
    text-decoration: underline;
}

.email-link:hover {
    color: var(--color-primary-dark);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}



/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media screen and (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-lg);
        transition: left var(--transition-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .nav-toggle-icon:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active .nav-toggle-icon:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .nav-toggle-icon:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    

}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
}

/* ===================================
   LEGAL PAGES STYLES
   =================================== */

.legal-page {
    margin-top: 70px;
    padding: var(--spacing-xxl) 0;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-size: 42px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text);
}

.legal-section {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    transition: box-shadow var(--transition-medium);
}

.legal-section:hover {
    box-shadow: var(--shadow-sm);
}

.legal-subtitle {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-primary-light);
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.legal-content p {
    margin-bottom: var(--spacing-sm);
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

.legal-link {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.legal-link:hover {
    color: var(--color-primary-dark);
}

/* Responsive for legal pages */
@media screen and (max-width: 768px) {
    .legal-page {
        padding: var(--spacing-lg) 0;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: var(--spacing-lg);
    }
    
    .legal-subtitle {
        font-size: 20px;
    }
    
    .legal-section {
        padding: var(--spacing-md);
    }
    
    .legal-content {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 24px;
    }
    
    .legal-subtitle {
        font-size: 18px;
    }
}

/* ===================================
   CGV SPECIFIC STYLES
   =================================== */

.legal-section-warning {
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary-light);
}

.warning-box {
    display: flex;
    gap: var(--spacing-md);
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-primary);
}

.warning-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.warning-text p {
    margin-bottom: var(--spacing-sm);
}

.warning-text p:last-child {
    margin-bottom: 0;
}

.legal-update {
    text-align: center;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    background-color: var(--color-gray-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-text-light);
}

.legal-update strong {
    color: var(--color-text);
}

/* Responsive for warning box */
@media screen and (max-width: 768px) {
    .warning-box {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .warning-icon {
        font-size: 28px;
    }
}

/* ===================================
   PRIVACY POLICY SPECIFIC STYLES
   =================================== */

.privacy-intro {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
    border: none;
    font-size: 17px;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-top: var(--spacing-sm);
}

.legal-list li {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-xs);
    position: relative;
}

.legal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 18px;
}

.privacy-rights {
    background-color: var(--color-primary-light);
    border: 2px solid var(--color-primary);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.right-item {
    background-color: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid var(--color-border);
}

.right-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.right-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
}

.right-title {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.right-item p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* Responsive for rights grid */
@media screen and (max-width: 768px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .right-icon {
        font-size: 32px;
    }
}

/* ===================================
   CONTACT PAGE STYLES (SIMPLIFIED)
   =================================== */

.contact-page {
    margin-top: 70px;
    padding: var(--spacing-xxl) 0;
    min-height: calc(100vh - 200px);
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.contact-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.contact-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

.contact-method-card {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-method-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.card-highlight {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
    border-color: var(--color-primary);
}

.card-facebook {
    background: linear-gradient(135deg, #e7f3ff 0%, var(--color-white) 100%);
    border-color: #1877f2;
}

.card-facebook:hover {
    border-color: #1877f2;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary);
}

.card-facebook .method-icon {
    background-color: #e7f3ff;
    color: #1877f2;
}

.method-title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.quick-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.method-link {
    display: block;
    font-size: 20px;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.method-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.card-facebook .method-link {
    color: #1877f2;
}

.method-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.method-description strong {
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1; /* Assure une hauteur cohérente */
    display: inline-flex; /* Meilleur centrage du texte */
    align-items: center;
    justify-content: center;
}

/* Tracking Section */
.tracking-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl) var(--spacing-lg);
}

.tracking-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tracking-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
}

.tracking-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.tracking-text {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

/* Responsive for Contact Page */
@media screen and (max-width: 968px) {
    .contact-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .contact-page {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method-card {
        padding: var(--spacing-lg);
    }
    
    .tracking-section {
        padding: var(--spacing-lg);
    }
    
    .tracking-title {
        font-size: 24px;
    }
    
    .tracking-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 24px;
    }
    
    .method-icon,
    .tracking-icon {
        width: 64px;
        height: 64px;
    }
    
    .method-title {
        font-size: 20px;
    }
    
    .method-link {
        font-size: 18px;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.about-page {
    margin-top: 70px;
    padding: var(--spacing-xxl) 0;
    min-height: calc(100vh - 200px);
}

/* About Hero Section */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.about-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.about-intro {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-primary);
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.highlight-name {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 20px;
}

/* Services Section */
.services-section {
    margin-bottom: var(--spacing-xxl);
}

.section-title-about {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    text-align: center;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.services-intro {
    font-size: 18px;
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-medium);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
}

.service-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.service-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Professional CTA */
.professional-cta {
    text-align: center;
    background-color: var(--color-gray-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
}

.professional-text {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-medium);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl) var(--spacing-lg);
    text-align: center;
}

.contact-cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.contact-cta-text {
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

/* Responsive for About Page */
@media screen and (max-width: 968px) {
    .about-title {
        font-size: 36px;
    }
    
    .section-title-about {
        font-size: 28px;
    }
    
    .about-intro p {
        font-size: 16px;
    }
    
    .services-intro {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .about-page {
        padding: var(--spacing-lg) 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-intro {
        padding: var(--spacing-md);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-cta {
        padding: var(--spacing-lg);
    }
    
    .contact-cta-section {
        padding: var(--spacing-lg);
    }
    
    .contact-cta-title {
        font-size: 24px;
    }
    
    .contact-cta-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .about-title {
        font-size: 24px;
    }
    
    .service-icon {
        font-size: 36px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */

.products-page {
    margin-top: 70px;
    padding: var(--spacing-xxl) 0;
    min-height: calc(100vh - 200px);
}

/* Products Header */
.products-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.products-title {
    font-size: 48px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.products-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.products-subtitle strong {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
}

/* Product Card */
.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition-medium);
    position: relative;
        display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

/* Product Number Badge */
.product-number {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--color-gray-light);
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}


.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centre verticalement le prix et le bouton */
    gap: var(--spacing-sm);
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.product-price {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}


/* How to Order Section */
.how-to-order {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl) var(--spacing-lg);
    border: 2px solid var(--color-primary);
}

.order-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.order-title {
    font-size: 32px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.order-step {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.order-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: var(--font-weight-bold);
}

.step-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.6;
}

.step-text strong {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Responsive for Products Page */
@media screen and (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .products-title {
        font-size: 36px;
    }
    
    .order-title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .products-page {
        padding: var(--spacing-lg) 0;
    }
    
    .products-title {
        font-size: 28px;
    }
    
    .products-subtitle {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: var(--spacing-md);
    }
    
    .product-image {
        height: 240px;
    }
    
    .order-steps {
        grid-template-columns: 1fr;
    }
    
    .how-to-order {
        padding: var(--spacing-lg);
    }
}

@media screen and (max-width: 480px) {
    .products-title {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 260px;
    }
    
    .order-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* ===================================
   LIGHTBOX STYLES
   =================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: var(--spacing-md);
    color: var(--color-white);
    font-size: 18px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-sm);
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10000;
    transition: color var(--transition-fast);
    line-height: 1;
    padding: 0;
    width: 50px;
    height: 50px;
}

.lightbox-close:hover {
    color: var(--color-primary);
}

/* Navigation Buttons */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    z-index: 10000;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Cursor indication on product images */
.product-image img {
    cursor: zoom-in;
}

/* Responsive Lightbox */
@media screen and (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    #lightbox-image {
        max-height: 70vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 36px;
        padding: 8px 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-caption {
        font-size: 16px;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

@media screen and (max-width: 480px) {
    #lightbox-image {
        max-height: 60vh;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 28px;
        padding: 5px 10px;
    }

    .lightbox-caption {
        font-size: 14px;
    }
}

/* ===== CAROUSEL STYLES ===== */
.product-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Carré */
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
}

.carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Pour images 3000x2000 dans un carré */
    cursor: pointer;
}

/* Boutons navigation carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-btn svg {
    color: #333;
}

/* Indicateurs carousel */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: rgba(255, 255, 255, 1);
    width: 24px;
    border-radius: 4px;
}

/* Bouton agrandir */
.carousel-expand {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-expand:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.carousel-expand svg {
    color: #333;
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-carousel-container {
    width: 100%;
    height: calc(100% - 100px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    align-items: center;
}

.lightbox-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
    line-height: 1;
}

.lightbox-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-btn svg {
    color: #333;
    width: 30px;
    height: 30px;
}

.lightbox-caption {
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.lightbox-indicators {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.lightbox-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-indicator.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-expand {
        width: 30px;
        height: 30px;
    }
    
    .lightbox-btn {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

.logo-img {
  height: 40px;      /* ajuste la taille du logo */
  width: auto;       /* garde les proportions */
  display: block;    /* évite les espaces indésirables */
  object-fit: contain;
}

/* Badge numéro avec option N&B */
.product-number-nb {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.7rem 1.2rem;
    min-width: 140px;
}

.model-num {
    font-size: 1rem;
    font-weight: 700;
}

/* --- Spécial Noir & Blanc : look photo argentique --- */
.nb-indicator {
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    background: linear-gradient(135deg, #333, #666);
    color: #f2f2f2;
    border: 1px solid white;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

/* Pastille Fille/Garçon coupée */
.split-gender {
    display: inline-block;
    padding: 0.3em 0.8em;
    margin-left: 0.5em;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(to right, #ff7eb9 30%, #4aa0f2 60%);
    border: 1px solid white;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    text-align: center;
}


.product-card .product-carousel,
.product-card .carousel-container,
.product-card .carousel-track,
.product-card .carousel-slide {
    background-color: #ffffff !important;
}



.product-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1; /* Prend tout l'espace disponible dans la carte */
}

.product-description {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1; /* Prend tout l'espace disponible */
}

/* ============================================
   CTA SECTION - Version Moderne Rose
============================================ */
/* Section pleine largeur, mais sans fond coloré */
.cta-section {
    background: none; /* ou transparent */
    padding: 60px 0;  /* espace haut/bas */
    text-align: center;
    margin: 60px 0 0 0;
    position: relative;
}

/* Bloc centré avec fond dégradé et arrondi */
.cta-content {
    max-width: 800px;              /* largeur max souhaitée */
    margin: 0 auto;                /* centrer horizontalement */
    padding: 60px 20px;            /* espace interne */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;           /* coins arrondis */
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}


/* Pattern de fond subtil */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Badge au-dessus du titre */
.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-title {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Bouton CTA moderne */
.btn-cta {
    background: #fff;
    color: var(--color-primary);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 3px solid transparent;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    background: var(--color-primary-light);
    border-color: #fff;
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(5px);
}

/* Info sous le bouton */
.cta-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 20px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.05rem;
    }
    
    .btn-cta {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .cta-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}
 
/* ===================================
   GOOGLE REVIEWS SECTION
   =================================== */

.google-reviews {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
}

.reviews-intro {
    font-size: 18px;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.reviews-widget {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-primary);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--color-border);
}

.google-logo {
    flex-shrink: 0;
}

.reviews-rating {
    text-align: left;
}

.rating-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
}

.star {
    color: #FFC107;
    font-size: 28px;
}

.rating-text {
    font-size: 24px;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.rating-text strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.rating-count {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.reviews-cta {
    text-align: center;
}

.reviews-note {
    margin-top: var(--spacing-md);
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
}

.reviews-note strong {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-rating {
        text-align: center;
    }
    
    .rating-stars {
        justify-content: center;
    }
    
    .reviews-widget {
        padding: var(--spacing-lg);
    }
}

/*site en cours de création*/
.site-info {
  text-align: center;
  padding: 100px;
  font-family: Arial, sans-serif;
}

.info-box {
  display: inline-block; /* centre l’encadré */
  background-color: #fff3cd; /* jaune clair */
  color: #856404; /* texte marron foncé */
  border: 3px solid #ffc107; /* bordure visible */
  border-radius: 10px; /* coins arrondis */
  padding: 40px 30px;
  max-width: 800px; /* ne prend pas toute la largeur */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* légère ombre pour faire ressortir */
}

.info-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
}

.info-box p {
  font-size: 18px;
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION - Version Simple
============================================ */
.faq {
    background: none;        /* pas de fond sur toute la largeur */
    padding: 80px 0;         /* espace haut/bas */
    margin: 60px 0;
}

.faq h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;        /* largeur maximale du bloc */
    margin: 0 auto;          /* centrer horizontalement */
    padding: 30px 20px;      /* espace interne */
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;     /* coins arrondis */
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--color-primary-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 15px;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
}

.print-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-left: 5px solid #ff9800;
    padding: 20px 25px;
    margin: 30px auto;
    border-radius: 12px;
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    animation: pulse-warning 2s infinite;
}

.print-notice strong {
    color: #d84315;
    font-size: 1.2rem;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    }
}

/* Version responsive */
@media (max-width: 768px) {
    .print-notice {
        font-size: 1rem;
        padding: 15px 20px;
    }
}

/* =================================
   FORMULAIRE DE COMMANDE
================================= */

.order-form-section {
    max-width: 700px;
    margin: 0 auto var(--spacing-xxl);
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
}

.required {
    color: var(--color-primary);
}

.optional {
    font-weight: var(--font-weight-regular);
    color: var(--color-text-light);
    font-size: 0.85rem;
}

/* Form Inputs */
.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-help {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-xs);
}

/* Form Divider */
.form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: var(--spacing-md) 0;
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.form-divider span {
    padding: 0 var(--spacing-md);
}

/* Info Box */
.form-info-box {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-info-box svg {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.form-info-box p {
    margin: 0;
    color: var(--color-text);
}

/* Success Message */
.form-success {
    text-align: center;
    padding: var(--spacing-xl);
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: var(--radius-lg);
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: #28a745;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    color: #155724;
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: #155724;
}

/* Contact Divider */
.contact-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: var(--spacing-xxl) 0 var(--spacing-xl);
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
    font-size: 1.1rem;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--color-border);
}

.contact-divider span {
    padding: 0 var(--spacing-lg);
}

/* =================================
   CONTACT METHODS COMPACT
================================= */

.contact-methods-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

.contact-method-card-compact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.contact-method-card-compact:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.contact-method-card-compact.highlight {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
}

.contact-method-card-compact.facebook {
    background: #f0f2f5;
    border-color: #1877f2;
}

.method-icon-compact {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-method-card-compact.facebook .method-icon-compact {
    background: #1877f2;
    color: white;
}

.contact-method-card-compact h3 {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    margin-bottom: 4px;
}

.contact-method-card-compact a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.contact-method-card-compact a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* =================================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
    .order-form-section {
        padding: var(--spacing-lg);
    }

    .contact-methods-compact {
        grid-template-columns: 1fr;
    }

    .form-input,
    .form-select {
        font-size: 16px; /* Évite le zoom sur iOS */
    }
}

/* =================================
   CHECKBOXES MODÈLES - VERSION NATIVE
================================= */

.models-grid-simple {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.model-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 56px;
    position: relative;
}

.model-item:hover {
    background: #f0f0f0;
    border-color: #4CAF50;
}

.model-item:active {
    transform: scale(0.98);
}

.model-item input[type="checkbox"] {
    width: 28px;
    height: 28px;
    min-width: 28px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    accent-color: #4CAF50;
}

.model-item input[type="checkbox"]:checked {
    background-color: #4CAF50;
}

.model-item input[type="checkbox"]:checked ~ .model-text {
    font-weight: 600;
    color: #4CAF50;
}

.model-text {
    font-size: 16px;
    color: #333;
    user-select: none;
    flex: 1;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .model-item {
        padding: 18px;
        min-height: 60px;
    }
    
    .model-item input[type="checkbox"] {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .model-text {
        font-size: 17px;
    }
}

/* --- Indicateurs de catégorie --- */
.voeux-indicator,
.noel-indicator {
    display: inline-block;
    padding: 0.3em 0.8em;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Spécial Vœux : doré sur fond noir --- */
.voeux-indicator {
    background-color: #000; /* fond noir élégant */
    color: #d4af37; /* doré classique */
    border: 1px solid white;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

/* --- Spécial Noël : blanc sur vert sapin --- */
.noel-indicator {
    background-color: #145A32; /* vert sapin profond */
    color: #fff;
    border: 1px solid white;
    box-shadow: 0 0 6px rgba(14, 63, 34, 0.4);
}

/* Menu de filtres */
.filter-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 30px 0 40px;
    padding: 20px 15px; /* Ajout padding horizontal */
    background: #f8f9fa;
    border-radius: 15px;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Empêche le retour à la ligne dans le bouton */
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.filter-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}
.product-card.hidden {
    display: none;
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* RESPONSIVE FILTRES */
@media (max-width: 768px) {
    .filter-menu {
        gap: 10px;
        padding: 15px 10px;
        margin: 20px 0 30px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
        flex: 1 1 auto; /* Les boutons s'adaptent */
        min-width: 140px; /* Largeur minimum */
    }
}

@media (max-width: 480px) {
    .filter-menu {
        flex-direction: column; /* Boutons empilés sur très petit écran */
        gap: 8px;
        padding: 12px;
    }
    
    .filter-btn {
        width: 100%; /* Pleine largeur */
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* ============================================
   HERO PROMO NOËL/VŒUX
   ============================================ */

.hero-promo {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a1f3a 100%);
    padding: 140px 0 60px; /* Ajout padding top pour éviter nav */
    position: relative;
    overflow: hidden;
}

/* Effet de neige animé en arrière-plan */
.hero-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent);
    background-size: 200px 200px, 300px 300px, 250px 250px, 280px 280px;
    opacity: 0.3;
    animation: snowfall 20s linear infinite;
}

@keyframes snowfall {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 200px, 0 300px, 0 250px, 0 280px; }
}

.hero-promo-container {
    position: relative;
    z-index: 1;
}

.hero-promo-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Badge promotionnel */
.hero-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1a1f3a;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.badge-sparkle {
    font-size: 18px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.7; transform: rotate(180deg); }
}

/* Titre */
.hero-promo-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Description */
.hero-promo-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Image promotionnelle */
.hero-promo-image {
    position: relative;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-promo-image:hover {
    transform: scale(1.02);
}

.hero-promo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.promo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    color: #1a1f3a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Boutons CTA */
.hero-promo-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
    background: white;
    color: #1a1f3a;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Features */
.hero-promo-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.promo-feature .feature-icon {
    font-size: 24px;
}

/* Séparateur décoratif */
.section-divider {
    position: relative;
    margin-top: -1px;
    color: #f8f9fa;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-promo {
        padding: 120px 20px 40px; /* Plus de padding top mobile */
    }
    
    .hero-promo-container {
        padding: 0 15px; /* Padding horizontal */
    }
    
    .hero-promo-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 16px;
    }
    
    .badge-sparkle {
        font-size: 16px;
    }
    
    .hero-promo-title {
        font-size: 28px; /* Réduit pour mobile */
        margin-bottom: 16px;
    }
    
    .hero-promo-description {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-promo-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-promo-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .promo-feature {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-promo {
        padding: 110px 15px 30px;
    }
    
    .hero-promo-title {
        font-size: 24px;
    }
    
    .hero-promo-description {
        font-size: 14px;
    }
}


.hero-promo-carousel {
    width: 300px;          /* largeur du carrousel */
    height: 500px;         /* hauteur adaptée aux images verticales */
    overflow: hidden;
    margin: 0 auto;
}

.hero-promo-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-promo-carousel .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   HERO SECTION - Version texte centrée ROSE
============================================ */
.hero {
    background: none;
    padding: 140px 0 80px; /* Augmenté de 120px à 140px pour éviter le chevauchement */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.hero-content-full {
    width: 100%;
}

/* ... reste du code hero inchangé ... */

/* Responsive CORRIGÉ */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px; /* Plus de padding top + padding horizontal */
    }
    
    .hero-container {
        padding: 40px 20px; /* Réduit mais suffisant */
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .hero .btn-primary {
        padding: 15px 35px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 110px 15px 50px; /* Encore plus d'espace pour très petits écrans */
    }
    
    .hero-container {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
}

/* ===================================
   NOUVELLES SECTIONS SEO
   =================================== */

/* ============================================
   HOW IT WORKS SECTION (Comment ça marche)
   ============================================ */

.how-it-works {
    background-color: var(--color-white);
    padding: var(--spacing-xxl) 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--color-primary);
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.step-card p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    text-align: left;
}

/* ============================================
   WHY CHOOSE SECTION (Pourquoi choisir)
   ============================================ */

.why-choose {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-white) 100%);
    padding: var(--spacing-xxl) 0;
}

.benefits-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    color: var(--color-text);
    line-height: 1.8;
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-item {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition-medium);
}

.benefit-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ============================================
   OCCASIONS SECTION (Pour toutes occasions)
   ============================================ */

.occasions {
    background-color: var(--color-white);
    padding: var(--spacing-xxl) 0;
}

.occasions-intro {
    font-size: 18px;
    color: var(--color-text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.occasion-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-border);
    transition: all var(--transition-medium);
}

.occasion-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.occasion-card h3 {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.occasion-card p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}



/* ============================================
   RESPONSIVE POUR NOUVELLES SECTIONS
   ============================================ */

@media screen and (max-width: 968px) {
    .steps-grid,
    .benefits-grid,
    .occasions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .intro-text,
    .occasions-intro {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .how-it-works,
    .why-choose,
    .occasions {
        padding: var(--spacing-lg) 0;
    }
    
    .steps-grid,
    .benefits-grid,
    .occasions-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .step-card,
    .benefit-item,
    .occasion-card {
        padding: var(--spacing-lg);
    }
    
    .step-card .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    

}

@media screen and (max-width: 480px) {
    .step-card h3,
    .benefit-item h3,
    .occasion-card h3 {
        font-size: 18px;
    }
    
    .step-card p,
    .benefit-item p,
    .occasion-card p {
        font-size: 15px;
    }
}

/* ===================================
   FOOTER - VERSION SIMPLE QUI MARCHE
   =================================== */

.footer {
    background-color: var(--color-gray-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
}

.footer-about h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.footer-about p,
.footer-contact p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    font-size: 14px;
    color: var(--color-text-light);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.footer-services li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.footer-bottom {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-link {
    color: var(--color-text-light);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-separator {
    color: var(--color-border);
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .footer-separator {
        display: none;
    }
}


/* ============================================
   CONTACT PAGE - INTRO SECTION
   ============================================ */

.contact-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-left: 4px solid #ff3e6c;;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-intro h2 {
    color: var(--heading-color, #1a202c);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-intro p {
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.contact-intro p:last-of-type {
    margin-bottom: 0;
}



/* Steps List */
.steps-list {
    background: white;
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    margin: 1.5rem 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.steps-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
}

.steps-list li:last-child {
    margin-bottom: 0;
}

.steps-list li::marker {
    color: #ff3e6c;
    font-weight: 700;
    font-size: 1.1em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .contact-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-intro h2 {
        font-size: 1.5rem;
    }
    
    .steps-list {
        padding: 1.25rem 1.25rem 1.25rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-intro {
        padding: 1.25rem;
    }
    
    .contact-intro h2 {
        font-size: 1.35rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .steps-list {
        padding: 1rem 1rem 1rem 1.75rem;
        font-size: 0.95rem;
    }
}

.smartpix-intro-section {
    background-color: #121212; /* fond sombre */
    color: #ffffff;
    padding: 60px 20px;
}

.smartpix-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.smartpix-logo img {
    max-width: 280px; /* logo agrandi */
    height: auto;
}

.smartpix-content {
    flex: 1;
}

.smartpix-title {
    font-family: 'Satisfy', cursive; /* police personnalisée */
    font-size: 1,5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.smartpix-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.smartpix-btn-container {
    margin-top: 25px;
}

.smartpix-btn {
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.smartpix-btn:hover {
    background-color: #ff6289;
    transform: translateY(-2px);
}

/* Couleur primaire pour les strong */
.primary-text {
    color: #ff6289; /* Remplace par ta couleur primaire exacte */
    font-weight: bold; /* Optionnel si tu veux insister */
}

