/* ==========================================================================
   DISTRIBUTEUR DE BONHEUR FRANCE - DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
    --primary: #1e3a8a;
    --primary-light: #2563eb;
    --primary-dark: #0f172a;
    --accent-green: #059669;
    --accent-green-light: #10b981;
    --accent-gold: #f59e0b;
    --accent-red: #ef4444;
    
    --bg-dark: #0b1329;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    --border-color: #e2e8f0;
    --border-glow: rgba(37, 99, 235, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.3);

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-green-light), var(--accent-green));
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: #f1f5f9;
    border-color: var(--primary-light);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary-light);
}

.btn-outline:hover {
    background: rgba(37, 99, 235, 0.08);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #10b981);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    filter: blur(8px);
}

.btn-glow:hover::after {
    opacity: 0.7;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
    background: linear-gradient(90deg, #0b1329, #1e3a8a);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-fire {
    background: var(--accent-red);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    animation: pulse 2s infinite;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 700;
}

.phone-link:hover {
    color: #fff;
}

.divider {
    opacity: 0.3;
}

/* NAVBAR & LOGO IMAGE */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.brand-logo-img:hover {
    transform: scale(1.08);
}

.footer-logo-img {
    height: 85px;
    background: #ffffff;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-usp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 2.2rem;
}

