/* ================================================
   MEDICAL SHOP â€” Premium Design System v3.0
   Header/Nav/Footer/Components
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  CSS VARIABLES & DESIGN TOKENS               â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
    /* Brand Colors */
    --primary:        #10B981;
    --primary-light:  #34D399;
    --primary-color:  #10B981;
    --secondary:      #EF4444;
    --secondary-color:#EF4444;
    --accent:         #F59E0B;
    --whatsapp:       #25d366;

    /* Neutrals */
    --text-dark:  #1e293b;
    --text-muted: #64748b;
    --bg-light:   #f1f5f9;
    --bg-white:   #ffffff;
    --border:     rgba(0,0,0,0.07);

    /* Shadows */
    --shadow-sm:    0 2px 8px rgba(16,185,129,0.08);
    --shadow-md:    0 8px 24px rgba(16,185,129,0.12);
    --shadow-lg:    0 20px 40px rgba(16,185,129,0.15);
    --shadow-hover: 0 24px 48px rgba(16,185,129,0.18);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Layout */
    --header-h: 90px;
    --topbar-h: 36px;

    /* Transitions */
    --transition: all 0.30s cubic-bezier(0.16, 1, 0.3, 1);
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  RESET & BASE                                â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  TYPOGRAPHY & HIERARCHY                      â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.025em; color: var(--primary); }
h1 { font-size: clamp(2.0rem, 6.5vw, 4rem); margin-bottom: 1.2rem; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
p  { color: var(--text-muted); line-height: 1.75; font-size: 1.0rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  LAYOUT UTILITIES                            â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 60px 0; }
@media (min-width: 992px) { .section-padding { padding: 110px 0; } }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section-header p { font-size: 0.95rem; margin-top: 10px; }
.text-center { text-align: center; }
.bg-light { background: var(--bg-light); }
.overflow-hidden { overflow: hidden; }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  GRID SYSTEM                                 â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
    .grid   { gap: 32px; }
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  BUTTONS                                     â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.95rem; cursor: pointer;
    border: 2px solid transparent; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: white; }

/* Devis CTA Button (Highlighted) */
.btn-devis {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; background: var(--secondary); color: white;
    border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700;
    border: none; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-devis:hover { background: #009cb9; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 180, 216, 0.25); }

/* WhatsApp Buttons */
.btn-wa-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 24px; background: transparent; color: var(--whatsapp);
    border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 700;
    border: 2px solid var(--whatsapp); transition: var(--transition); white-space: nowrap;
}
.btn-wa-outline:hover { background: var(--whatsapp); color: white; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,211,102,0.25); }


/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  TOP BAR                                     â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.80);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 7px 0;
    position: relative;
    z-index: 1100;
    transition: var(--transition);
}
.top-bar.hidden { transform: translateY(-100%); margin-top: -34px; }

.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar a, .top-bar span {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.70); font-size: 0.76rem; transition: color 0.2s;
}
.top-bar a:hover { color: white; }
.top-bar i { font-size: 0.68rem; color: var(--secondary); }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  MAIN HEADER                                 â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#main-header {
    position: sticky; top: 0; left: 0; width: 100%;
    height: var(--header-h);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: height 0.3s, box-shadow 0.3s;
    display: flex; align-items: center;
}
#main-header.scrolled { height: 64px; box-shadow: 0 4px 24px rgba(6,78,59,0.10); }

.header-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 20px; width: 100%;
}

/* logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 70px; width: auto; transition: opacity 0.2s; }
.header-logo:hover .logo-img { opacity: 0.82; }

/* â”€â”€â”€â”€ DESKTOP NAV â”€â”€â”€â”€ */
.main-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }

.nav-link {
    position: relative; display: flex; align-items: center; gap: 5px;
    padding: 8px 13px; font-size: 0.865rem; font-weight: 600;
    color: var(--text-dark); border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: var(--bg-light); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 2px; left: 13px; right: 13px;
    height: 2px; background: var(--secondary); border-radius: 2px;
}
.nav-link .fa-chevron-down { font-size: 0.6rem; transition: transform 0.25s; }
.nav-item-has-dropdown:hover .nav-link .fa-chevron-down { transform: rotate(180deg); }

/* â”€â”€â”€â”€ MEGA DROPDOWN â”€â”€â”€â”€ */
.nav-item-has-dropdown { position: static; }

.mega-dropdown {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: white;
    border-top: 3px solid var(--secondary);
    box-shadow: 0 20px 50px rgba(16,185,129,0.18);
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
    z-index: 900; padding: 24px 0;
}
.nav-item-has-dropdown:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; padding: 8px 0; }

.dropdown-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 10px; padding: 16px 10px; border-radius: var(--radius-md);
    color: var(--text-dark); font-size: 0.79rem; font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); }

.dropdown-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: #eff8fc; display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; color: var(--secondary); transition: background 0.2s, color 0.2s;
}
.dropdown-item:hover .dropdown-icon { background: var(--primary); color: white; }

/* â”€â”€â”€â”€ HEADER ACTIONS â”€â”€â”€â”€ */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.header-whatsapp {
    display: flex; align-items: center; gap: 7px; padding: 8px 14px;
    border-radius: var(--radius-sm); background: #f0fdf4;
    color: #16a34a; font-size: 0.82rem; font-weight: 700;
    border: 1px solid #bbf7d0; transition: var(--transition);
}
.header-whatsapp:hover { background: var(--whatsapp); color: white; border-color: var(--whatsapp); }
.header-whatsapp .fab { font-size: 1.1rem; }

