/*
Theme Name: MauriPêche Export
Theme URI: https://mauripeche-export.mr
Author: MauriPêche Export
Description: Professional fish export theme – Mauritania
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: mauripeche-export
Tags: business, multilingual, rtl-language-support, responsive-layout
*/

/* ── Variables ───────────────────────────────────────── */
:root {
    --navy:      #0D2461;
    --navy-dark: #091a4a;
    --blue:      #1A6FD4;
    --orange:    #E8A820;
    --orange-dk: #c9911a;
    --white:     #FFFFFF;
    --bg:        #F4F6F9;
    --border:    #E2E8F0;
    --text:      #1A202C;
    --muted:     #64748B;
    --green:     #16A34A;
    --header-h:  80px;
    --container: 1200px;
    --r:         8px;
    --r-lg:      14px;
    --sh:        0 2px 8px rgba(0,0,0,.08);
    --sh-lg:     0 8px 32px rgba(0,0,0,.13);
    --t:         .25s ease;
}

/* ── Reset ───────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:'Inter',system-ui,sans-serif;color:var(--text);background:var(--white);line-height:1.65;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;transition:color var(--t)}
ul,ol{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea,select{font-family:inherit}

/* ── Container ───────────────────────────────────────── */
.container{max-width:var(--container);margin:0 auto;padding:0 1.5rem}
.page-wrapper{padding-top:var(--header-h)}

/* ── Typography ──────────────────────────────────────── */
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.25;color:var(--navy)}
h1{font-size:clamp(2.2rem,5vw,3.75rem)}
h2{font-size:clamp(1.5rem,3vw,2.2rem)}
h3{font-size:1.2rem}
p{margin-bottom:1rem}
p:last-child{margin-bottom:0}
.section-label{display:block;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:.4rem}

/* ── Buttons ─────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.72rem 1.75rem;border-radius:6px;font-weight:600;font-size:.9rem;transition:all var(--t);border:2px solid transparent;white-space:nowrap;cursor:pointer}
.btn-orange{background:var(--orange);color:var(--navy);border-color:var(--orange)}
.btn-orange:hover{background:var(--orange-dk);border-color:var(--orange-dk);color:var(--navy);transform:translateY(-2px);box-shadow:0 6px 20px rgba(232,168,32,.35)}
.btn-navy{background:var(--navy);color:var(--white);border-color:var(--navy)}
.btn-navy:hover{background:var(--navy-dark);color:var(--white);transform:translateY(-2px);box-shadow:0 6px 20px rgba(13,36,97,.35)}
.btn-outline-white{background:transparent;color:var(--white);border-color:rgba(255,255,255,.7)}
.btn-outline-white:hover{background:var(--white);color:var(--navy)}
.btn-outline-navy{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline-navy:hover{background:var(--navy);color:var(--white)}
.btn-lg{padding:.9rem 2.25rem;font-size:1rem}
.btn-sm{padding:.45rem 1.1rem;font-size:.825rem}
.btn-icon{display:inline-flex;align-items:center;gap:.4rem}

/* ═══════════════════════════════════
   HEADER / NAVIGATION
═══════════════════════════════════ */
#site-header{
    position:fixed;top:0;left:0;right:0;z-index:1000;
    height:var(--header-h);background:var(--white);
    box-shadow:0 1px 0 var(--border);
    transition:box-shadow var(--t);
}
#site-header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.12)}
.header-inner{display:flex;align-items:center;height:100%;gap:1.5rem}

/* Logo */
.site-logo{display:flex;align-items:center;gap:.65rem;text-decoration:none;flex-shrink:0}
.site-logo svg{width:42px;height:42px;flex-shrink:0;overflow:visible}
.logo-name{font-size:1.5rem;font-weight:800;color:var(--navy);line-height:1;letter-spacing:-.02em}
.logo-sub{font-size:.58rem;font-weight:600;color:var(--muted);letter-spacing:.06em;text-transform:uppercase;display:block;white-space:nowrap}

/* Primary nav */
#main-navigation{flex:1}
#primary-menu{display:flex;align-items:center;justify-content:center;gap:0}
#primary-menu>li>a{
    display:block;padding:0 .9rem;
    height:var(--header-h);line-height:var(--header-h);
    font-size:.875rem;font-weight:500;color:var(--navy);
    position:relative;transition:color var(--t);white-space:nowrap;
}
#primary-menu>li>a::after{
    content:'';position:absolute;bottom:0;left:.9rem;right:.9rem;
    height:3px;background:var(--navy);border-radius:3px 3px 0 0;
    transform:scaleX(0);transition:transform var(--t);
}
#primary-menu>li>a:hover{color:var(--blue)}
#primary-menu>li>a:hover::after{background:var(--blue);transform:scaleX(1)}
#primary-menu>li.current-menu-item>a{font-weight:700}
#primary-menu>li.current-menu-item>a::after{transform:scaleX(1)}

/* Submenu */
#primary-menu li{position:relative}
#primary-menu .sub-menu{
    position:absolute;top:calc(100% + 4px);left:0;
    min-width:200px;background:var(--white);
    border:1px solid var(--border);border-radius:var(--r);
    padding:.4rem;opacity:0;visibility:hidden;
    transform:translateY(-8px);transition:all var(--t);
    box-shadow:var(--sh-lg);z-index:200;
}
#primary-menu li:hover>.sub-menu{opacity:1;visibility:visible;transform:translateY(0)}
#primary-menu .sub-menu a{
    display:block;padding:.45rem .75rem;
    font-size:.85rem;color:var(--text);
    border-radius:5px;transition:background var(--t);
}
#primary-menu .sub-menu a:hover{background:var(--bg);color:var(--navy)}

/* Header actions */
.header-actions{display:flex;align-items:center;gap:.875rem;flex-shrink:0}

/* Language switcher */
.lang-switcher{position:relative}
.lang-current{
    display:flex;align-items:center;gap:4px;
    font-size:.825rem;font-weight:600;color:var(--navy);
    padding:.38rem .65rem;border:1px solid var(--border);
    border-radius:5px;cursor:pointer;transition:all var(--t);background:none;
}
.lang-current:hover{border-color:var(--blue);color:var(--blue)}
.lang-arrow{font-size:.6rem;transition:transform var(--t)}
.lang-switcher:hover .lang-arrow,.lang-switcher:focus-within .lang-arrow{transform:rotate(180deg)}
.lang-dropdown{
    position:absolute;top:calc(100% + 4px);right:0;
    background:var(--white);border:1px solid var(--border);
    border-radius:var(--r);padding:.35rem;min-width:120px;
    box-shadow:var(--sh-lg);opacity:0;visibility:hidden;
    transform:translateY(-6px);transition:all var(--t);z-index:300;
}
.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.lang-dropdown a{
    display:flex;align-items:center;gap:.5rem;
    padding:.42rem .75rem;font-size:.825rem;
    color:var(--text);border-radius:5px;transition:background var(--t);
}
.lang-dropdown a:hover{background:var(--bg);color:var(--navy)}
.lang-dropdown a.active{color:var(--navy);font-weight:700}

