/*
Theme Name: ImpressPrint Pro
Theme URI: https://votre-site.com
Author: Capi
Author URI: https://votre-site.com
Description: Thème professionnel pour vente d'imprimantes
Version: 2.0.0
License: GPL v2 or later
Text Domain: impressprint
*/

:root {
    --primary-color: #0073AA;
    --secondary-color: #D26666;
    --primary-dark: #005a87;
    --primary-light: #3399cc;
    --secondary-dark: #c93e0b;
    --secondary-light: #f27443;
    --black-color: #000000;
    --white-color: #FFFFFF;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --text-color: #333333;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Header Top Bar */
.header-top-bar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.top-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.top-info span {
    display: inline-block;
    margin: 0 5px;
}

/* Main Header */
.main-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
    gap: 20px;
}

/* Logo Container */
.logo-container {
    flex: 0 0 200px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.logo-container .custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.site-logo {
    text-decoration: none;
    color: var(--primary-color);
}

.site-logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Header Search - BORDURE #0073AA */
.header-search {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.header-search form {
    position: relative;
    display: flex;
    width: 100%;
}

.search-field {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 2px solid #0073AA;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    border-color: #005a87;
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header-search button:hover {
    background-color: var(--secondary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Téléphone - couleur #D26666 et gras */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone i {
    color: #D26666;
    font-size: 24px;
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: var(--gray-dark);
}

.phone-number {
    font-size: 18px;
    font-weight: bold !important;
    color: #D26666;
    white-space: nowrap;
}

/* Compte - couleur #D26666 et gras */
.header-account, .header-cart {
    position: relative;
}

.header-account a, .header-cart a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-dark);
    text-decoration: none;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-account a:hover, .header-cart a:hover {
    color: #D26666;
    background-color: var(--gray-light);
}

.header-account i, .header-cart i {
    font-size: 24px;
    margin-bottom: 5px;
    color: #D26666;
}

.account-label, .cart-label {
    font-size: 12px;
    font-weight: bold;
    color: #D26666;
}

.header-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #D26666;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Main Navigation - BACKGROUND #0073AA */
.main-navigation {
    background-color: #0073AA !important;
    position: relative;
    z-index: 999;
}

.main-navigation .container {
    position: relative;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.menu-toggle i {
    font-size: 20px;
}

/* Menu Principal - Version Desktop */
.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.primary-menu > li {
    position: relative;
}

.primary-menu > li > a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-page-ancestor > a {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Sous-menus */
.primary-menu .sub-menu,
.primary-menu .children {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    border-top: 3px solid #D26666;
}

.primary-menu > li:hover > .sub-menu,
.primary-menu > li:hover > .children {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li,
.primary-menu .children li {
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.primary-menu .sub-menu li:last-child,
.primary-menu .children li:last-child {
    border-bottom: none;
}

.primary-menu .sub-menu a,
.primary-menu .children a {
    color: var(--text-color);
    padding: 15px 20px;
    display: block;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.primary-menu .sub-menu a:hover,
.primary-menu .children a:hover {
    background-color: #0073AA;
    color: white;
    padding-left: 25px;
}

.primary-menu .sub-menu a:hover:before,
.primary-menu .children a:hover:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #D26666;
    border-radius: 50%;
}

/* Sous-sous-menus */
.primary-menu .sub-menu .sub-menu,
.primary-menu .sub-menu .children,
.primary-menu .children .sub-menu,
.primary-menu .children .children {
    top: 0;
    left: 100%;
    margin-left: 0;
    border-radius: 0 8px 8px 0;
}

.primary-menu .sub-menu > li:hover > .sub-menu,
.primary-menu .children > li:hover > .children {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Indicateur de sous-menu */
.primary-menu .menu-item-has-children > a:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.primary-menu .sub-menu .menu-item-has-children > a:after {
    content: '\f054';
    position: absolute;
    right: 15px;
}

/* Main Content */
.site-content {
    min-height: 60vh;
    padding: 30px 0;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.newsletter-info p {
    opacity: 0.9;
    margin-bottom: 0;
}

.newsletter-form form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    min-width: 250px;
    font-size: 16px;
}

.newsletter-form button {
    background: #D26666;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-dark);
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #D26666;
}

/* Footer Styles */
.main-footer {
    background-color: var(--gray-dark);
    color: #ccc;
}

.footer-widgets {
    padding: 60px 0;
}

.widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.widget-area h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.widget-area h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #D26666;
}

.footer-widget {
    color: #aaa;
}

.footer-widget p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.company-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.company-info i {
    color: #D26666;
    margin-top: 3px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 2px 0;
}

.footer-menu a:hover {
    color: white;
    padding-left: 5px;
}

/* Payment Methods */
.payment-methods {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #444;
}

.payment-methods h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 30px;
    color: #ccc;
    flex-wrap: wrap;
}

/* Copyright */
.copyright {
    background-color: #111;
    color: #999;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

.copyright p {
    margin: 0;
}

/* Menu Mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0073AA;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .primary-menu.show {
        display: flex;
    }
    
    .primary-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .primary-menu > li:last-child {
        border-bottom: none;
    }
    
    .primary-menu > li > a {
        padding: 15px;
        border-left: 3px solid transparent;
    }
    
    .primary-menu > li > a:hover,
    .primary-menu > li.current-menu-item > a {
        border-left-color: #D26666;
        background-color: rgba(255,255,255,0.1);
    }
    
    /* Sous-menus mobile */
    .primary-menu .sub-menu,
    .primary-menu .children {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0,0,0,0.1);
        display: none;
        width: 100%;
        padding-left: 20px;
        border-top: none;
        border-radius: 0;
    }
    
    .primary-menu .sub-menu.show,
    .primary-menu .children.show {
        display: block;
    }
    
    .primary-menu .sub-menu li,
    .primary-menu .children li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .primary-menu .sub-menu a,
    .primary-menu .children a {
        padding: 12px 15px;
        color: rgba(255,255,255,0.9);
    }
    
    .primary-menu .sub-menu a:hover,
    .primary-menu .children a:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
        padding-left: 20px;
    }
    
    /* Flèches pour mobile */
    .menu-item-has-children > a {
        position: relative;
        padding-right: 40px !important;
    }
    
    .menu-item-has-children > a::after {
        content: '\f078';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .menu-item-has-children > a.submenu-open::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Layout Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .header-main-row {
        gap: 15px;
    }
    
    .logo-container {
        flex: 0 0 180px;
    }
    
    .header-search {
        order: 3;
        flex: 1 0 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form form {
        justify-content: center;
    }
    
    .contact-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-actions {
        flex: 1;
        justify-content: flex-end;
    }
    
    .header-phone .phone-content {
        display: none;
    }
    
    .header-phone i {
        font-size: 28px;
    }
    
    .newsletter-form input {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .widgets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .header-top-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .top-info {
        gap: 10px;
    }
    
    .header-main-row {
        padding: 10px 0;
    }
    
    .logo-container {
        flex: 0 0 150px;
    }
    
    .logo-container .custom-logo {
        max-height: 50px;
    }
    
    .search-field {
        padding: 10px 15px;
        padding-right: 45px;
        font-size: 14px;
    }
    
    .header-search button {
        width: 35px;
        height: 35px;
    }
    
    .header-actions {
        gap: 15px;
    }
    
    .header-account i, .header-cart i {
        font-size: 20px;
    }
    
    .phone-label, .account-label, .cart-label {
        display: none;
    }
    
    .payment-icons {
        gap: 15px;
        font-size: 24px;
    }
}



/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(rgba(0, 115, 170, 0.9), rgba(0, 115, 170, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #D26666;
    color: white;
    border: 2px solid #D26666;
}

.btn-primary:hover {
    background: #c93e0b;
    border-color: #c93e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0073AA;
    transform: translateY(-2px);
}

/* ===== Sections communes ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #0073AA;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #D26666;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-link {
    color: #0073AA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-link:hover {
    color: #D26666;
}

/* ===== Réassurance ===== */
.reassurance-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reassurance-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.reassurance-item:hover {
    transform: translateY(-10px);
}

.reassurance-icon {
    width: 70px;
    height: 70px;
    background: #0073AA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.reassurance-item h3 {
    color: #0073AA;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.reassurance-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== Catégories ===== */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: #0073AA;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: #D26666;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 25px;
}

.category-card h3 {
    color: #0073AA;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== Produits phares ===== */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D26666;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 20px;
}

.product-title {
    margin-bottom: 10px;
}

.product-title a {
    color: #0073AA;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-title a:hover {
    color: #D26666;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D26666;
    margin-bottom: 10px;
}

.product-price del {
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
}

.product-rating {
    margin-bottom: 15px;
}

.btn-add-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0073AA;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-add-to-cart:hover {
    background: #005a87;
}

/* ===== Promotions ===== */
.promotions-section {
    padding: 80px 0;
}

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

.promotion-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid #D26666;
}

.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D26666;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.promotion-image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-content {
    padding: 20px;
    text-align: center;
}

.promotion-content h3 {
    color: #0073AA;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.promotion-price {
    margin-bottom: 20px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-size: 1.1rem;
}

.new-price {
    color: #D26666;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-promo {
    display: inline-block;
    background: #D26666;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-promo:hover {
    background: #c93e0b;
}

/* ===== B2B Solutions ===== */
.b2b-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.b2b-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.b2b-features {
    list-style: none;
    margin: 30px 0;
}

.b2b-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.b2b-features i {
    color: #0073AA;
}

.b2b-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== Marques ===== */
.brands-section {
    padding: 80px 0;
}

.brands-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-item {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brand-logo i {
    font-size: 40px;
    color: #0073AA;
}

.brand-logo span {
    font-weight: 600;
    color: #333;
    font-size: 1.2rem;
}

/* ===== Services ===== */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    border-top-color: #D26666;
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #0073AA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.service-card h3 {
    color: #0073AA;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #D26666;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: #c93e0b;
}

/* ===== Témoignages ===== */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eaeaea;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.testimonial-author {
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #0073AA;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* ===== CTA Final ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0073AA, #005a87);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .b2b-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .b2b-image {
        order: -1;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .reassurance-grid,
    .categories-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Héros Photocopieuses ===== */
.photocopieur-hero .hero-title {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Produits Photocopieuses ===== */
.photocopieur-card {
    border: 1px solid #e0e0e0;
}

.photocopieur-card .product-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.photocopieur-card .spec-item {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.photocopieur-card .spec-item i {
    color: #0073AA;
    font-size: 0.8rem;
}

.photocopieur-card .location-price {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

.photocopieur-card .product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.photocopieur-card .btn-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    flex: 1;
    justify-content: center;
}

.photocopieur-card .btn-location:hover {
    background: #218838;
}

.product-badge.location {
    background: #28a745;
    top: 15px;
    left: auto;
    right: 15px;
}

/* ===== B2B Stats ===== */
.b2b-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0073AA;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* ===== CTA Photocopieuses ===== */
.photocopieur-cta {
    background: linear-gradient(135deg, #005a87, #003d5c);
}

.photocopieur-cta .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.photocopieur-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.photocopieur-cta .btn-outline:hover {
    background: white;
    color: #005a87;
}

/* ===== Marques Photocopieuses ===== */
.brands-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.brand-item {
    background: white;
    padding: 25px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: #0073AA;
}

.brand-logo i {
    font-size: 36px;
    color: #0073AA;
    margin-bottom: 15px;
    display: block;
}

.brand-logo span {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

/* ===== Promotions ===== */
.promotion-badge.pack {
    background: #6f42c1;
}

.promotion-badge.occasion {
    background: #fd7e14;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .b2b-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .photocopieur-card .product-actions {
        flex-direction: column;
    }
    
    .photocopieur-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .photocopieur-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .brands-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== WooCommerce Général ===== */
/*
.woocommerce .container {
    padding-top: 30px;
    padding-bottom: 50px;
} */