/* â”€â”€â”€â”€ HAMBURGER â”€â”€â”€â”€ */
.hamburger {
    display: none; flex-direction: column; justify-content: space-between;
    width: 26px; height: 18px; background: none; border: none;
    cursor: pointer; padding: 0; flex-shrink: 0;
}
.hamburger span {
    display: block; height: 2px; background: var(--primary);
    border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  MOBILE DRAWER                               â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.drawer-overlay {
    position: fixed; inset: 0; background: rgba(6,78,59,0.50);
    z-index: 1199; opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    backdrop-filter: blur(3px);
}
.drawer-overlay.active { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed; top: 0; right: -100%; width: min(380px, 90vw); height: 100vh;
    background: white; z-index: 1200;
    display: flex; flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto; box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }

.drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px; border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.drawer-close {
    width: 36px; height: 36px; border-radius: 50%; background: var(--bg-light);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--text-dark); font-size: 0.95rem; transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: #fee2e2; color: #dc2626; }

.drawer-nav { padding: 12px 14px 0; flex: 1; }
.drawer-nav ul { display: flex; flex-direction: column; gap: 2px; }
.drawer-nav > ul > li > a,
.drawer-sub-toggle {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 12px; border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 600; color: var(--text-dark);
    border: none; background: none; cursor: pointer; width: 100%;
    text-align: left; transition: background 0.2s, color 0.2s;
}
.drawer-nav > ul > li > a:hover,
.drawer-sub-toggle:hover { background: var(--bg-light); color: var(--primary); }
.drawer-nav i { width: 16px; color: var(--secondary); flex-shrink: 0; }

.drawer-chevron { margin-left: auto; font-size: 0.65rem; transition: transform 0.25s; width: auto !important; }
.drawer-sub-toggle.open .drawer-chevron { transform: rotate(180deg); }

.drawer-sub-menu {
    display: none; flex-direction: column; gap: 1px;
    padding: 4px 0 4px 40px;
}
.drawer-sub-menu.open { display: flex; }
.drawer-sub-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; font-size: 0.84rem; font-weight: 500;
    color: var(--text-muted); border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.drawer-sub-menu li a:hover { color: var(--primary); background: var(--bg-light); }

.drawer-ctas {
    padding: 14px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.drawer-whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px; background: var(--whatsapp); color: white;
    border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 700;
    transition: opacity 0.2s;
}
.drawer-whatsapp-btn:hover { opacity: 0.88; }

.drawer-contact-info {
    padding: 12px 14px; border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.drawer-contact-info a {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; color: var(--text-muted);
}
.drawer-contact-info a i { color: var(--secondary); width: 14px; }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  HERO SECTION                                â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
    min-height: 100vh; background-size: cover; background-position: center;
    background-attachment: fixed; position: relative;
    display: flex; align-items: center; color: white;
}
.overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,78,59,0.88) 0%, rgba(6,78,59,0.50) 60%, rgba(0,0,0,0.20) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color: white; font-size: clamp(2rem, 5vw, 4rem); }
.hero p  { color: rgba(255,255,255,0.88); font-size: clamp(1rem, 2vw, 1.2rem); max-width: 600px; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  TRUST BAR                                   â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.trust-bar {
    background: white; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: 28px 40px;
    margin-top: -50px; position: relative; z-index: 100;
}
.trust-container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 150px; }
.trust-item > i { font-size: 2rem; color: var(--secondary); flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.93rem; color: var(--text-dark); font-weight: 700; }
.trust-text span  { font-size: 0.76rem; color: var(--text-muted); }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  CARDS                                       â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: var(--transition); overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(0, 180, 216, 0.4); }

/* Category Cards */
.cat-card { position: relative; aspect-ratio: 4/3; padding: 0; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.05); }
.cat-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(6,78,59,0.95) 0%, rgba(6,78,59,0.60) 60%, transparent 100%);
    color: white;
}
.cat-info h3 { color: white; font-size: 1.05rem; margin-bottom: 6px; }
.cat-info a  { color: var(--secondary); font-weight: 600; font-size: 0.86rem; }
.cat-info a:hover { color: white; }

/* Feature Cards */
.feature-card { padding: 40px 28px; text-align: center; }
.feature-card > i { font-size: 2.8rem; color: var(--secondary); margin-bottom: 20px; display: block; }
.feature-card h3 { color: var(--primary); margin-bottom: 10px; }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  SERVICES SECTION                            â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.service-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.service-item:last-child { margin-bottom: 0; }
.service-icon {
    flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%;
    background: white; box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.4rem;
}
.service-item h4 { color: var(--primary); font-size: 1rem; margin-bottom: 4px; }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  QUOTE / CTA SECTION                         â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.quote-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white; position: relative; overflow: hidden;
}
.quote-section::before {
    content: ''; position: absolute; top: -60%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: rgba(255,255,255,0.03); pointer-events: none;
}
.quote-section h2 { color: white; }
.quote-section p  { color: rgba(255,255,255,0.80); }
.quote-form { background: white; padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; font-size: 0.85rem; color: var(--text-dark); }
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e2e8f0; border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.93rem; color: var(--text-dark);
    transition: border-color 0.2s; background: white;
}
.form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  FOOTER                                      â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer { background: #07111e; color: white; }
.footer-main { padding: 70px 0 50px; }

.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.7fr; } }

/* Brand */
.footer-brand .footer-logo-img { height: 50px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }

/* Socials */
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.50); font-size: 0.78rem; transition: all 0.2s;
}
.footer-socials a:hover { background: var(--secondary); border-color: var(--secondary); color: white; transform: translateY(-2px); }