.usp-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.usp-pill i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.trust-stars {
    color: var(--accent-gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.trust-stars strong {
    color: var(--primary-dark);
    margin-left: 0.4rem;
}

.trust-count {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* HERO MEDIA & FLOATING CARDS */
.hero-media-col {
    position: relative;
}

.hero-image-card {
    position: relative;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    z-index: 10;
}

.badge-price {
    top: -20px;
    left: -20px;
    border-left: 4px solid var(--accent-green);
}

.badge-speed {
    bottom: -20px;
    right: -20px;
    border-left: 4px solid var(--primary-light);
}

.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.badge-price .badge-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.badge-speed .badge-icon {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-light);
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.badge-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

/* SECTION SIMULATEUR GARANTIE -100€ */
.guarantee-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #edf2f7 100%);
}

.guarantee-box {
    background: linear-gradient(135deg, #0b1329, #1e293b);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

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

.guarantee-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green-light);
    border: 1px solid var(--accent-green);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-header p {
    color: #94a3b8;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.input-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus {
    border-color: var(--accent-green-light);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.calc-arrow {
    font-size: 2rem;
    color: var(--accent-green-light);
}

.calc-result {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
}

.result-title {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.price-comparison {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
}

.new-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #34d399;
}

.savings-tag {
    font-size: 0.9rem;
    color: #a7f3d0;
}

.calc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #94a3b8;
}

/* SECTION CATALOGUE PRODUITS */
.catalog-section {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.sub-heading {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.catalog-filters {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.filter-categories {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
}

.filter-dropdowns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-dropdowns select {
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    outline: none;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.4);
}

.product-badge-group {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    z-index: 5;
}

.badge-saving {
    background: var(--accent-green);
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.3);
}

.badge-bestseller, .badge-quality, .badge-tech, .badge-indus {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
}

.product-img-wrapper {
    height: 240px;
    padding: 1.5rem;
    background: radial-gradient(circle, #f8fafc 0%, #edf2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.78rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.specs-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.specs-pills span {
    font-size: 0.75rem;
    background: #f1f5f9;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-weight: 600;
}

.product-pricing {
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 0.85rem;
    margin-bottom: 1.25rem;
    border: 1px solid #f1f5f9;
}

.price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 600;
}

.price-highlight {
    margin-top: 0.3rem;
    padding-top: 0.3rem;
    border-top: 1px dashed var(--border-color);
}

.price-current {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent-green);
}

.price-monthly {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
    width: 100%;
}

.product-actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    justify-content: center;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    border-radius: var(--radius-md);
    box-sizing: border-box;
}

.product-actions .add-to-cart-btn {
    order: 1;
}

.product-actions .view-details-btn {
    order: 2;
}

/* MODALE DETAILS PRODUIT */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: #f8fafc;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent-red);
    color: #fff;
}

.modal-body {
    padding: 2.5rem;
}

.modal-product-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

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

.modal-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.modal-specs-table td {
    padding: 0.6rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-specs-table td:first-child {
    font-weight: 700;
    color: var(--primary-dark);
}

/* CONFIGURATEUR DE DEVIS WIZARD */
.quote-builder-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.builder-wizard-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.5;
    transition: var(--transition);
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: #e2e8f0;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item.active .step-number {
    background: var(--primary-light);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.step-line {
    flex-grow: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 1rem;
}

.wizard-step-panel {
    display: none;
}

.wizard-step-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.form-group select, .form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group select:focus, .form-group input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.checkbox-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.custom-checkbox-card input {
    display: none;
}

.checkbox-card-inner {
    padding: 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.checkbox-card-inner i {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.checkbox-card-inner h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.checkbox-card-inner span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.custom-checkbox-card input:checked + .checkbox-card-inner {
    border-color: var(--accent-green);
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.15);
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.summary-estimate-box {
    background: linear-gradient(135deg, #0b1329, #1e293b);
    color: #fff;
    padding: 1.75rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.summary-old-price {
    text-decoration: line-through;
    color: #94a3b8;
}

.summary-row.highlight {
    color: #34d399;
    font-weight: 700;
}

.summary-total-box {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: right;
}

.total-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #34d399;
}

.total-monthly {
    font-size: 0.9rem;
    color: #a7f3d0;
}

/* TABLEAU COMPARATIF */
.comparison-section {
    padding: 5rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: #f8fafc;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.comparison-table th.col-highlight {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    font-size: 1.2rem;
}

.comparison-table td.col-highlight {
    background: rgba(37, 99, 235, 0.03);
}

.text-green { color: var(--accent-green); }
.text-red { color: var(--accent-red); }

/* AVIS CLIENTS & LOGOS */
.reviews-section {
    padding: 5rem 0;
    background: #ffffff;
}

.logos-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    display: block;
    color: var(--primary-dark);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-col .logo-text .brand-name {
    color: #fff;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info i {
    color: var(--accent-green-light);
}

.footer-bottom-content {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #fff;
}

/* BANNIERE DE CONSENTEMENT COOKIES RGPD / CNIL */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    background: #0b1329;
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.cookie-text {
    flex-grow: 1;
    font-size: 0.88rem;
}

.cookie-text strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

.cookie-text p {
    color: #94a3b8;
    margin: 0;
}

.cookie-text a {
    color: #60a5fa;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    white-space: nowrap;
}

/* ==========================================================================
   TRUSTPILOT & TRUST STRIP STYLES
   ========================================================================== */
.badge-certif {
    background: #00b67a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.trustpilot-hero-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: var(--shadow-md);
}

.tp-stars-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tp-star-box {
    background: #00b67a;
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 3px;
}

.tp-score {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-left: 0.4rem;
}

.tp-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tp-brand {
    color: #00b67a;
    font-weight: 700;
}

/* Trust Strip Section */
.trust-strip-section {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.trust-strip-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.trust-strip-item i {
    font-size: 2.2rem;
    color: var(--primary-light);
    background: rgba(37, 99, 235, 0.1);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-strip-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.trust-strip-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ==========================================================================
   SHOPPING CART & DRAWER STYLES
   ========================================================================== */
.cart-trigger-btn {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.cart-badge {
    background: #ffffff;
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Cart Slide-Over Drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer-overlay.active .cart-drawer-container {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cart-close-btn {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--accent-red);
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty-msg {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.cart-empty-msg i {
    font-size: 3.5rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: block;
}

.cart-item-row {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--accent-green);
    font-size: 0.9rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: #f1f5f9;
    cursor: pointer;
    font-weight: 700;
}

.cart-qty-btn:hover {
    background: var(--primary-light);
    color: #fff;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--accent-red);
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #f8fafc;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-summary-line.total-line {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    border-top: 1px dashed var(--border-color);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.cart-summary-line.total-line strong {
    color: var(--accent-green);
}

.cart-warranty-checkbox {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.cart-warranty-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--primary-dark);
}

.payment-methods-strip {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pay-tag {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

.cart-checkout-btn {
    width: 100%;
}

/* Payment Options Grid inside Checkout Modal */
.pay-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pay-card-option {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.pay-card-option:hover, .pay-card-option.active {
    border-color: var(--primary-light);
    background: rgba(37, 99, 235, 0.04);
}

.checkout-guarantee-note {
    background: #f1f5f9;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calc-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .checkbox-options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }

    .modal-product-layout {
        grid-template-columns: 1fr;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