/* Mobile toggle */
.menu-toggle{
    display:none;flex-direction:column;gap:5px;
    padding:7px;border-radius:5px;transition:background var(--t);
}
.menu-toggle:hover{background:var(--bg)}
.menu-toggle span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all var(--t)}
.menu-toggle.is-active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.menu-toggle.is-active span:nth-child(2){opacity:0}
.menu-toggle.is-active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.bx-hero{
    position:relative;display:flex;flex-direction:column;
    min-height:calc(100vh - var(--header-h));min-height:600px;
    background:
        linear-gradient(to right,rgba(9,26,74,.90) 0%,rgba(9,26,74,.78) 42%,rgba(9,26,74,.38) 100%),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);
}
.bx-hero-main{flex:1;display:flex;align-items:center;padding:4rem 0 2rem}
.bx-hero-content{max-width:580px;color:var(--white)}
.bx-hero-content h1{
    font-size:clamp(2.25rem,5vw,3.75rem);font-weight:800;
    color:var(--white);line-height:1.15;margin-bottom:1.25rem;
}
.bx-hero-content p{
    font-size:1.05rem;color:rgba(255,255,255,.80);
    line-height:1.75;margin-bottom:2rem;max-width:500px;
}
.bx-hero-btns{display:flex;gap:1rem;flex-wrap:wrap}

/* Hero strip */
.bx-hero-strip{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
    border-top:1px solid rgba(255,255,255,.14);
    padding:1.25rem 0;
}
.bx-strip-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.bx-strip-item{
    display:flex;align-items:center;gap:.8rem;
    padding:0 1.5rem;color:var(--white);
    border-right:1px solid rgba(255,255,255,.14);
}
.bx-strip-item:last-child{border-right:none}
.bx-strip-icon{font-size:1.65rem;flex-shrink:0}
.bx-strip-item strong{display:block;font-size:.85rem;font-weight:600}
.bx-strip-item span{font-size:.72rem;opacity:.72}

/* ═══════════════════════════════════
   STATS BAR
═══════════════════════════════════ */
.bx-stats{background:var(--white);padding:3rem 0;box-shadow:0 4px 20px rgba(0,0,0,.06);position:relative;z-index:2}
.bx-stats-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.bx-stat{text-align:center;padding:1.5rem 2rem;border-right:1px solid var(--border)}
.bx-stat:last-child{border-right:none}
.bx-stat-icon{font-size:2.25rem;margin-bottom:.7rem;color:var(--blue)}
.bx-stat-num{font-size:2.5rem;font-weight:800;color:var(--blue);line-height:1;margin-bottom:.3rem}
.bx-stat-lbl{font-size:.875rem;color:var(--muted)}

/* ═══════════════════════════════════
   SECTION HEADER (with view-all link)
═══════════════════════════════════ */
.bx-sh{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:2.5rem;gap:1rem;flex-wrap:wrap}
.bx-sh h2{margin:0}
.bx-view-all{font-size:.875rem;font-weight:600;color:var(--blue);white-space:nowrap;display:flex;align-items:center;gap:4px;transition:gap var(--t)}
.bx-view-all:hover{gap:8px;color:var(--navy)}

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.bx-about{padding:5rem 0;background:var(--white)}
.bx-about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.bx-about-img{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-lg)}
.bx-about-img img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.bx-about-text h2{font-size:clamp(1.5rem,3vw,2.1rem);margin:.5rem 0 1.25rem;line-height:1.3}
.bx-about-text>p{font-size:.95rem;color:var(--muted);line-height:1.8;margin-bottom:1.5rem}
.bx-about-feats{display:flex;gap:1.5rem;margin-bottom:2rem;flex-wrap:wrap}
.bx-about-feat{display:flex;align-items:center;gap:.5rem;font-size:.8rem;font-weight:600;color:var(--navy)}
.bx-feat-icon{width:36px;height:36px;background:#EBF2FD;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}

/* ═══════════════════════════════════
   PRODUCTS
═══════════════════════════════════ */
.bx-products{padding:5rem 0;background:var(--bg)}
.bx-products-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.25rem}

.bx-prod-card{
    background:var(--white);border-radius:var(--r-lg);overflow:hidden;
    border:1px solid var(--border);box-shadow:var(--sh);
    transition:all var(--t);display:flex;flex-direction:column;
}
.bx-prod-card:hover{transform:translateY(-6px);box-shadow:var(--sh-lg);border-color:rgba(26,111,212,.30)}
.bx-prod-img{position:relative;width:100%;aspect-ratio:1;overflow:hidden}
.bx-prod-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;display:block}
.bx-prod-card:hover .bx-prod-img img{transform:scale(1.06)}
.bx-prod-ico{
    position:absolute;bottom:-20px;left:50%;transform:translateX(-50%);
    width:40px;height:40px;background:var(--blue);border-radius:50%;
    border:3px solid var(--white);display:flex;align-items:center;justify-content:center;
    font-size:1rem;z-index:2;box-shadow:0 2px 8px rgba(0,0,0,.15);color:var(--white);
}
.bx-prod-body{padding:1.75rem 1rem 1.25rem;text-align:center;flex:1;display:flex;flex-direction:column;gap:.25rem}
.bx-prod-name{font-size:.95rem;font-weight:700;color:var(--navy);margin-top:.5rem}
.bx-prod-sci{font-size:.72rem;color:var(--muted);font-style:italic}
.bx-prod-type{font-size:.72rem;color:var(--muted)}
.bx-prod-link{
    display:inline-flex;align-items:center;gap:4px;
    font-size:.8rem;font-weight:600;color:var(--blue);
    margin-top:auto;padding-top:.75rem;transition:gap var(--t);text-decoration:none;
    justify-content:center;
}
.bx-prod-link:hover{gap:8px;color:var(--navy)}

/* ═══════════════════════════════════
   QUALITY / CERTIFICATIONS
═══════════════════════════════════ */
.bx-quality{
    padding:4rem 0;
    background:
        linear-gradient(to right,rgba(9,26,74,.96) 0%,rgba(9,26,74,.90) 100%),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);
}
.bx-quality-inner{display:grid;grid-template-columns:260px 1fr;gap:4rem;align-items:center}
.bx-quality-left .section-label{color:rgba(255,255,255,.55)}
.bx-quality-left h2{color:var(--white);font-size:clamp(1.25rem,2.5vw,1.7rem);line-height:1.3}
.bx-certs-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.bx-cert{
    background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);
    border-radius:10px;padding:1.5rem 1rem;text-align:center;
    transition:all var(--t);
}
.bx-cert:hover{background:rgba(255,255,255,.13);border-color:rgba(255,255,255,.30);transform:translateY(-3px)}
.bx-cert-ico{font-size:2.25rem;margin-bottom:.75rem}
.bx-cert-name{font-size:.9rem;font-weight:700;color:var(--white);margin-bottom:.35rem}
.bx-cert-desc{font-size:.72rem;color:rgba(255,255,255,.58);line-height:1.45}