/* Headings */
.footer-heading {
    color: white; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.10em; margin-bottom: 22px; font-weight: 700;
    padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Nav Links */
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.84rem; color: rgba(255,255,255,0.48); transition: color 0.2s, padding-left 0.2s;
}
.footer-links a .fa-chevron-right { font-size: 0.58rem; color: var(--secondary); transition: transform 0.2s; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-links a:hover .fa-chevron-right { transform: translateX(3px); }

/* Contact List */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.fc-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 0.82rem; flex-shrink: 0;
}
.fc-icon--wa { background: rgba(37,211,102,0.12); color: var(--whatsapp); }
.fc-label { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.footer-contact-list a,
.footer-contact-list span:not(.fc-label) { font-size: 0.83rem; color: rgba(255,255,255,0.62); transition: color 0.2s; }
.footer-contact-list a:hover { color: white; }

/* Footer Bottom */
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; background: rgba(0,0,0,0.18); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font-size: 0.76rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.70); }

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  WHATSAPP FLOATING BUTTON                    â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px; background: var(--whatsapp); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 1999; transition: var(--transition);
    animation: wa-pulse 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.55); animation: none; }
.wa-tooltip {
    position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
    background: #1e293b; color: white; font-size: 0.76rem; font-weight: 600;
    white-space: nowrap; padding: 6px 12px; border-radius: 6px;
    opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; pointer-events: none;
}
.wa-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
    border: 5px solid transparent; border-left-color: #1e293b;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; visibility: visible; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.10); }
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  RESPONSIVE                                  â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Tablet / Mobile â€” hide desktop nav */
@media (max-width: 1024px) {
    .main-nav    { display: none; }
    .header-actions { display: none; }
    .hamburger   { display: flex; }
}

/* Slim top bar on small screens */
@media (max-width: 640px) {
    .top-bar-right { display: none; }
}
@media (max-width: 400px) {
    .top-bar { display: none; }
}

/* General mobile adjustments */
@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .trust-bar { padding: 22px 18px; margin-top: 16px; border-radius: var(--radius-md); }
    .trust-container { flex-direction: column; align-items: flex-start; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .quote-form { padding: 24px 18px; }
    .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  HOMEPAGE SECTIONS â€” COMPONENTS              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Section Labels */
.section-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--secondary);
    margin-bottom: 12px; background: #eff8fc;
    padding: 5px 12px; border-radius: 20px;
}
.section-label.light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 12px; }

/* â”€â”€ HERO SECTION â”€â”€ */
.hero-section {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    overflow: hidden; color: white;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
    animation: hero-zoom 20s ease infinite alternate;
}
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.06); } }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(7,17,35,0.92) 0%, rgba(6,78,59,0.78) 50%, rgba(0,30,60,0.60) 100%);
}
.hero-body {
    position: relative; z-index: 2;
    padding: 60px 0 60px;
    display: flex; flex-direction: column; gap: 20px;
    max-width: 900px;
}
@media (min-width: 992px) { .hero-body { padding: 100px 0 80px; } }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16,185,129,0.18); border: 1px solid rgba(16,185,129,0.40);
    color: var(--secondary); font-size: 0.78rem; font-weight: 600;
    padding: 7px 16px; border-radius: 30px; width: fit-content;
    letter-spacing: 0.04em;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem); color: white;
    font-weight: 800; line-height: 1.12; margin: 0;
}
.hero-accent { color: var(--secondary); }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.80); max-width: 620px; margin: 0; line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; background: var(--secondary); color: white;
    border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem;
    transition: var(--transition); border: 2px solid transparent;
}
.btn-hero-primary:hover { background: #059669; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16,185,129,0.40); }
.btn-hero-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; background: transparent; color: white;
    border: 2px solid rgba(255,255,255,0.50); border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.95rem; transition: var(--transition);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.80); }

/* Hero Stats */
.hero-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-md); padding: 15px 15px;
    width: fit-content; flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; padding: 0 20px; }
.hstat-num { font-size: 1.4rem; font-weight: 800; color: white; line-height: 1; }
.hstat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.60); margin-top: 4px; }
.hstat-div { width: 1px; background: rgba(255,255,255,0.18); align-self: stretch; }

/* Hero Scroll indicator */
.hero-scroll {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.50); font-size: 1.2rem;
    animation: bounce 2s infinite; z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* â”€â”€ TRUST BAR v2 â”€â”€ */
.trust-section { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 540px) { .trust-grid { gap: 20px; } }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; border-radius: var(--radius-md);
    background: var(--bg-light); border: 1px solid var(--border);
    transition: var(--transition);
}
.trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.trust-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: #eff8fc; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.15rem; flex-shrink: 0;
}
.trust-icon--blue { background: #eff0fb; color: #6366f1; }
.trust-icon--green { background: #f0fdf4; color: var(--accent); }
.trust-icon--wa   { background: #f0fdf4; color: var(--whatsapp); }
.trust-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.trust-info span  { font-size: 0.77rem; color: var(--text-muted); }

/* â”€â”€ CATEGORIES v2 â”€â”€ */
.cat-grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 540px) { .cat-grid-6 { gap: 20px; } }
@media (min-width: 640px)  { .cat-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid-6 { grid-template-columns: repeat(6, 1fr); } }

.cat-card-v2 {
    display: flex; flex-direction: column;
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    text-decoration: none; transition: var(--transition);
}
.cat-card-v2:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.cat-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card-v2:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(6, 78, 59, 0.5) 100%);
}

.cat-card-body { padding: 16px; text-align: center; }
.cat-icon-ring {
    width: 42px; height: 42px; border-radius: 50%;
    background: #eff8fc; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1rem;
    margin: -28px auto 10px; border: 3px solid white;
    position: relative; z-index: 1; box-shadow: var(--shadow-sm);
}
.cat-icon-ring--outline { background: white; border: 2px dashed var(--secondary); }
.cat-card-body h3 { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.cat-card-body p  { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.4; }
.cat-link { font-size: 0.78rem; font-weight: 700; color: var(--secondary); display: flex; align-items: center; justify-content: center; gap: 5px; }
.cat-card-v2:hover .cat-link { gap: 10px; }

.cat-card-v2--cta {
    background: var(--bg-light); border: 2px dashed rgba(16,185,129,0.40);
    justify-content: center; align-items: center; min-height: 200px;
}
.cat-cta-body { padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.cat-cta-body h3 { font-size: 0.9rem; margin: 8px 0 6px; }
.cat-cta-body p  { font-size: 0.78rem; color: var(--text-muted); }

/* â”€â”€ PRODUCT CARDS â”€â”€ */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.prod-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    display: flex; flex-direction: column; transition: var(--transition);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(0, 180, 216, 0.4); }

.prod-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }

