/**
 * main.css - Styles principaux pour Oceanic Container Line
 * Version: 2.0 - Mise à jour complète
 */

/* ============================================================
   1. RESET & VARIABLES
   ============================================================ */

:root {
    --primary: #1a3c6e;
    --primary-dark: #0f1a2e;
    --primary-light: #2d5a8e;
    --secondary: #e94560;
    --secondary-hover: #d63851;
    --white: #ffffff;
    --light: #f4f6f9;
    --gray: #b0c4de;
    --dark: #1a1a2e;
    --text: #2d2d44;
    --text-light: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --danger: #dc3545;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   2. TYPOGRAPHIE
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ============================================================
   3. BOUTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary:hover {
    background: var(--secondary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-lg { padding: 14px 32px; font-size: 1.1rem; }
.btn-sm { padding: 6px 16px; font-size: 0.85rem; }

/* ============================================================
   4. SECTION HEADERS
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.section-header .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   5. HERO SECTION
   ============================================================ */

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(233, 69, 96, 0.05);
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero-title i { color: var(--secondary); }

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

/* ============================================================
   6. PRODUCT CARDS - STYLES PRINCIPAUX
   ============================================================ */

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: var(--light);
    padding-top: 100%;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.badge-new { background: var(--success); color: var(--white); }
.badge-neuwertig { background: var(--info); color: var(--white); }
.badge-used { background: var(--warning); color: var(--dark); }

.product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px;
    line-height: 1.3;
    min-height: 2.6rem;
    max-height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: var(--primary);
}
.product-title a:hover {
    color: var(--secondary);
}

.product-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
    min-height: 1.6rem;
}

.product-meta span {
    display: inline-block;
    margin-right: 12px;
}

.product-meta i {
    margin-right: 4px;
    color: var(--secondary);
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    margin-top: auto;
}

.product-price .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .shipping-info {
    font-size: 0.7rem;
    color: var(--text-light);
}

.product-actions {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    min-width: 0;
}

/* ============================================================
   7. CATEGORY CARDS
   ============================================================ */

.category-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.category-card h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-card .category-count {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 2px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* ============================================================
   8. ABOUT SECTION
   ============================================================ */

.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-section h2 { font-size: 2.2rem; margin-bottom: 8px; }
.about-section h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-features { margin: 24px 0; }

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--light);
    transition: var(--transition);
}

.feature-item:hover { background: #e8ecf1; }

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}

.feature-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ============================================================
   9. CATEGORIES SECTION
   ============================================================ */

.categories-section {
    padding: 60px 0;
    background: var(--light);
}

/* ============================================================
   10. SPECIAL SECTION
   ============================================================ */

.special-section { padding: 60px 0; }

.special-section .mini-product-card { transition: var(--transition); }
.special-section .mini-product-card:hover {
    transform: scale(1.02);
    background: rgba(255,255,255,0.15) !important;
}

/* ============================================================
   11. SHIPPING SECTION
   ============================================================ */

.shipping-section {
    padding: 60px 0;
    background: var(--light);
}

.shipping-card {
    transition: var(--transition);
}
.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}
.shipping-card i { transition: var(--transition); }
.shipping-card:hover i { transform: scale(1.1); }

/* ============================================================
   12. CTA SECTION
   ============================================================ */

.cta-section { padding: 60px 0; }

/* ============================================================
   13. BREADCRUMB
   ============================================================ */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a { color: var(--primary); text-decoration: none; }
.breadcrumb-item a:hover { color: var(--secondary); }
.breadcrumb-item.active { color: var(--secondary); }

/* ============================================================
   14. FORMULAIRE
   ============================================================ */

.form-control, .form-select {
    border: 2px solid #dee2e6;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 60, 110, 0.15);
}