/* ═══════════════════════════════════
   MARKETS
═══════════════════════════════════ */
.bx-markets{padding:5rem 0;background:var(--white)}
.bx-markets-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.bx-map-box{
    background:#EBF2FD;border-radius:var(--r-lg);
    aspect-ratio:4/3;display:flex;align-items:center;justify-content:center;
    overflow:hidden;position:relative;
}
.bx-map-box img{width:100%;height:100%;object-fit:cover;border-radius:var(--r-lg)}
.bx-map-placeholder{font-size:8rem;opacity:.35}
.bx-markets-text h2{margin:.5rem 0 1rem}
.bx-markets-text>p{font-size:.95rem;color:var(--muted);line-height:1.8;margin-bottom:1.75rem}
.bx-countries{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem 1rem;margin-bottom:2rem}
.bx-country{display:flex;align-items:center;gap:.45rem;font-size:.875rem;font-weight:500;color:var(--text)}
.bx-country .bx-flag{font-size:1.05rem}
.bx-country.bx-more{color:var(--muted);font-style:italic;font-weight:400;font-size:.82rem}

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
.bx-process{padding:5rem 0;background:var(--bg)}
.bx-process .bx-sh{flex-direction:column;align-items:center;text-align:center;gap:.25rem;margin-bottom:3.5rem}
.bx-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.bx-steps::before{
    content:'';position:absolute;
    top:35px;left:calc(12.5% + 36px);right:calc(12.5% + 36px);
    height:2px;
    background:repeating-linear-gradient(to right,var(--blue) 0,var(--blue) 8px,transparent 8px,transparent 16px);
    z-index:0;
}
.bx-step{text-align:center;padding:0 1.5rem;position:relative;z-index:1}
.bx-step-ball{
    width:72px;height:72px;border-radius:50%;
    background:var(--white);border:2px solid var(--blue);
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    margin:0 auto 1.5rem;position:relative;
    box-shadow:0 4px 14px rgba(26,111,212,.20);
}
.bx-step-n{
    position:absolute;top:-9px;right:-9px;
    width:26px;height:26px;background:var(--blue);color:var(--white);
    border-radius:50%;font-size:.7rem;font-weight:700;
    display:flex;align-items:center;justify-content:center;
    border:2px solid var(--white);
}
.bx-step-ico{font-size:1.8rem}
.bx-step h3{font-size:.95rem;font-weight:700;margin-bottom:.5rem;color:var(--navy)}
.bx-step p{font-size:.825rem;color:var(--muted);line-height:1.6;margin:0}

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.bx-cta{
    padding:4.5rem 0;
    background:
        linear-gradient(to right,rgba(9,26,74,.93) 0%,rgba(9,26,74,.78) 100%),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);
}
.bx-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:2.5rem;flex-wrap:wrap}
.bx-cta-text h2{color:var(--white);font-size:clamp(1.4rem,3vw,2rem);margin-bottom:.75rem}
.bx-cta-text p{color:rgba(255,255,255,.75);font-size:1rem;margin:0}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
#site-footer{background:var(--navy);color:rgba(255,255,255,.72);padding-top:4rem}
.bx-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.6fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.10)}
.bx-footer-brand .logo-name{color:var(--white)}
.bx-footer-brand .logo-sub{color:rgba(255,255,255,.45)}
.bx-footer-brand p{font-size:.85rem;line-height:1.75;margin:1rem 0 1.5rem;opacity:.68}
.bx-footer-socials{display:flex;gap:.6rem}
.bx-social{
    width:36px;height:36px;background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);border-radius:6px;
    display:flex;align-items:center;justify-content:center;
    font-size:.75rem;font-weight:700;color:rgba(255,255,255,.65);
    text-decoration:none;transition:all var(--t);
}
.bx-social:hover{background:var(--blue);color:var(--white);border-color:var(--blue)}
.bx-footer-col h4{font-size:.8rem;font-weight:700;color:var(--white);letter-spacing:.08em;text-transform:uppercase;margin-bottom:1.25rem}
.bx-footer-links li{margin-bottom:.55rem}
.bx-footer-links a{
    font-size:.875rem;color:rgba(255,255,255,.62);
    display:flex;align-items:center;gap:6px;transition:color var(--t);
}
.bx-footer-links a::before{content:'›';color:var(--orange);font-size:1rem}
.bx-footer-links a:hover{color:var(--white)}
.bx-contact-item{display:flex;align-items:flex-start;gap:.6rem;margin-bottom:.75rem;font-size:.85rem}
.bx-contact-item .ic{color:var(--orange);flex-shrink:0;margin-top:2px;font-size:.9rem}
.bx-contact-item a{color:rgba(255,255,255,.65);transition:color var(--t)}
.bx-contact-item a:hover{color:var(--white)}
/* Newsletter */
.bx-newsletter{margin-top:1.5rem}
.bx-newsletter p{font-size:.82rem;opacity:.68;margin-bottom:.75rem}
.bx-newsletter-form{display:flex;gap:.4rem}
.bx-newsletter-form input{
    flex:1;padding:.52rem .9rem;
    background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);
    border-radius:5px;font-size:.85rem;color:var(--white);outline:none;transition:border-color var(--t);
}
.bx-newsletter-form input::placeholder{color:rgba(255,255,255,.38)}
.bx-newsletter-form input:focus{border-color:var(--blue)}
.bx-newsletter-form button{
    padding:.52rem .9rem;background:var(--orange);color:var(--navy);
    border-radius:5px;font-size:.9rem;font-weight:700;cursor:pointer;transition:background var(--t);border:none;
}
.bx-newsletter-form button:hover{background:var(--orange-dk)}
.bx-footer-bottom{
    display:flex;align-items:center;justify-content:space-between;
    padding:1.25rem 0;font-size:.8rem;opacity:.50;flex-wrap:wrap;gap:.75rem;
}
.bx-footer-btm-links{display:flex;gap:1.5rem}
.bx-footer-btm-links a{color:inherit;transition:opacity var(--t)}
.bx-footer-btm-links a:hover{opacity:1}