/* Product Badges */
.prod-badge {
    position: absolute; top: 12px; left: 12px;
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700;
}
.prod-badge--vedette { background: #fef3c7; color: #d97706; }
.prod-badge--new     { background: #ecfdf5; color: #059669; }
.prod-badge--promo   { background: #eff6ff; color: #2563eb; }

.prod-body { padding: 18px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.prod-cat  { font-size: 0.72rem; font-weight: 600; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.06em; }
.prod-name { 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: var(--primary); 
    line-height: 1.3; 
    margin: 0;
    min-height: 48px; /* Assure l'alignement des prix */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prod-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.prod-tag {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 600;
    background: #f0fdf4; color: #16a34a;
}
.prod-tag--blue   { background: #eff8fc; color: #0077a0; }
.prod-tag--orange { background: #fff7ed; color: #c2410c; }

.prod-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: auto; }
.prod-price { 
    font-size: 0.76rem; 
    font-weight: 700; 
    color: var(--text-muted); 
    white-space: nowrap;
}
.btn-prod-wa {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; background: var(--whatsapp); color: white;
    border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 700;
    transition: opacity 0.2s;
}
.btn-prod-wa:hover { opacity: 0.88; }

/* â”€â”€ WHY US â”€â”€ */
.why-section { background: linear-gradient(135deg, #f8faff 0%, var(--bg-light) 100%); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
    background: white; border-radius: var(--radius-lg);
    padding: 28px 24px; border: 1px solid var(--border);
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(16,185,129,0.3); }
.why-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: #eff8fc; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.3rem; margin-bottom: 16px;
}
.why-icon--2 { background: #f0fdf4; color: var(--accent); }
.why-icon--3 { background: #eff0fb; color: #6366f1; }
.why-icon--4 { background: #fefce8; color: #ca8a04; }
.why-icon--5 { background: #fef2f2; color: #dc2626; }
.why-icon--6 { background: #f0f9ff; color: #0ea5e9; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.why-card p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* â”€â”€ STATS COUNTER â”€â”€ */
.stats-section { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.stat-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 20px; border-right: 1px solid rgba(255,255,255,0.10);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.60); margin-top: 8px; font-weight: 500; }

/* â”€â”€ SERVICES v2 â”€â”€ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-v2 {
    padding: 28px 24px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); background: white;
    transition: var(--transition);
}
.service-v2:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.srv-icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    background: #eff8fc; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.3rem; margin-bottom: 16px;
}
.srv-icon-wrap--2 { background: #f0fdf4; color: var(--accent); }
.srv-icon-wrap--3 { background: #eff0fb; color: #6366f1; }
.srv-icon-wrap--4 { background: #fefce8; color: #ca8a04; }
.srv-icon-wrap--5 { background: #fef2f2; color: #dc2626; }
.srv-icon-wrap--6 { background: #f0f9ff; color: #0ea5e9; }
.service-v2 h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-v2 p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* â”€â”€ RÃ‰ALISATIONS â”€â”€ */
.real-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .real-grid { grid-template-columns: repeat(3, 1fr); } }

.real-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.real-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.real-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.real-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.real-card:hover .real-img img { transform: scale(1.06); }
.real-overlay {
    position: absolute; inset: 0; background: rgba(6, 78, 59, 0.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.real-card:hover .real-overlay { opacity: 1; }
.real-overlay span { color: white; font-size: 0.85rem; font-weight: 600; }
.real-body { padding: 20px; }
.real-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--secondary); background: #eff8fc;
    padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.real-body h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.real-body p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* â”€â”€ TÃ‰MOIGNAGES â”€â”€ */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
    background: white; border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 16px;
    transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-card--featured { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }
.testi-stars { color: #f59e0b; font-size: 0.85rem; display: flex; gap: 3px; }
.testi-quote { font-size: 0.88rem; color: var(--text-dark); line-height: 1.75; font-style: italic; margin: 0; flex: 1; }
.testi-quote::before { content: '"'; font-size: 2rem; color: var(--secondary); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: #eff8fc; color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.testi-avatar--2 { background: #f0fdf4; color: var(--accent); }
.testi-avatar--3 { background: #eff0fb; color: #6366f1; }
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.testi-author span   { font-size: 0.75rem; color: var(--text-muted); }

/* â”€â”€ DEVIS SECTION â”€â”€ */
.devis-section { background: linear-gradient(135deg, var(--primary) 0%, #07193e 100%); }
.devis-inner { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .devis-inner { grid-template-columns: 1fr 1.2fr; align-items: start; } }

.devis-left { color: white; }
.devis-left h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.devis-left > p { color: rgba(255,255,255,0.70); margin-bottom: 28px; }

.devis-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.devis-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.devis-list li .fa-check-circle { color: var(--accent); }

.btn-wa-large {
    display: flex; align-items: center; gap: 14px;
    background: var(--whatsapp); color: white;
    padding: 14px 22px; border-radius: var(--radius-md);
    font-weight: 700; transition: var(--transition); width: fit-content;
}
.btn-wa-large:hover { opacity: 0.90; transform: translateY(-2px); }
.btn-wa-large .fab { font-size: 2rem; }
.btn-wa-large span { display: block; font-size: 0.92rem; }
.btn-wa-large small { font-size: 0.74rem; opacity: 0.80; font-weight: 400; }

.devis-form-wrap {
    background: white; border-radius: var(--radius-xl);
    padding: 36px; box-shadow: var(--shadow-lg);
}
.devis-form-wrap h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 500px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* â”€â”€ WHATSAPP CTA BANNER â”€â”€ */
.wa-cta-section { background: #07111e; padding: 48px 0; }
.wa-cta-inner {
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap; justify-content: space-between;
}
.wa-cta-icon { font-size: 3rem; color: var(--whatsapp); animation: wa-pulse 3s infinite; }
.wa-cta-text h2 { color: white; font-size: clamp(1.2rem, 2.5vw, 1.7rem); margin-bottom: 6px; }
.wa-cta-text p  { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 0; }
.btn-wa-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; background: var(--whatsapp); color: white;
    border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem;
    white-space: nowrap; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0;
}
.btn-wa-cta:hover { opacity: 0.90; transform: translateY(-2px); }

/* â”€â”€ RESPONSIVE HOMEPAGE â”€â”€ */
@media (max-width: 767px) {
    .hero-body { padding: 80px 0 60px; }
@media (min-width: 992px) { .hero-body { padding: 100px 0 80px; } }
    .hero-stats { gap: 0; padding: 14px 16px; }
    .hstat { padding: 0 12px; }
    .hstat-num { font-size: 1.3rem; }
    .hero-ctas .btn-hero-primary,
    .hero-ctas .btn-hero-ghost { width: 100%; justify-content: center; }
    .devis-form-wrap { padding: 24px 18px; }
    .wa-cta-inner { flex-direction: column; text-align: center; }
    .btn-wa-large { margin: 0 auto; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
    .stat-item:last-child { border-bottom: none; }
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  INNER PAGES COMPONENTS (Categories, etc.)   â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.split-layout {
    display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
@media (min-width: 900px) {
    .split-layout { grid-template-columns: 1fr 1fr; gap: 60px; }
    .split-layout.image-right .split-img-col { order: 2; }
    .split-layout.image-right .split-text-col { order: 1; }
}
.split-img-col img { width: 100%; height: auto; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-md); }
.split-text-col h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.split-text-col p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.page-header { padding: 60px 0 40px; }
@media (min-width: 900px) { .page-header { padding: 100px 0 80px; } }
.page-header-old-ignored {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(6, 78, 59, 0.9) 100%), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&q=80&w=2000') center/cover;
    padding: 60px 0 40px;
    text-align: center;
    color: white;
}
.page-header h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}
.page-header p {
    font-size: 1.05rem;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.cat-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .cat-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cat-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Dedicated Category Card for the Categories Page */
.page-cat-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    display: flex; flex-direction: column; transition: var(--transition);
    text-decoration: none; color: inherit; height: 100%;
}
.page-cat-card:hover { 
    transform: translateY(-6px); 
    box-shadow: var(--shadow-lg);
    border-color: rgba(16,185,129,0.5);
}
.page-cat-img { height: 200px; width: 100%; object-fit: cover; }
.page-cat-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.page-cat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #eff8fc; color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-top: -48px; position: relative;
    border: 4px solid white; margin-bottom: 16px;
}
.page-cat-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.page-cat-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.page-cat-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 16px; background: var(--bg-light); color: var(--secondary);
    border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 700;
    transition: var(--transition);
}
.page-cat-card:hover .page-cat-btn {
    background: var(--secondary); color: white;
}

/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  PRODUCT DETAIL PAGE                         â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0; font-size: 0.82rem; font-weight: 500;
    color: var(--text-muted); display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; border-bottom: 1px solid var(--border);
    background: #fdfdfd;
}
.breadcrumb a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb .separator { color: #cbd5e1; font-size: 0.7rem; }
.breadcrumb .current { color: var(--secondary); font-weight: 600; }

/* Product Details Layout */
.product-main { padding: 40px 0 60px; }
.prod-detail-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .prod-detail-grid { grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; } }

/* Gallery */
.prod-gallery { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.prod-img-main {
    position: relative; width: 100%; aspect-ratio: 4/3;
    background: #f8fafc; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.prod-img-main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.4s ease; }
.prod-img-main:hover img { transform: scale(1.08); }
.prod-gallery-thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 5px; }
.prod-thumb {
    width: 80px; height: 80px; flex-shrink: 0;
    border-radius: var(--radius-md); border: 2px solid transparent;
    cursor: pointer; overflow: hidden; background: #f8fafc; transition: var(--transition);
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb:hover, .prod-thumb.active { border-color: var(--secondary); }

/* Product Info */
.prod-info { display: flex; flex-direction: column; gap: 20px; }
.prod-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.pb-badge {
    padding: 4px 12px; border-radius: 20px; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.pb-badge--new { background: #dcfce7; color: #15803d; }
.pb-badge--featured { background: #fef3c7; color: #b45309; }
.prod-brand { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.prod-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); line-height: 1.2; margin: 0; }
.prod-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.prod-reviews { display: flex; align-items: center; gap: 6px; color: #f59e0b; font-size: 0.85rem; }
.prod-reviews span { color: var(--text-muted); font-weight: 500; }
.prod-ref { font-size: 0.8rem; color: var(--text-muted); background: var(--bg-light); padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border); }

.prod-price-box { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.prod-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); display: flex; align-items: flex-end; gap: 10px; }
.prod-price-tax { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); margin-bottom: 6px; }
.prod-price-contact { font-size: 1.1rem; color: var(--secondary); font-weight: 700; background: #eff8fc; display: inline-block; padding: 10px 16px; border-radius: var(--radius-sm); border-left: 4px solid var(--secondary); }
.prod-status { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.88rem; font-weight: 600; }
.status-in-stock { color: #16a34a; }
.status-on-order { color: #d97706; }

.prod-short-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.prod-features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.prod-features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-dark); }
.prod-features-list .fa-check { color: var(--secondary); margin-top: 5px; font-size: 0.8rem; flex-shrink: 0; }

/* Actions */
.prod-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 10px; }
@media (min-width: 480px) { .prod-actions { grid-template-columns: 1fr auto; } }
.btn-add-quote {
    background: var(--primary); color: white; border: none; padding: 16px 24px;
    border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; transition: var(--transition); width: 100%; box-shadow: 0 4px 14px rgba(7, 17, 35, 0.15);
}
.btn-add-quote:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3); }
.prod-actions-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-wa-product {
    background: var(--whatsapp); color: white; padding: 12px; font-size: 0.9rem; font-weight: 600;
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition);
}
.btn-wa-product:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-fav {
    background: white; color: var(--text-dark); border: 1px solid var(--border);
    padding: 12px; font-size: 0.9rem; font-weight: 600; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); cursor: pointer;
}
.btn-fav:hover { border-color: #ef4444; color: #ef4444; background: #fef2f2; }

/* Reinsurance */
.prod-reinsurance {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    margin-top: 24px; padding: 24px; background: #f8fafc;
    border-radius: var(--radius-md); border: 1px dashed #cbd5e1;
}
.reinsurance-item { display: flex; align-items: center; gap: 12px; }
.reinsurance-icon { color: var(--secondary); font-size: 1.2rem; }
.reinsurance-text { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* Product Tabs / Extended Info */
.prod-extended { margin-top: 60px; border-top: 1px solid var(--border); padding-top: 60px; }
.content-section { margin-bottom: 50px; }
.content-section h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.content-section h2::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.content-prose p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.7; }
.content-prose ul { margin-bottom: 20px; padding-left: 20px; color: var(--text-muted); }
.content-prose li { margin-bottom: 8px; }

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 10px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.specs-table th, .specs-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.specs-table th { background: #f8fafc; font-weight: 600; color: var(--text-dark); width: 35%; border-right: 1px solid var(--border); }
.specs-table td { color: var(--text-muted); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }

/* Advantages Grid */
.adv-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
.adv-card { background: white; padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.adv-icon { width: 40px; height: 40px; border-radius: 10px; background: #eff8fc; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.1rem; }
.adv-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.adv-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* FAQ Accordion Basic */
.faq-wrap { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 18px 24px; background: white; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--primary); transition: background 0.2s; }
.faq-q:hover { background: #f8fafc; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.faq-item.active .faq-a { padding: 0 24px 24px; max-height: 500px; }
/* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘  DEVIS / CONTACT PAGE FORMS                  â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.devis-container { padding: 60px 0; }
.devis-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .devis-grid { grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; } }

/* Sidebar Info Block */
.devis-sidebar { background: #f8fafc; padding: 40px 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.devis-sidebar h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 24px; }
.devis-contact-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 16px; }
.devis-contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.devis-contact-list i { color: var(--secondary); font-size: 1.2rem; margin-top: 2px; }
.devis-contact-list div { font-size: 0.95rem; color: var(--text-dark); line-height: 1.5; }
.devis-contact-list strong { display: block; color: var(--primary); margin-bottom: 4px; }

/* Forms */
.devis-form-wrapper { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.devis-form-wrapper h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; }
.devis-form-wrapper > p { color: var(--text-muted); margin-bottom: 30px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.form-label span { color: #ef4444; }
/* Dedicated Category Card for the Categories Page */
.page-cat-card {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    display: flex; flex-direction: column; transition: var(--transition);
    text-decoration: none; color: inherit; height: 100%;
}
.page-cat-card:hover { 
    transform: translateY(-6px); 
    box-shadow: var(--shadow-lg);
    border-color: rgba(16,185,129,0.5);
}
.page-cat-img { height: 200px; width: 100%; object-fit: cover; }
.page-cat-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.page-cat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: #eff8fc; color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-top: -48px; position: relative;
    border: 4px solid white; margin-bottom: 16px;
}
.page-cat-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.page-cat-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.page-cat-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 16px; background: var(--bg-light); color: var(--secondary);
    border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 700;
    transition: var(--transition);
}
.page-cat-card:hover .page-cat-btn {
    background: var(--secondary); color: white;
}

/* ╔══════════════════════════════════════════════╗
   ║  PRODUCT DETAIL PAGE                         ║
   ╚══════════════════════════════════════════════╝  */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0; font-size: 0.82rem; font-weight: 500;
    color: var(--text-muted); display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; border-bottom: 1px solid var(--border);
    background: #fdfdfd;
}
.breadcrumb a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb .separator { color: #cbd5e1; font-size: 0.7rem; }
.breadcrumb .current { color: var(--secondary); font-weight: 600; }

/* Product Details Layout */
.product-main { padding: 40px 0 60px; }
.prod-detail-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .prod-detail-grid { grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; } }

/* Gallery */
.prod-gallery { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.prod-img-main {
    position: relative; width: 100%; aspect-ratio: 4/3;
    background: #f8fafc; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.prod-img-main img { width: 100%; height: 100%; object-fit: contain; padding: 20px; transition: transform 0.4s ease; }
.prod-img-main:hover img { transform: scale(1.08); }
.prod-gallery-thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 5px; }
.prod-thumb {
    width: 80px; height: 80px; flex-shrink: 0;
    border-radius: var(--radius-md); border: 2px solid transparent;
    cursor: pointer; overflow: hidden; background: #f8fafc; transition: var(--transition);
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb:hover, .prod-thumb.active { border-color: var(--secondary); }

/* Product Info */
.prod-info { display: flex; flex-direction: column; gap: 20px; }
.prod-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.pb-badge {
    padding: 4px 12px; border-radius: 20px; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.pb-badge--new { background: #dcfce7; color: #15803d; }
.pb-badge--featured { background: #fef3c7; color: #b45309; }
.prod-brand { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.prod-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--primary); line-height: 1.2; margin: 0; }
.prod-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.prod-reviews { display: flex; align-items: center; gap: 6px; color: #f59e0b; font-size: 0.85rem; }
.prod-reviews span { color: var(--text-muted); font-weight: 500; }
.prod-ref { font-size: 0.8rem; color: var(--text-muted); background: var(--bg-light); padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border); }

.prod-price-box { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.prod-price { font-size: 1.8rem; font-weight: 800; color: var(--primary); display: flex; align-items: flex-end; gap: 10px; }
.prod-price-tax { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); margin-bottom: 6px; }
.prod-price-contact { font-size: 1.1rem; color: var(--secondary); font-weight: 700; background: #eff8fc; display: inline-block; padding: 10px 16px; border-radius: var(--radius-sm); border-left: 4px solid var(--secondary); }
.prod-status { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 0.88rem; font-weight: 600; }
.status-in-stock { color: #16a34a; }
.status-on-order { color: #d97706; }

.prod-short-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.prod-features-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.prod-features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-dark); }
.prod-features-list .fa-check { color: var(--secondary); margin-top: 5px; font-size: 0.8rem; flex-shrink: 0; }

/* Actions */
.prod-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 10px; }
@media (min-width: 480px) { .prod-actions { grid-template-columns: 1fr auto; } }
.btn-add-quote {
    background: var(--primary); color: white; border: none; padding: 16px 24px;
    border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    cursor: pointer; transition: var(--transition); width: 100%; box-shadow: 0 4px 14px rgba(7, 17, 35, 0.15);
}
.btn-add-quote:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3); }
.prod-actions-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-wa-product {
    background: var(--whatsapp); color: white; padding: 12px; font-size: 0.9rem; font-weight: 600;
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition);
}
.btn-wa-product:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-fav {
    background: white; color: var(--text-dark); border: 1px solid var(--border);
    padding: 12px; font-size: 0.9rem; font-weight: 600; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); cursor: pointer;
}
.btn-fav:hover { border-color: #ef4444; color: #ef4444; background: #fef2f2; }

/* Reinsurance */
.prod-reinsurance {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    margin-top: 24px; padding: 24px; background: #f8fafc;
    border-radius: var(--radius-md); border: 1px dashed #cbd5e1;
}
.reinsurance-item { display: flex; align-items: center; gap: 12px; }
.reinsurance-icon { color: var(--secondary); font-size: 1.2rem; }
.reinsurance-text { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* Product Tabs / Extended Info */
.prod-extended { margin-top: 60px; border-top: 1px solid var(--border); padding-top: 60px; }
.content-section { margin-bottom: 50px; }
.content-section h2 { font-size: 1.5rem; color: var(--primary); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.content-section h2::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.content-prose p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.7; }
.content-prose ul { margin-bottom: 20px; padding-left: 20px; color: var(--text-muted); }
.content-prose li { margin-bottom: 8px; }

/* Specs Table */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 10px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.specs-table th, .specs-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.specs-table th { background: #f8fafc; font-weight: 600; color: var(--text-dark); width: 35%; border-right: 1px solid var(--border); }
.specs-table td { color: var(--text-muted); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }

/* Advantages Grid */
.adv-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
.adv-card { background: white; padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.adv-icon { width: 40px; height: 40px; border-radius: 10px; background: #eff8fc; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.1rem; }
.adv-card h4 { font-size: 0.95rem; font-weight: 700; margin: 0; }
.adv-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* FAQ Accordion Basic */
.faq-wrap { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 18px 24px; background: white; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--primary); transition: background 0.2s; }
.faq-q:hover { background: #f8fafc; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.3s ease; color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.faq-item.active .faq-a { padding: 0 24px 24px; max-height: 500px; }
/* ╔══════════════════════════════════════════════╗
   ║  DEVIS / CONTACT PAGE FORMS                  ║
   ╚══════════════════════════════════════════════╝  */

.devis-container { padding: 60px 0; }
.devis-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .devis-grid { grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; } }

/* Sidebar Info Block */
.devis-sidebar { background: #f8fafc; padding: 40px 30px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.devis-sidebar h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 24px; }
.devis-contact-list { list-style: none; padding: 0; margin: 0 0 30px; display: flex; flex-direction: column; gap: 16px; }
.devis-contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.devis-contact-list i { color: var(--secondary); font-size: 1.2rem; margin-top: 2px; }
.devis-contact-list div { font-size: 0.95rem; color: var(--text-dark); line-height: 1.5; }
.devis-contact-list strong { display: block; color: var(--primary); margin-bottom: 4px; }

/* Forms */
.devis-form-wrapper { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.devis-form-wrapper h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 10px; }
.devis-form-wrapper > p { color: var(--text-muted); margin-bottom: 30px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.form-label span { color: #ef4444; }
.form-control {
    width: 100%; padding: 14px 16px; border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm); font-family: inherit; font-size: 1rem;
    color: var(--text-dark); background: #f8fafc; transition: all 0.2s ease;
}
.form-control:focus { outline: none; border-color: var(--secondary); background: white;    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
 }
select.form-control { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230A224A%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; background-position: right 16px center; background-size: 12px auto;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Dynamic Products Section */
.products-container {
    background: #f1f5f9; padding: 24px; border-radius: var(--radius-md);
    border: 1px solid #e2e8f0; margin-bottom: 24px;
}
.product-item {
    display: grid; grid-template-columns: 1fr; gap: 16px;
    padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px dashed #cbd5e1; position: relative;
}
@media (min-width: 600px) { .product-item { grid-template-columns: 2fr 1fr; align-items: start; } }
.product-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.btn-remove-product { color: #ef4444; background: none; border: none; font-size: 0.85rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; position: absolute; top: -30px; right: 0; }
.btn-remove-product:hover { text-decoration: underline; }

.btn-add-product {
    background: transparent; color: var(--secondary); border: 2px dashed var(--secondary);
    padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; width: 100%; transition: all 0.2s ease; margin-top: 16px;
}
.btn-add-product:hover { background: #eff8fc; }

.form-submit { margin-top: 30px; }
.btn-submit {
    background: var(--primary); color: white; border: none; width: 100%;
    padding: 18px; border-radius: var(--radius-sm); font-size: 1.1rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(7, 17, 35, 0.2);
}
.btn-submit:hover { background: var(--secondary); box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3); transform: translateY(-2px); }

/* Steps Section */
.process-section { background: white; border-top: 1px solid var(--border); }
.step-grid { display: grid; grid-template-columns: 1fr; gap: 30px; counter-reset: step-counter; }
@media (min-width: 600px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .step-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.step-card { position: relative; padding: 30px 20px; text-align: center; }
.step-card::before {
    counter-increment: step-counter; content: "0" counter(step-counter);
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    font-size: 3rem; font-weight: 800; color: #eff8fc; z-index: 0;
}
.step-icon {
    width: 60px; height: 60px; background: var(--secondary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin: 0 auto 20px; position: relative; z-index: 1;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);

}
.step-card h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; position: relative; z-index: 1; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; }

/* +----------------------------------------------+
   ¦  PARTNERS CAROUSEL                           ¦
   +----------------------------------------------+ */
.partners-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 40px;
    opacity: 0.7;
}

.partners-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
}

.partners-track {
    display: flex;
    width: calc(250px * 10);
    animation: partnersScroll 25s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.partner-logo img {
    max-width: 160px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes partnersScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

@media (max-width: 768px) {
    .partner-logo { width: 180px; padding: 0 25px; }
    .partner-logo img { max-width: 120px; }
    @keyframes partnersScroll {
        100% { transform: translateX(calc(-180px * 5)); }
    }
}

/* --- MODERN E-COMMERCE SEARCH --- */
.header-search { position: relative; flex: 1; max-width: 450px; margin: 0 40px; display: none; }
@media (min-width: 900px) { .header-search { display: block; } }
.header-search form { display: flex; align-items: center; background: #f1f5f9; border: 1.5px solid transparent; border-radius: 50px; padding: 2px 15px; transition: all 0.3s ease; }
.header-search form:focus-within { background: #fff; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); }
.header-search input { background: transparent; border: none; padding: 10px 12px; font-size: 0.9rem; width: 100%; outline: none; }
.btn-search-icon { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; transition: color 0.2s; }
.btn-search-icon:hover { color: var(--secondary); }
/* Results Overlay */
.search-results-overlay { position: absolute; top: 110%; left: 0; width: 100%; background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg); z-index: 1000; max-height: 400px; overflow-y: auto; display: none; border: 1px solid var(--border); }

/* --- PREMIUM 4-COLUMN GRID --- */
#featured-products-grid { display: grid; grid-template-columns: repeat(1, 1fr) !important; max-width: 1240px !important; gap: 30px !important; margin: 0 auto !important; }
@media (min-width: 640px) { #featured-products-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1024px) { #featured-products-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 1280px) { #featured-products-grid { grid-template-columns: repeat(4, 1fr) !important; } }


/* --- MODERN PRODUCT CARDS --- */
.prod-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; }
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.prod-card .prod-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.prod-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 34, 74, 0.4); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.prod-card:hover .prod-card-overlay { opacity: 1; }
.btn-quick-view { background: #fff; color: var(--primary); padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; transform: translateY(10px); transition: transform 0.3s; }
.prod-card:hover .btn-quick-view { transform: translateY(0); }
.prod-body { padding: 15px; flex: 1; }
.prod-name a { text-decoration: none; color: var(--primary); transition: color 0.2s; }
.prod-name a:hover { color: var(--secondary); }
.prod-footer { padding: 12px 15px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: #fafafa; }
.btn-add-to-devis { width: 36px; height: 36px; border-radius: 50%; background: var(--secondary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-add-to-devis:hover { background: var(--primary); transform: scale(1.1); }

/* --- CART SIDE DRAWER --- */
.cart-drawer { position: fixed; top: 0; right: -400px; width: 100%; max-width: 400px; height: 100%; background: #fff; z-index: 2100; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--primary); color: #fff; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-drawer-footer { padding: 20px; border-top: 1px solid var(--border); }
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2050; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(2px); }
.cart-overlay.active { opacity: 1; pointer-events: auto; }


/* --- COLLECTION BANNERS --- */
.banners-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; margin-top: -40px; position: relative; z-index: 10; }
@media (min-width: 768px) { .banners-grid { grid-template-columns: repeat(2, 1fr); } }
.banner-card { position: relative; padding: 40px; border-radius: 16px; overflow: hidden; display: flex; align-items: center; min-height: 250px; transition: transform 0.3s ease; }
.banner-card:hover { transform: translateY(-5px); }
.banner-card--blue { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: #fff; }
.banner-card--green { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); color: #fff; }
.banner-content { position: relative; z-index: 2; max-width: 70%; }
.banner-tagLine { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; opacity: 0.8; }
.banner-card h3 { font-size: 1.5rem; margin-bottom: 12px; font-weight: 800; line-height: 1.2; }
.banner-card p { font-size: 0.95rem; margin-bottom: 20px; opacity: 0.9; }
.banner-img-decor { position: absolute; right: -20px; bottom: -20px; font-size: 12rem; opacity: 0.1; transform: rotate(-15deg); z-index: 1; pointer-events: none; }
.btn-white-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; transition: all 0.3s; }
.btn-white-ghost:hover { background: #fff; color: var(--primary); border-color: #fff; }