.form-control.is-invalid { border-color: var(--danger); }
.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.invalid-feedback {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============================================================
   15. TABLES
   ============================================================ */

.table {
    border-radius: var(--radius);
    overflow: hidden;
}

.table thead {
    background: var(--primary);
    color: var(--white);
}

.table tbody tr:hover {
    background: rgba(26, 60, 110, 0.03);
}

/* ============================================================
   16. ACCORDION
   ============================================================ */

.accordion-button {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    background: var(--white);
    padding: 20px 24px;
}

/* ============================================================
   17. COOKIE CONSENT
   ============================================================ */

.cookie-consent-banner {
    background: var(--primary-dark);
    color: var(--white);
    padding: 16px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    border-top: 3px solid var(--secondary);
}

.cookie-consent-banner a {
    color: var(--secondary) !important;
    text-decoration: underline;
}

.cookie-consent-banner a:hover {
    color: var(--white) !important;
}

/* ============================================================
   18. SIDEBAR
   ============================================================ */

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar .card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar .card-body { padding: 24px; }

/* ============================================================
   19. LEGAL PAGE
   ============================================================ */

.legal-page .legal-container {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 5px solid #003366;
}

.legal-page .legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.legal-page .legal-nav a {
    color: #003366;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    background: #f0f4f8;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.legal-page .legal-nav a:hover {
    background: #e94560;
    color: #fff;
}

.legal-page h1 {
    color: #003366;
    font-size: 2em;
    margin-bottom: 10px;
}

.legal-page h2 {
    color: #003366;
    font-size: 1.5em;
    margin-top: 30px;
}

.legal-page h3 {
    color: #003366;
    font-size: 1.1em;
    margin-top: 20px;
}

.legal-page p {
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    color: #555;
    line-height: 1.8;
    padding-left: 20px;
}

.legal-page ul li {
    margin-bottom: 6px;
}

/* Protection email */
.email-protected a {
    color: #e94560;
    text-decoration: none;
}

.email-protected a:hover {
    text-decoration: underline;
}

/* ============================================================
   20. FOOTER
   ============================================================ */

.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.site-footer h4, .site-footer h5 { color: var(--white); }
.site-footer p { color: var(--gray); }

.site-footer ul {
    list-style: none;
    padding: 0;
}
.site-footer ul li { margin-bottom: 10px; }

.site-footer ul li a {
    color: var(--gray);
    transition: var(--transition);
    text-decoration: none;
}
.site-footer ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.site-footer .social-links a {
    display: inline-block;
    margin-right: 16px;
    font-size: 1.2rem;
    color: var(--gray);
    transition: var(--transition);
}
.site-footer .social-links a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================================
   21. NAVIGATION - STYLES COMPLÉMENTAIRES
   ============================================================ */

.navbar-brand {
    transition: var(--transition);
}
.navbar-brand:hover { opacity: 0.9; }

.navbar-nav .nav-link {
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link i {
    margin-right: 6px;
}

.dropdown-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu .dropdown-item {
    transition: var(--transition);
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(233, 69, 96, 0.2);
    color: var(--secondary);
    padding-left: 24px;
}

.top-bar {
    font-size: 0.85rem;
}
.top-bar i {
    margin-right: 6px;
}

/* ============================================================
   22. RESPONSIVE - BREAKPOINTS
   ============================================================ */

/* Extra Small Devices - Très petits téléphones */
@media (max-width: 374.98px) {
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    h3 { font-size: 1rem; }
    
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .stat-number { font-size: 1.5rem; }
    
    .product-title { font-size: 0.8rem; }
    .product-price .price { font-size: 0.9rem; }
    
    .btn { padding: 8px 16px; font-size: 0.8rem; }
    .btn-lg { padding: 10px 20px; font-size: 0.9rem; }
    
    .product-actions {
        flex-direction: column;
        gap: 4px;
    }
    .product-actions .btn {
        width: 100%;
        padding: 6px 4px;
        font-size: 0.75rem;
    }
}

/* Small Devices - Téléphones */
@media (max-width: 575.98px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .section-header h2 { font-size: 1.6rem; }
    .section-header .section-subtitle { font-size: 0.95rem; }
    
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 24px; }
    .stat-number { font-size: 1.8rem; }
    
    .top-products-section,
    .categories-section,
    .special-section,
    .shipping-section,
    .cta-section { padding: 30px 0; }
    
    .about-section {
        padding: 30px 0;
        text-align: center;
    }
    .about-features { text-align: left; }
    
    .product-card { border-radius: var(--radius-sm); }
    .product-body { padding: 12px; }
    .product-title {
        font-size: 0.85rem;
        min-height: 2.2rem;
        max-height: 2.2rem;
    }
    .product-price .price { font-size: 0.95rem; }
    .product-actions .btn {
        font-size: 0.7rem;
        padding: 6px 2px;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    .category-icon { font-size: 2rem; }
    .category-card h4 { font-size: 0.95rem; }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }
    
    .site-footer {
        padding: 30px 0 16px;
        text-align: center;
    }
    .footer-bottom { text-align: center; }
    
    .legal-page .legal-container { padding: 20px; }
    .legal-page .legal-nav { flex-direction: column; }
    .legal-page .legal-nav a { width: 100%; text-align: center; }
    
    .cookie-consent-banner .row { text-align: center; }
    .cookie-consent-banner .col-lg-4 { margin-top: 12px; }
    
    .filter-bar .btn-group {
        flex-wrap: wrap;
        margin-top: 8px;
    }
    .filter-bar .btn-group .btn {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* Medium Devices - Tablettes */
@media (min-width: 576px) and (max-width: 767.98px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-section { padding: 50px 0; }
    .hero-stats { gap: 30px; }
    .section-header h2 { font-size: 1.8rem; }
}

/* Large Mobile - Grands téléphones */
@media (max-width: 991.98px) {
    .hero-image { margin-top: 30px; }
    .about-image { margin-top: 30px; }
    
    .sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .table-responsive { overflow-x: auto; }
    .table thead { display: none; }
    .table tbody tr {
        display: block;
        border: 1px solid #dee2e6;
        border-radius: var(--radius-sm);
        margin-bottom: 16px;
        padding: 12px;
    }
    .table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 0;
        border: none;
    }
    .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary);
    }
    .table tbody td:first-child { padding-top: 0; }
    .table tbody td:last-child { padding-bottom: 0; }
    
    .site-footer .row > div {
        margin-bottom: 30px;
    }
    .site-footer .row > div:last-child { margin-bottom: 0; }
}