/* ═══════════════════════════════════
   FLOATING WHATSAPP + BACK TO TOP
═══════════════════════════════════ */
.floating-btns{position:fixed;bottom:2rem;right:2rem;display:flex;flex-direction:column;gap:.7rem;z-index:900}
.fab{
    width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;
    font-size:1.3rem;box-shadow:0 4px 16px rgba(0,0,0,.20);text-decoration:none;transition:all var(--t);border:none;cursor:pointer;
}
.fab:hover{transform:scale(1.12)}
.fab-wa{background:#25D366;color:#fff;position:relative}
.fab-wa:hover{background:#1ebe5d;color:#fff}
.fab-wa::after{
    content:'';position:absolute;inset:0;border-radius:50%;background:#25D366;
    opacity:.38;animation:waPulse 2s ease-out infinite;
}
@keyframes waPulse{0%{transform:scale(1);opacity:.38}100%{transform:scale(1.85);opacity:0}}
.fab-top{background:var(--blue);color:#fff;opacity:0;visibility:hidden;transform:scale(.8);transition:all var(--t)}
.fab-top.visible{opacity:1;visibility:visible;transform:scale(1)}
.fab-top:hover{background:var(--navy)}

/* ═══════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════ */
.cookie-banner{
    position:fixed;bottom:0;left:0;right:0;
    background:var(--navy);color:rgba(255,255,255,.85);
    padding:1.25rem 1.5rem;z-index:1100;
    border-top:3px solid var(--orange);
    transform:translateY(100%);transition:transform .4s ease;
    box-shadow:0 -4px 20px rgba(0,0,0,.25);
}
.cookie-banner.visible{transform:translateY(0)}
.cookie-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.cookie-text{font-size:.875rem;flex:1;min-width:260px}
.cookie-text a{color:var(--orange)}
.cookie-actions{display:flex;gap:.75rem}
.cookie-accept{
    padding:.48rem 1.4rem;background:var(--orange);color:var(--navy);
    border-radius:4px;font-size:.875rem;font-weight:700;border:none;cursor:pointer;transition:background var(--t);
}
.cookie-accept:hover{background:var(--orange-dk)}
.cookie-decline{padding:.48rem 1rem;color:rgba(255,255,255,.55);font-size:.875rem;background:none;border:none;cursor:pointer;transition:color var(--t)}
.cookie-decline:hover{color:var(--white)}

/* ═══════════════════════════════════
   INNER PAGE TEMPLATES
═══════════════════════════════════ */
/* Breadcrumbs */
.breadcrumbs{background:var(--white);border-bottom:1px solid var(--border);padding:.7rem 0}
.bc-list{display:flex;align-items:center;flex-wrap:wrap;gap:.25rem;font-size:.82rem}
.bc-list a{color:var(--muted);transition:color var(--t)}
.bc-list a:hover{color:var(--blue)}
.bc-sep{color:var(--border);margin:0 .25rem}
.bc-current{color:var(--navy);font-weight:500}

/* Page hero (inner pages) */
.page-hero{background:linear-gradient(135deg,var(--navy) 0%,#1a3a70 100%);padding:3.5rem 0;text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 50% 80% at 50% 100%,rgba(26,111,212,.18) 0%,transparent 60%);pointer-events:none}
.page-hero-inner{position:relative;z-index:2}
.page-hero h1{color:var(--white);margin-bottom:.75rem}
.page-hero .subtitle{color:rgba(255,255,255,.68);font-size:1.05rem;max-width:540px;margin:0 auto}

/* General section */
.section{padding:5rem 0}
.section-sm{padding:3rem 0}
.section-bg{background:var(--bg)}

/* Card */
.card{background:var(--white);border-radius:var(--r-lg);border:1px solid var(--border);box-shadow:var(--sh);transition:all var(--t)}
.card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg)}
.card-body{padding:1.5rem}

/* Post cards (blog) */
.post-card{background:var(--white);border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--border);box-shadow:var(--sh);transition:all var(--t);display:flex;flex-direction:column}
.post-card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg)}
.post-thumb{width:100%;aspect-ratio:16/9;overflow:hidden;background:var(--bg)}
.post-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.post-card:hover .post-thumb img{transform:scale(1.05)}
.post-thumb-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:3.5rem;background:linear-gradient(135deg,#e8f0fb 0%,#c8daf5 100%)}
.post-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.post-meta{display:flex;align-items:center;gap:1rem;font-size:.75rem;color:var(--muted);margin-bottom:.65rem;flex-wrap:wrap}
.post-cat{color:var(--blue);font-weight:600;text-transform:uppercase;letter-spacing:.05em}
.post-title{font-size:1rem;font-weight:700;line-height:1.35;margin-bottom:.65rem;flex:1}
.post-title a{color:var(--navy)}
.post-title a:hover{color:var(--blue)}
.post-excerpt{font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:1rem;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.post-readmore{font-size:.82rem;font-weight:600;color:var(--blue);display:inline-flex;align-items:center;gap:4px;margin-top:auto;transition:gap var(--t)}
.post-readmore:hover{gap:8px;color:var(--navy)}
.posts-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}

/* Pagination */
.pagination-wrap{display:flex;justify-content:center;margin-top:3rem}
.pagination{display:flex;align-items:center;gap:.35rem}
.pagination a,.pagination span{
    display:flex;align-items:center;justify-content:center;
    width:40px;height:40px;border-radius:var(--r);
    font-size:.875rem;font-weight:600;color:var(--muted);
    background:var(--white);border:1px solid var(--border);text-decoration:none;transition:all var(--t);
}
.pagination a:hover,.pagination span.current{background:var(--blue);color:var(--white);border-color:var(--blue)}

/* Sidebar */
.two-col-layout{display:grid;grid-template-columns:1fr 320px;gap:3rem;align-items:start}
.sidebar{position:sticky;top:calc(var(--header-h) + 1.5rem)}
.widget{background:var(--white);border-radius:var(--r-lg);padding:1.5rem;margin-bottom:1.5rem;border:1px solid var(--border);box-shadow:var(--sh)}
.widget:last-child{margin-bottom:0}
.widget-title{font-size:.9rem;font-weight:700;color:var(--navy);margin-bottom:1.25rem;padding-bottom:.65rem;border-bottom:2px solid var(--blue);display:inline-block}
.widget ul li{padding:.45rem 0;border-bottom:1px solid var(--border);font-size:.875rem}
.widget ul li:last-child{border-bottom:none}
.widget ul li a{color:var(--text);transition:color var(--t);display:flex;justify-content:space-between;align-items:center}
.widget ul li a:hover{color:var(--blue)}
.widget ul li a .count{background:var(--bg);color:var(--muted);font-size:.7rem;padding:2px 7px;border-radius:20px;border:1px solid var(--border)}

/* Forms */
.form-wrap{background:var(--white);border-radius:var(--r-lg);padding:2.5rem;box-shadow:var(--sh-lg);border:1px solid var(--border)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem}
.form-group{display:flex;flex-direction:column;gap:.4rem}
.form-group.full{grid-column:1/-1}
.form-label{font-size:.85rem;font-weight:600;color:var(--navy)}
.form-control{
    width:100%;padding:.68rem 1rem;
    border:1.5px solid var(--border);border-radius:var(--r);
    font-size:.9rem;color:var(--text);background:var(--bg);
    outline:none;transition:border-color var(--t),box-shadow var(--t);
}
.form-control:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(26,111,212,.14);background:var(--white)}
.form-control::placeholder{color:var(--muted);opacity:.65}
textarea.form-control{resize:vertical;min-height:120px}
.form-notice{padding:1rem 1.25rem;border-radius:var(--r);font-size:.875rem;margin-top:1rem}
.form-notice.success{background:#DCFCE7;color:#166534;border:1px solid #86EFAC}
.form-notice.error{background:#FEE2E2;color:#991B1B;border:1px solid #FCA5A5}

/* Single post */
.entry-title{font-size:clamp(1.6rem,3.5vw,2.5rem);margin-bottom:.75rem}
.entry-meta{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;font-size:.85rem;color:var(--muted);padding-bottom:1.25rem;border-bottom:2px solid var(--border);margin-bottom:2rem}
.entry-content{font-size:1.05rem;line-height:1.82;color:var(--text)}
.entry-content h2,.entry-content h3,.entry-content h4{margin:2rem 0 1rem}
.entry-content p{margin-bottom:1.25rem}
.entry-content ul,.entry-content ol{padding-left:1.5rem;margin-bottom:1.25rem}
.entry-content li{margin-bottom:.5rem}
.entry-content blockquote{border-left:4px solid var(--blue);padding:1rem 1.5rem;background:rgba(26,111,212,.05);border-radius:0 var(--r) var(--r) 0;font-style:italic;color:var(--muted);margin:1.5rem 0}
.entry-content img{border-radius:var(--r);margin:1.5rem 0}
.entry-content a{color:var(--blue);text-decoration:underline}
.entry-content a:hover{color:var(--navy)}

/* 404 */
.error-404{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:4rem 1.5rem}
.error-code{font-size:clamp(5rem,15vw,10rem);font-weight:900;color:var(--blue);opacity:.15;display:block;line-height:1}
.error-404-ico{font-size:4rem;margin-bottom:1.5rem;display:block}
.error-404 h1{margin-bottom:1rem}
.error-404>div>p{color:var(--muted);max-width:480px;margin:0 auto 2rem}
.error-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* Search form */
.search-form{display:flex;gap:.5rem}
.search-form input{flex:1;padding:.6rem 1rem;border:1.5px solid var(--border);border-radius:var(--r);font-size:.875rem;outline:none;transition:border-color var(--t);background:var(--bg)}
.search-form input:focus{border-color:var(--blue)}
.search-form button{padding:.6rem 1rem;background:var(--blue);color:var(--white);border-radius:var(--r);font-size:.875rem;border:none;cursor:pointer;transition:background var(--t)}
.search-form button:hover{background:var(--navy)}

/* Scroll animations */
.fade-in-up{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-in-up.in-view{opacity:1;transform:translateY(0)}
.stagger-1{transition-delay:.08s}.stagger-2{transition-delay:.16s}.stagger-3{transition-delay:.24s}
.stagger-4{transition-delay:.32s}.stagger-5{transition-delay:.40s}.stagger-6{transition-delay:.48s}
.count-up{display:inline-block}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media(max-width:1100px){
    .bx-products-grid{grid-template-columns:repeat(3,1fr)}
    .bx-footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
    .bx-quality-inner{grid-template-columns:1fr;gap:2.5rem}
    .bx-certs-grid{grid-template-columns:repeat(4,1fr)}
    .two-col-layout{grid-template-columns:1fr}
    .sidebar{position:static}
}
@media(max-width:900px){
    .bx-about-grid{grid-template-columns:1fr}
    .bx-markets-grid{grid-template-columns:1fr}
    .bx-steps{grid-template-columns:repeat(2,1fr);gap:2.5rem}
    .bx-steps::before{display:none}
    .bx-stats-grid{grid-template-columns:repeat(2,1fr)}
    .bx-certs-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
    :root{--header-h:64px}
    .menu-toggle{display:flex}
    #main-navigation{
        position:fixed;top:var(--header-h);left:0;right:0;
        background:var(--white);padding:1.5rem;
        box-shadow:var(--sh-lg);border-top:1px solid var(--border);
        transform:translateY(-120%);transition:transform var(--t);
        max-height:calc(100vh - var(--header-h));overflow-y:auto;z-index:999;
    }
    #main-navigation.is-open{transform:translateY(0)}
    #primary-menu{flex-direction:column;align-items:flex-start}
    #primary-menu>li>a{height:auto;line-height:1;padding:.75rem 0;font-size:1rem;width:100%;border-bottom:1px solid var(--border)}
    #primary-menu>li>a::after{display:none}
    .header-actions .btn{display:none}
    .bx-products-grid{grid-template-columns:repeat(2,1fr)}
    .bx-strip-grid{grid-template-columns:repeat(2,1fr)}
    .bx-strip-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.12);padding:.75rem 1rem}
    .bx-hero-btns{flex-direction:column;max-width:280px}
    .bx-cta-inner{flex-direction:column;text-align:center}
    .bx-countries{grid-template-columns:repeat(2,1fr)}
    .bx-footer-grid{grid-template-columns:1fr}
    .form-grid{grid-template-columns:1fr}
    .form-group.full{grid-column:1}
}
@media(max-width:480px){
    .bx-products-grid{grid-template-columns:1fr}
    .bx-stats-grid{grid-template-columns:1fr 1fr}
    .bx-steps{grid-template-columns:1fr}
    .container{padding:0 1rem}
    h1{font-size:2rem}
    h2{font-size:1.5rem}
}
@media print{
    #site-header,#site-footer,.floating-btns,.cookie-banner{display:none}
    .page-wrapper{padding-top:0}
}

/* ═══════════════════════════════════
   PAGE PRODUITS
═══════════════════════════════════ */

/* Hero */
.prod-hero{
    position:relative;min-height:380px;display:flex;flex-direction:column;justify-content:flex-end;
    background:
        linear-gradient(to right,rgba(9,26,74,.88) 0%,rgba(9,26,74,.68) 48%,rgba(9,26,74,.38) 100%),
        url('assets/images/products-hero.jpg') center/cover no-repeat,
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);padding:3.5rem 0 0;
}
.prod-bc{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:rgba(255,255,255,.55);margin-bottom:.75rem;flex-wrap:wrap}
.prod-bc a{color:rgba(255,255,255,.55);transition:color var(--t)}.prod-bc a:hover{color:var(--white)}
.prod-bc span{color:rgba(255,255,255,.35)}.prod-bc .bcc{color:rgba(255,255,255,.88)}
.prod-hero h1{color:var(--white);font-size:clamp(2.25rem,5vw,3.5rem);font-weight:800;margin:0}
.prod-hero-line{width:42px;height:3px;background:var(--orange);border-radius:2px;margin:.65rem 0 1rem}
.prod-hero p{color:rgba(255,255,255,.76);font-size:.9rem;line-height:1.75;max-width:440px;margin-bottom:2.25rem}
.prod-hero-strip{background:rgba(255,255,255,.10);backdrop-filter:blur(6px);border-top:1px solid rgba(255,255,255,.13);padding:1rem 0;margin-top:0}
.prod-strip-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.prod-strip-item{display:flex;align-items:center;gap:.7rem;padding:0 1.25rem;color:var(--white);border-right:1px solid rgba(255,255,255,.13)}
.prod-strip-item:last-child{border-right:none}
.prod-strip-ico{font-size:1.5rem;flex-shrink:0}
.prod-strip-item strong{display:block;font-size:.8rem;font-weight:600}
.prod-strip-item span{font-size:.7rem;opacity:.72}

/* Layout */
.prod-section{padding:2.5rem 0 4rem;background:var(--bg)}
.prod-layout{display:grid;grid-template-columns:260px 1fr;gap:1.75rem;align-items:start}

/* Sidebar */
.prod-sidebar{background:var(--navy);border-radius:var(--r-lg);overflow:hidden;position:sticky;top:calc(var(--header-h) + 1.5rem)}
.prod-sb-inner{padding:1.5rem}
.prod-sb-sect{margin-bottom:1.5rem}
.prod-sb-title{font-size:.75rem;font-weight:700;color:var(--orange);letter-spacing:.1em;text-transform:uppercase;padding-bottom:.5rem;border-bottom:1px solid rgba(255,255,255,.10);margin-bottom:.9rem;display:block}
.prod-cats{list-style:none;display:flex;flex-direction:column;gap:.15rem}
.prod-cat-btn{
    display:flex;align-items:center;gap:.7rem;width:100%;text-align:left;
    padding:.58rem .7rem;border-radius:7px;cursor:pointer;transition:all var(--t);
    color:rgba(255,255,255,.68);font-size:.85rem;font-weight:500;position:relative;
    background:none;border:none;font-family:inherit;
}
.prod-cat-btn:hover{background:rgba(255,255,255,.08);color:var(--white)}
.prod-cat-btn.active{background:rgba(255,255,255,.10);color:var(--white)}
.prod-cat-btn.active::after{content:'';position:absolute;right:.7rem;top:50%;transform:translateY(-50%);width:7px;height:7px;border-radius:50%;background:var(--orange)}
.prod-cat-ico{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.10);display:flex;align-items:center;justify-content:center;font-size:.85rem;flex-shrink:0}
.prod-cat-btn.active .prod-cat-ico{background:rgba(26,111,212,.50)}
.prod-filter-list{display:flex;flex-direction:column;gap:.45rem}
.prod-filter-item{display:flex;align-items:center;gap:.6rem;font-size:.83rem;color:rgba(255,255,255,.68);cursor:pointer;transition:color var(--t)}
.prod-filter-item:hover{color:var(--white)}
.prod-filter-item input[type="checkbox"]{width:15px;height:15px;accent-color:var(--blue);cursor:pointer;flex-shrink:0}
.prod-sb-devis{
    display:flex;align-items:center;justify-content:center;gap:.5rem;width:100%;
    padding:.7rem 1rem;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.20);
    border-radius:8px;color:var(--white);font-size:.85rem;font-weight:600;
    text-decoration:none;transition:all var(--t);margin-top:.5rem;cursor:pointer;
}
.prod-sb-devis:hover{background:rgba(255,255,255,.18);color:var(--white);border-color:rgba(255,255,255,.35)}

/* Content area */
.prod-content-hd{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.4rem;flex-wrap:wrap}
.prod-content-hd h2{margin:0;font-size:1.5rem}
.prod-search{display:flex;gap:.4rem}
.prod-search input{
    padding:.52rem .9rem;border:1.5px solid var(--border);border-radius:var(--r);
    font-size:.85rem;outline:none;transition:border-color var(--t);background:var(--white);width:210px;
}
.prod-search input:focus{border-color:var(--blue)}
.prod-search button{
    width:40px;height:40px;background:var(--blue);color:var(--white);
    border-radius:var(--r);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;
    transition:background var(--t);flex-shrink:0;
}
.prod-search button:hover{background:var(--navy)}
.prod-content-sub{font-size:.85rem;color:var(--muted);margin-bottom:1.75rem}
.prod-no-results{text-align:center;padding:3rem;color:var(--muted);font-size:.9rem;display:none}