/* Large Devices - Desktops */
@media (min-width: 992px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-section {
        padding: 80px 0;
        min-height: 500px;
        display: flex;
        align-items: center;
    }
    .hero-title { font-size: 3.2rem; }
    .site-footer .row > div { margin-bottom: 0; }
}

/* Extra Large Devices */
@media (min-width: 1200px) {
    .container { max-width: 1140px; }
    .hero-title { font-size: 3.5rem; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
}

/* ============================================================
   23. PRINT STYLES
   ============================================================ */

@media print {
    .top-bar,
    header,
    .navbar,
    .usp-bar,
    .hero-section .hero-buttons,
    .cookie-consent-banner,
    .sidebar,
    .cta-section,
    .social-links,
    .site-footer .footer-bottom,
    .no-print {
        display: none !important;
    }
    
    body {
        background: var(--white) !important;
        color: var(--dark) !important;
        font-size: 12pt;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .product-card {
        page-break-inside: avoid;
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
    
    a {
        color: var(--dark) !important;
        text-decoration: underline !important;
    }
    
    .table {
        border: 1px solid #ddd;
    }
    .table thead {
        background: #f4f4f4 !important;
        color: var(--dark) !important;
    }
    .table th, .table td {
        border: 1px solid #ddd !important;
        padding: 8px !important;
    }
}

/* ============================================================
   24. ACCESSIBILITÉ
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* ============================================================
   25. NOTIFICATIONS
   ============================================================ */

.ctn-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 450px;
    animation: slideInRight 0.4s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 575.98px) {
    .ctn-notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        max-width: none !important;
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }
}

/* ============================================================
   26. EMAIL PROTECTION
   ============================================================ */

.email-protected {
    display: inline-block;
}


/* Logo responsive */
.navbar-brand img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 45px;
    }
}

/* Header blanc avec contraste */
header {
    background: #ffffff;
    border-bottom: 3px solid #e94560;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Liens du menu en bleu foncé */
.navbar-nav .nav-link {
    color: #1a3c6e !important;
}

.navbar-nav .nav-link:hover {
    color: #e94560 !important;
}

.navbar-nav .nav-link.active {
    color: #e94560 !important;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    background: #e94560;
}

/* Dropdown dans le header blanc */
.dropdown-menu {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dropdown-item {
    color: #1a3c6e !important;
}

.dropdown-item:hover {
    background: rgba(233, 69, 96, 0.1) !important;
    color: #e94560 !important;
}

/* Hamburger menu sur mobile - header blanc */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border-color: rgba(0,0,0,0.2) !important;
    }
    
    .navbar-collapse {
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link {
        color: #1a3c6e !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link:hover {
        background: rgba(233, 69, 96, 0.05) !important;
    }
    
    .navbar-collapse .navbar-nav .nav-link.active {
        color: #e94560 !important;
        background: rgba(233, 69, 96, 0.08) !important;
    }
    
    .navbar-collapse .dropdown-menu {
        background: rgba(245, 245, 245, 0.95) !important;
        border: 1px solid #e0e0e0 !important;
    }
    
    .navbar-collapse .dropdown-item {
        color: #1a3c6e !important;
    }
}