/* Cards */
.prod-cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.prod-card{
    background:var(--white);border-radius:var(--r-lg);
    border:1px solid var(--border);box-shadow:var(--sh);
    transition:all var(--t);display:flex;flex-direction:column;overflow:visible;
}
.prod-card:hover{transform:translateY(-5px);box-shadow:var(--sh-lg);border-color:rgba(26,111,212,.25)}
.prod-card-img{position:relative;width:100%;aspect-ratio:4/3;overflow:hidden;border-radius:var(--r-lg) var(--r-lg) 0 0}
.prod-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;display:block}
.prod-card:hover .prod-card-img img{transform:scale(1.06)}
.prod-card-ph{width:100%;height:100%;background:linear-gradient(135deg,#EBF2FD,#C8DFF5);display:flex;align-items:center;justify-content:center;font-size:3.5rem}
.prod-card-circle{
    position:absolute;bottom:-18px;left:1rem;transform:none;
    width:38px;height:38px;border-radius:50%;background:var(--blue);border:3px solid var(--white);
    display:flex;align-items:center;justify-content:center;font-size:.95rem;z-index:2;
    box-shadow:0 2px 8px rgba(0,0,0,.15);color:var(--white);
}
.prod-card-body{padding:1.5rem 1rem 1rem;display:flex;flex-direction:column;gap:.22rem;flex:1}
.prod-card-name{font-size:.95rem;font-weight:700;color:var(--navy);margin-top:.55rem}
.prod-card-sci{font-size:.7rem;color:var(--muted);font-style:italic;margin-bottom:.4rem}
.prod-badges{display:flex;gap:.35rem;flex-wrap:wrap;margin-bottom:.55rem}
.pbadge{padding:2px 9px;border-radius:20px;font-size:.68rem;font-weight:600}
.pbadge-fill{background:var(--navy);color:var(--white)}
.pbadge-line{background:#EBF2FD;color:var(--blue);border:1px solid rgba(26,111,212,.22)}
.prod-metas{display:flex;flex-direction:column;gap:.28rem;margin-bottom:.7rem}
.prod-meta{display:flex;align-items:flex-start;gap:.45rem;font-size:.7rem;color:var(--muted)}
.prod-meta-i{flex-shrink:0;font-size:.78rem}
.prod-card-link{display:inline-flex;align-items:center;gap:4px;font-size:.8rem;font-weight:600;color:var(--blue);text-decoration:none;transition:gap var(--t);margin-top:auto}
.prod-card-link:hover{gap:8px;color:var(--navy)}

/* CTA bottom */
.prod-cta{
    padding:4rem 0;
    background:
        linear-gradient(to right,rgba(9,26,74,.92) 0%,rgba(9,26,74,.80) 45%,rgba(9,26,74,.60) 100%),
        url('assets/images/products-cta.jpg') center/cover no-repeat,
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);
}
.prod-cta-grid{display:grid;grid-template-columns:1fr 1.2fr 1fr;gap:3rem;align-items:center}
.prod-cta-mid .section-label{color:rgba(255,255,255,.50)}
.prod-cta-mid h2{color:var(--white);font-size:clamp(1.35rem,3vw,1.95rem);margin:.35rem 0 1rem}
.prod-cta-mid p{color:rgba(255,255,255,.70);font-size:.88rem;line-height:1.78;margin-bottom:1.5rem}
.prod-cta-cards{display:flex;flex-direction:column;gap:.75rem}
.prod-cta-card{
    display:flex;align-items:center;gap:.9rem;
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
    border-radius:10px;padding:.85rem 1rem;transition:all var(--t);text-decoration:none;
}
.prod-cta-card:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.28)}
.prod-cta-card-ico{width:40px;height:40px;border-radius:50%;background:rgba(26,111,212,.35);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.prod-cta-card-lbl{font-size:.68rem;color:rgba(255,255,255,.50);font-weight:600;text-transform:uppercase;letter-spacing:.05em;display:block;margin-bottom:2px}
.prod-cta-card-val{font-size:.85rem;color:var(--white);font-weight:600}

/* CTA produits — image gauche */
.prod-cta-img{border-radius:var(--r-lg);overflow:hidden;aspect-ratio:4/3;position:relative}
.prod-cta-img img{width:100%;height:100%;object-fit:cover;display:block;border-radius:var(--r-lg)}
.prod-cta-img-ph{width:100%;height:100%;background:rgba(255,255,255,.08);border-radius:var(--r-lg);display:flex;align-items:center;justify-content:center;font-size:5rem}

/* CTA produits — contacts droite */
.prod-contact-items{display:flex;flex-direction:column;gap:.6rem}
.prod-contact-item{
    display:flex;align-items:center;gap:.85rem;
    background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);
    border-radius:10px;padding:.8rem 1rem;text-decoration:none;transition:all var(--t);
}
.prod-contact-item:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.28)}
.prod-contact-ico{
    width:38px;height:38px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:1rem;flex-shrink:0;color:var(--white);
}
.prod-contact-ico-email{background:rgba(26,111,212,.40)}
.prod-contact-ico-tel{background:rgba(22,163,74,.40)}
.prod-contact-ico-wa{background:rgba(37,211,102,.40)}
.prod-contact-lbl{font-size:.68rem;color:rgba(255,255,255,.50);font-weight:600;text-transform:uppercase;letter-spacing:.05em;display:block;margin-bottom:1px}
.prod-contact-val{font-size:.82rem;color:var(--white);font-weight:600}

/* Badge disponibilité */
.pbadge-avail-available{padding:2px 9px;border-radius:20px;font-size:.68rem;font-weight:600;background:#DCFCE7;color:#166534;border:1px solid #86EFAC}
.pbadge-avail-seasonal{padding:2px 9px;border-radius:20px;font-size:.68rem;font-weight:600;background:#FEF3C7;color:#92400E;border:1px solid #FCD34D}
.pbadge-avail-limited{padding:2px 9px;border-radius:20px;font-size:.68rem;font-weight:600;background:#FEE2E2;color:#991B1B;border:1px solid #FCA5A5}

/* Responsive produits */
@media(max-width:1100px){
    .prod-layout{grid-template-columns:220px 1fr}
    .prod-cards-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
    .prod-layout{grid-template-columns:1fr}
    .prod-sidebar{position:static}
    .prod-cards-grid{grid-template-columns:repeat(2,1fr)}
    .prod-strip-grid{grid-template-columns:repeat(2,1fr)}
    .prod-strip-item{border-right:none;border-bottom:1px solid rgba(255,255,255,.12);padding:.75rem 1rem}
    .prod-cta-grid{grid-template-columns:1fr;text-align:center}
}
@media(max-width:580px){
    .prod-cards-grid{grid-template-columns:1fr 1fr}
    .prod-content-hd{flex-direction:column;align-items:flex-start}
    .prod-search input{width:100%}
}
@media(max-width:380px){.prod-cards-grid{grid-template-columns:1fr}}

/* ═══════════════════════════════════
   PAGE À PROPOS — styles spécifiques
═══════════════════════════════════ */

/* Décoration titre (trait orange sous h2) */
.bx-title-deco{display:inline-block}
.bx-title-deco::after{
    content:'';display:block;width:42px;height:3px;
    background:var(--orange);border-radius:2px;margin-top:8px;
}

/* ── Hero about ─────────────────────── */
.about-hero{
    position:relative;min-height:340px;display:flex;flex-direction:column;justify-content:flex-end;
    background:
        linear-gradient(to right,rgba(9,26,74,.82) 0%,rgba(9,26,74,.65) 50%,rgba(9,26,74,.35) 100%),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);padding:3.5rem 0 2rem;
}
.about-hero h1{color:var(--white);font-size:clamp(2.5rem,6vw,4rem);font-weight:800;margin-bottom:.5rem}
.about-hero .hero-sub{color:rgba(255,255,255,.78);font-size:1.05rem;margin-bottom:1.5rem}
.about-breadcrumb{display:flex;align-items:center;gap:.4rem;font-size:.82rem;color:rgba(255,255,255,.60);flex-wrap:wrap}
.about-breadcrumb a{color:rgba(255,255,255,.60);transition:color var(--t)}
.about-breadcrumb a:hover{color:var(--white)}
.about-breadcrumb span{color:rgba(255,255,255,.40)}
.about-breadcrumb .current{color:rgba(255,255,255,.90)}

/* ── Our Story ──────────────────────── */
.story-section{padding:5rem 0;background:var(--white)}
.story-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.story-img{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-lg)}
.story-img img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}
.story-text .section-label{color:var(--blue)}
.story-text h2{margin:.4rem 0 1.5rem}
.story-text p{font-size:.95rem;color:var(--muted);line-height:1.82;margin-bottom:1.1rem}

/* ── Vision / Mission / Values ──────── */
.vmv-section{padding:3rem 0;background:var(--bg)}
.vmv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.vmv-card{
    background:var(--white);border-radius:var(--r-lg);padding:2rem 1.75rem;
    border:1px solid var(--border);box-shadow:var(--sh);text-align:center;
    transition:all var(--t);
}
.vmv-card:hover{transform:translateY(-5px);box-shadow:var(--sh-lg)}
.vmv-icon-wrap{
    width:64px;height:64px;border-radius:50%;background:#EBF2FD;
    display:flex;align-items:center;justify-content:center;margin:0 auto .6rem;
    font-size:1.9rem;border-bottom:3px solid var(--orange);
}
.vmv-card h3{font-size:1.1rem;font-weight:700;color:var(--blue);margin:.75rem 0 .5rem}
.vmv-card p{font-size:.875rem;color:var(--muted);line-height:1.7;margin:0}

/* ── Key Figures ────────────────────── */
.kpi-section{padding:4rem 0;background:var(--white)}
.kpi-label{text-align:center;margin-bottom:2.75rem}
.kpi-label .section-label{font-size:.8rem;margin-bottom:.4rem}
.kpi-label .bx-title-deco{margin:0 auto}
.kpi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.kpi-item{text-align:center;padding:2rem 1.5rem;border-right:1px solid var(--border)}
.kpi-item:last-child{border-right:none}
.kpi-icon{font-size:2.25rem;color:var(--blue);margin-bottom:.8rem}
.kpi-num{font-size:2.75rem;font-weight:800;color:var(--blue);line-height:1;margin-bottom:.35rem}
.kpi-lbl{font-size:.875rem;color:var(--muted)}

/* ── Why Mauritania ─────────────────── */
.why-section{padding:5rem 0;background:var(--white)}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.why-text .section-label{color:var(--blue)}
.why-text h2{margin:.4rem 0 1.75rem}
.why-list{list-style:none;display:flex;flex-direction:column;gap:1rem;margin:0}
.why-list li{display:flex;align-items:flex-start;gap:.9rem;font-size:.95rem;color:var(--text);line-height:1.55}
.why-check{
    width:24px;height:24px;border-radius:50%;
    background:var(--orange);color:var(--navy);
    display:flex;align-items:center;justify-content:center;
    font-size:.65rem;font-weight:800;flex-shrink:0;margin-top:1px;
}
.why-img{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--sh-lg)}
.why-img img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block}

/* ── Commitment to Quality ──────────── */
.commit-section{
    padding:4.5rem 0;
    background:var(--navy);
}
.commit-grid{display:grid;grid-template-columns:320px 1fr;gap:4rem;align-items:center}
.commit-left .section-label{color:rgba(255,255,255,.50);margin-bottom:.5rem}
.commit-left h2{color:var(--white);margin-bottom:1.25rem}
.commit-left p{font-size:.9rem;color:rgba(255,255,255,.68);line-height:1.8;margin:0}
.commit-certs{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.commit-cert{
    background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);
    border-radius:10px;padding:1.5rem 1rem;text-align:center;transition:all var(--t);
}
.commit-cert:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.28);transform:translateY(-3px)}
.commit-cert-ico{
    width:52px;height:52px;border-radius:50%;
    background:rgba(232,168,32,.18);border:2px solid var(--orange);
    display:flex;align-items:center;justify-content:center;
    font-size:1.5rem;margin:0 auto .9rem;color:var(--orange);
}
.commit-cert-name{font-size:.9rem;font-weight:700;color:var(--white);margin-bottom:.35rem}
.commit-cert-desc{font-size:.72rem;color:rgba(255,255,255,.55);line-height:1.45}

/* ── Global Presence ────────────────── */
.global-section{padding:5rem 0;background:var(--white)}
.global-grid{display:grid;grid-template-columns:1.1fr .9fr 1.2fr;gap:3rem;align-items:center}
.global-left .section-label{color:var(--blue)}
.global-left h2{margin:.4rem 0 1rem}
.global-left p{font-size:.9rem;color:var(--muted);line-height:1.8;margin-bottom:1.75rem}
.global-countries{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.global-countries li{display:flex;align-items:center;gap:.6rem;font-size:.875rem;color:var(--text);font-weight:500}
.global-countries li .gflag{font-size:1.1rem}
.global-countries li.gmore{color:var(--muted);font-style:italic;font-weight:400}
.global-map{background:#EBF2FD;border-radius:var(--r-lg);aspect-ratio:4/3;overflow:hidden;display:flex;align-items:center;justify-content:center}
.global-map img{width:100%;height:100%;object-fit:cover;border-radius:var(--r-lg)}

/* ── Team ───────────────────────────── */
.team-section{padding:5rem 0;background:var(--bg)}
.team-label{text-align:center;margin-bottom:3rem}
.team-label .section-label{font-size:.8rem}
.team-label .bx-title-deco{margin:0 auto}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.team-card{
    background:var(--white);border-radius:var(--r-lg);overflow:hidden;
    border:1px solid var(--border);box-shadow:var(--sh);transition:all var(--t);
}
.team-card:hover{transform:translateY(-5px);box-shadow:var(--sh-lg)}
.team-photo{width:100%;aspect-ratio:1;overflow:hidden;background:linear-gradient(135deg,#EBF2FD,#C8DFF5)}
.team-photo img{width:100%;height:100%;object-fit:cover;object-position:top;display:block}
.team-photo-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:5rem;background:linear-gradient(135deg,#EBF2FD,#C8DFF5)}
.team-body{padding:1.25rem}
.team-linkedin{
    display:inline-flex;align-items:center;justify-content:center;
    width:26px;height:26px;background:var(--blue);color:var(--white);
    border-radius:4px;font-size:.7rem;font-weight:800;float:right;margin-top:-2px;
    text-decoration:none;transition:background var(--t);
}
.team-linkedin:hover{background:var(--navy);color:var(--white)}
.team-name{font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:.2rem}
.team-role{font-size:.78rem;font-weight:600;color:var(--blue);margin-bottom:.65rem}
.team-desc{font-size:.78rem;color:var(--muted);line-height:1.6;clear:both}

/* ── Responsive about page ──────────── */
@media(max-width:1100px){
    .global-grid{grid-template-columns:1fr 1fr}
    .commit-grid{grid-template-columns:1fr}
    .commit-certs{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:900px){
    .story-grid,.why-grid{grid-template-columns:1fr}
    .vmv-grid{grid-template-columns:1fr}
    .kpi-grid{grid-template-columns:repeat(2,1fr)}
    .kpi-item:nth-child(2){border-right:none}
    .team-grid{grid-template-columns:repeat(2,1fr)}
    .commit-certs{grid-template-columns:repeat(2,1fr)}
    .global-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
    .team-grid{grid-template-columns:1fr}
    .kpi-grid{grid-template-columns:1fr 1fr}
    .commit-certs{grid-template-columns:1fr 1fr}
    .about-hero h1{font-size:2.25rem}
}

/* ═══════════════════════════════════
   PAGE MARCHÉS
═══════════════════════════════════ */

/* Hero */
.mrch-hero{
    position:relative;min-height:420px;display:flex;align-items:center;
    background:
        linear-gradient(to right,rgba(9,26,74,.97) 0%,rgba(9,26,74,.90) 32%,rgba(9,26,74,.48) 58%,rgba(9,26,74,.08) 100%),
        url('assets/images/hero-bg.jpg') center right/cover no-repeat;
    background-color:var(--navy);padding:4.5rem 0;
}
.mrch-hero-content{max-width:520px}
.mrch-hero h1{color:var(--white);font-size:clamp(2rem,5vw,3.2rem);font-weight:800;margin:0 0 .5rem;line-height:1.15}
.mrch-hero-line{width:42px;height:3px;background:var(--orange);border-radius:2px;margin:.45rem 0 1.25rem}
.mrch-hero p{color:rgba(255,255,255,.76);font-size:.95rem;line-height:1.78;margin-bottom:1.75rem;max-width:480px}
.mrch-bc{display:flex;align-items:center;gap:.45rem;font-size:.82rem;color:rgba(255,255,255,.55);flex-wrap:wrap}
.mrch-bc a{color:rgba(255,255,255,.55);transition:color var(--t)}.mrch-bc a:hover{color:var(--white)}
.mrch-bc .sep{color:rgba(255,255,255,.30)}.mrch-bc .cur{color:rgba(255,255,255,.88)}

/* Map section */
.mrch-map-section{padding:5rem 0;background:var(--white)}
.mrch-map-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.mrch-map-box{background:#F0F5FA;border-radius:var(--r-lg);overflow:hidden;position:relative;aspect-ratio:4/3}
.mrch-map-legend{
    position:absolute;bottom:14px;left:16px;
    display:flex;align-items:center;gap:16px;
    background:rgba(255,255,255,.92);padding:6px 14px;
    border-radius:20px;font-size:.72rem;font-weight:600;color:var(--navy);
    box-shadow:0 2px 8px rgba(0,0,0,.10);
}
.mrch-leg-item{display:flex;align-items:center;gap:5px}
.mrch-leg-dot{width:10px;height:10px;border-radius:50%;display:inline-block;border:1.5px solid var(--white);flex-shrink:0}
.mrch-map-text .section-label{color:var(--blue)}
.mrch-map-text h2{margin:.4rem 0 .3rem}
.mrch-map-deco{width:42px;height:3px;background:var(--orange);border-radius:2px;margin:0 0 1.25rem}
.mrch-map-text>p{font-size:.95rem;color:var(--muted);line-height:1.78;margin:0}
.mrch-features{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2rem}
.mrch-feature{display:flex;align-items:flex-start;gap:.85rem}
.mrch-feature-ico{
    width:46px;height:46px;border-radius:10px;
    background:#EBF2FD;display:flex;align-items:center;justify-content:center;
    flex-shrink:0;color:var(--blue);
}
.mrch-feature-lbl{font-size:.85rem;color:var(--muted);line-height:1.5;padding-top:2px}
.mrch-feature-lbl strong{display:block;color:var(--navy);font-weight:700;margin-bottom:1px}

/* Countries section */
.mrch-countries-section{padding:4rem 0 5rem;background:var(--bg)}
.mrch-section-hd{text-align:center;margin-bottom:3rem}
.mrch-section-hd h2{margin:0 0 .55rem}
.mrch-section-line{width:42px;height:3px;background:var(--orange);border-radius:2px;margin:0 auto}
.mrch-countries-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1.25rem;margin-bottom:2.5rem}
.mrch-country-card{
    background:var(--white);border-radius:var(--r-lg);overflow:visible;
    border:1px solid var(--border);box-shadow:var(--sh);
    transition:all var(--t);display:flex;flex-direction:column;
}
.mrch-country-card:hover{transform:translateY(-5px);box-shadow:var(--sh-lg);border-color:rgba(26,111,212,.25)}
.mrch-country-img{position:relative;width:100%;aspect-ratio:4/3;overflow:hidden;border-radius:var(--r-lg) var(--r-lg) 0 0}
.mrch-country-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;display:block}
.mrch-country-card:hover .mrch-country-img img{transform:scale(1.06)}
.mrch-country-ph{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:3rem}
.mrch-flag{
    position:absolute;bottom:-15px;left:.9rem;
    width:32px;height:32px;border-radius:50%;
    border:2.5px solid var(--white);overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.20);z-index:2;
    background:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.1rem;
}
.mrch-country-body{padding:1.35rem .9rem .9rem;flex:1;display:flex;flex-direction:column}
.mrch-country-name{font-size:.88rem;font-weight:700;color:var(--navy);margin:.45rem 0 .3rem}
.mrch-country-desc{font-size:.7rem;color:var(--muted);line-height:1.55;margin:0}
.mrch-view-more{display:flex;justify-content:center}

/* Stats */
.mrch-stats{padding:3rem 0;background:var(--navy)}
.mrch-stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.mrch-stat{text-align:center;padding:1.5rem 2rem;border-right:1px solid rgba(255,255,255,.12)}
.mrch-stat:last-child{border-right:none}
.mrch-stat-ico{font-size:2rem;color:var(--orange);margin-bottom:.55rem}
.mrch-stat-num{font-size:2.25rem;font-weight:800;color:var(--orange);line-height:1;margin-bottom:.3rem}
.mrch-stat-lbl{font-size:.78rem;color:rgba(255,255,255,.65);line-height:1.5}

/* CTA */
.mrch-cta{
    padding:4rem 0;
    background:
        linear-gradient(rgba(9,26,74,.92) 0%,rgba(9,26,74,.88) 100%),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color:var(--navy);
}
.mrch-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.mrch-cta-text h2{color:var(--white);font-size:clamp(1.5rem,3vw,2rem);margin:0 0 .65rem;line-height:1.25}
.mrch-cta-text p{color:rgba(255,255,255,.68);font-size:.9rem;margin:0}

/* Responsive marchés */
@media(max-width:1100px){
    .mrch-countries-grid{grid-template-columns:repeat(3,1fr)}
    .mrch-features{gap:.75rem}
}
@media(max-width:900px){
    .mrch-map-grid{grid-template-columns:1fr}
    .mrch-features{grid-template-columns:1fr}
    .mrch-stats-grid{grid-template-columns:repeat(2,1fr)}
    .mrch-stat:nth-child(2){border-right:none}
    .mrch-countries-grid{grid-template-columns:repeat(2,1fr)}
    .mrch-cta-inner{flex-direction:column;text-align:center}
}
@media(max-width:580px){
    .mrch-countries-grid{grid-template-columns:repeat(2,1fr)}
    .mrch-stats-grid{grid-template-columns:1fr 1fr}
}
