/*
Theme Name: PureCommerce
Description: Thème e-commerce moderne et propre inspiré de mobalix.nl - Optimisé pour WooCommerce avec un design moderne et responsive.
Author: AI Assistant
Version: 1.0.0
Text Domain: purecommerce
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, woocommerce, modern, responsive, clean, wellness
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
*/

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #3D2817;
    background-color: #fafafa;
    padding-top: 120px !important; /* Hauteur de la bannière (40px) + hauteur du header fixe (80px) */
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #2D1810;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem 0;
}

/* ==========================================================================
   FAQ STYLES (inspired by Mobalix)
   ========================================================================== */

.faq-section {
    background: #f5f5dc;
    padding: 4rem 0;
}

.faq-section .section-header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.faq-section .section-header p {
    color: #8B4513;
    margin-bottom: 2rem;
}

.faq-accordion details {
    background: #fafafa;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #d2b48c;
}

.faq-accordion summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.faq-accordion summary::-webkit-details-marker { display: none; }

.faq-body {
    margin-top: 0.75rem;
    color: #654321;
}

.faq-accordion details[open] {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.faq-section .container {
    max-width: 1000px;
}

/* Category pills */
.faq-categories {
    display:flex;
    gap:1rem;
    justify-content:center;
    flex-wrap:wrap;
}

.faq-cat {
    background:#fafafa;
    border:1px solid #d2b48c;
    padding:1rem 1.25rem;
    border-radius:12px;
    min-width:160px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:0.5rem;
    cursor:pointer;
    transition:all 0.18s ease;
}

.faq-cat .cat-icon { font-size:1.5rem; }
.faq-cat .cat-label { font-weight:700; color:#8B4513; }

.faq-cat:hover { transform:translateY(-4px); box-shadow:0 8px 20px rgba(0,0,0,0.06); }
.faq-cat.active { border-color:#8B4513; box-shadow:0 12px 30px rgba(139, 69, 19, 0.08); }

/* Summary style */
.faq-accordion summary { display:flex; justify-content:space-between; align-items:center; font-weight:700; padding-right:1rem; }
.faq-plus { background:#d2b48c; border-radius:6px; padding:0.25rem 0.5rem; margin-left:1rem; }

/* Responsive tweaks */
@media (max-width:768px) {
    .faq-cat { min-width:120px; padding:0.75rem; }
    .faq-section { padding:2rem 0; }
}


a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #654321;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 4rem 0;
}

.section-sm {
    padding: 2rem 0;
}

.section-lg {
    padding: 6rem 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: #fafafa;
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #654321 0%, #5D4E37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: #fafafa;
    color: #8B4513;
    border-color: #8B4513;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #8B4513;
    color: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    position: relative;
    z-index: 2;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 40px; /* Position below the scrolling banner */
    left: 0;
    right: 0;
    height: 80px; /* Fixed height for consistent spacing */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   TOP SCROLLING BANNER
   ========================================================================== */

.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #8B4513, #654321);
    color: #fafafa;
    font-size: 14px;
    font-weight: 500;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    animation: scrollText 30s linear infinite;
    width: calc(200% + 100px);
}

.scrolling-text span {
    display: inline-block;
    padding: 0 50px;
    flex-shrink: 0;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Stop animation on hover for better readability */
.top-banner:hover .scrolling-text {
    animation-play-state: paused;
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.site-title a {
    text-decoration: none;
    color: inherit;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem; /* tighter spacing so long menus fit */
    align-items: center;
    justify-content: flex-start;
}

.main-navigation a {
    display: inline-block;
    padding: 0.45rem 0.25rem;
    font-weight: 600;
    color: #2D1810;
    transition: color 0.18s ease, transform 0.18s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.main-navigation a:hover {
    color: #8B4513;
    transform: translateY(-2px);
}

/* Active/current menu item emphasised */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #654321;
    border-bottom: 3px solid #654321;
    padding-bottom: calc(0.45rem - 3px);
}

/* Ensure header actions (cart/search) stay right-aligned */
.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ==========================================================================
   HEADER CART
   ========================================================================== */

.header-cart {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2D1810;
}

.cart-link:hover {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.cart-count {
    background: #8B4513;
    color: #fafafa;
    border-radius: 50%;
    padding: 0.125rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 18px;
    text-align: center;
}

/* ==========================================================================
   SEARCH FUNCTIONALITY
   ========================================================================== */

.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle-btn:hover {
    background: rgba(139, 69, 19, 0.1);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #654321;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    color: #2D1810;
}

.search-form {
    display: flex;
    gap: 1rem;
}

.search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
}

.search-form .search-field:focus {
    border-color: #8B4513;
}

.search-form .search-submit {
    padding: 0.75rem 1.5rem;
    background: #8B4513;
    color: #fafafa;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form .search-submit:hover {
    background: #654321;
    transform: translateY(-2px);
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle-line {
    width: 20px;
    height: 2px;
    background: #2D1810;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5dc 50%, #d2b48c 100%);
    color: #1a202c;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #2D1810;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #654321;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3D2817;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: #8B4513;
    color: #fafafa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-showcase {
    position: relative;
}

.product-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.showcase-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.3s; }
.showcase-item:nth-child(4) { animation-delay: 0.4s; }

.product-card-mini {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5dc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-icon {
    font-size: 1.5rem;
}

.product-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2D1810;
    margin-bottom: 0.25rem;
}

.product-info p {
    font-size: 0.75rem;
    color: #8B4513;
    margin: 0;
}

/* ==========================================================================
   FRONT PAGE SECTIONS
   ========================================================================== */

.hero-section {
    /* Hero section needs special handling for front page */
    margin-top: 0;
    padding-top: 0;
}

.featured-products-section,
.product-categories-section,
.about-section,
.latest-posts-section {
    background: #fafafa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D1810;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #8B4513;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

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

/* About Section */
.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2D1810;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1f1f1f;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.about-features .feature {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.about-features .feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2D1810;
}

.about-features .feature p {
    color: #8B4513;
    margin: 0;
}

.placeholder-image {
    border-radius: 12px;
    overflow: hidden;
}

/* Post Cards for Latest Posts */
.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2D1810;
}

.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-meta {
    font-size: 0.875rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.post-excerpt {
    color: #8B4513;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #8B4513;
}

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #8B4513;
    color: #fafafa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
}

.product-price del {
    color: #A0522D;
    font-weight: 400;
    margin-right: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.75rem;
    background: #8B4513;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #8B4513;
    transform: translateY(-2px);
}

/* ==========================================================================
   GRID SYSTEM
   ========================================================================== */

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* ==========================================================================
   FOOTER - ULTRA PROFESSIONAL
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, #654321 0%, #8B4513 100%);
    color: #e2e8f0;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

/* Main Footer */
.footer-main {
    padding: 2rem 0 1rem; /* réduit pour compacter verticalement */
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* colonnes plus compactes */
    gap: 1.25rem; /* moins d'espace vertical */
    margin-bottom: 1rem;
}

/* Footer Branding */
.footer-branding {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-site-title {
    font-size: 1.25rem; /* réduit pour gagner de la hauteur */
    font-weight: 700;
    color: white;
    margin: 0 0 0.75rem 0;
    letter-spacing: -0.02em;
}

.footer-description {
    color: #D2B48C;
    line-height: 1.4;
    margin-bottom: 1rem; /* réduit */
    font-size: 0.85rem; /* légèrement plus petit */
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem; /* badges plus serrés */
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links h4,
.footer-service h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.footer-links ul,
.footer-service ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-service li {
    margin-bottom: 0.5rem; /* réduit l'espacement entre items */
}

.footer-links a,
.footer-service a,
.footer-legal a {
    color: #D2B48C;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: inline-block;
}

.footer-links a:hover,
.footer-service a:hover,
.footer-legal a:hover {
    color: white;
    transform: translateX(4px);
}

/* Footer Socials */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    color: #e2e8f0;
    transition: all 0.25s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.08);
}

/* Newsletter compact improvements */
.newsletter-input-group input {
    min-width: 0;
}

.footer-newsletter .newsletter-submit svg {
    transform: translateX(2px);
}

/* Footer Contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #D2B48C;
    font-size: 0.9rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: #654321;
}

/* Footer Newsletter */
.footer-newsletter p {
    color: #D2B48C;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.45;
}

.newsletter-form {
    max-width: 320px;
}

.newsletter-input-group {
    display: flex;
    margin-bottom: 0.6rem; /* réduit l'espace */
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.6rem 0.9rem; /* plus compact */
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
}

.newsletter-input-group input::placeholder {
    color: #A0522D;
}

.newsletter-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-submit {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    border: none;
    padding: 0 0.8rem; /* plus compact */
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    transform: translateX(2px);
}

.newsletter-consent {
    font-size: 0.8rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #A0522D;
    cursor: pointer;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.125rem;
    accent-color: #A0522D;
}

.checkmark {
    display: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0; /* réduit la hauteur */
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem; /* moins d'espace entre éléments */
}

/* Footer Copyright */
.footer-copyright {
    flex: 1;
    min-width: 180px;
}

.footer-copyright p {
    margin: 0;
    color: #A0522D;
    font-size: 0.82rem; /* réduit légèrement */
}

/* Footer Legal Links */
.footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* réduit les gaps */
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal li {
    margin: 0;
}

/* Footer Payments */
.footer-payments {
    flex-shrink: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* icons plus proches */
}

.payment-label {
    color: #A0522D;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons svg {
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 28px; /* réduit la taille des icônes */
    height: 18px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-branding {
        padding-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-certifications {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal ul {
        justify-content: center;
        gap: 1.5rem;
    }

    .payment-methods {
        justify-content: center;
    }

    .newsletter-form {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .site-footer {
        font-size: 0.8rem;
    }

    .footer-main {
        padding: 2rem 0 1rem;
    }

    .footer-certifications {
        flex-direction: column;
        align-items: center;
    }

    .certification-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .footer-legal ul {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   PAGE SPACING (to prevent navbar overlap)
   ========================================================================== */

/* Remove any extra padding from site-main since body handles the spacing */
.site-main {
    padding-top: 0; /* Body padding-top handles navbar spacing */
    min-height: calc(100vh - 160px); /* Account for body padding-top (80px) + footer */
}

/* ==========================================================================
   FAQ RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .faq-header {
        position: static !important;
        text-align: center;
    }

    .faq-cta {
        grid-column: 1 !important;
    }

    .faq-header h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 1.8rem !important;
    }

    .faq-stats {
        justify-content: center !important;
    }

    .faq-item summary {
        padding: 1.5rem !important;
        font-size: 1.1rem !important;
    }

    .faq-item summary span:first-child {
        flex-direction: column !important;
        text-align: center !important;
    }

    .faq-item summary span:first-child .faq-item-icon {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    body {
        padding-top: 95px !important; /* Mobile: hauteur de la bannière (35px) + hauteur du header mobile (60px) */
    }

    .top-banner {
        height: 35px; /* Smaller banner on mobile */
        font-size: 12px;
    }

    .site-header {
        top: 35px; /* Position below the smaller mobile banner */
        height: 60px; /* Smaller header on mobile */
    }

    .header-container {
        padding: 0.5rem 1rem;
    }

    .header-left {
        gap: 1rem; /* Reduce gap on mobile */
    }

    .site-navigation {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hero {
        min-height: 80vh;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .product-showcase {
        max-width: 300px;
        margin: 0 auto;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .section {
        padding: 2rem 0;
    }

    /* Mobile menu */
    .main-navigation {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: 70vh; /* Limit height to 70% of viewport */
        overflow-y: auto; /* Add scroll if needed */
    }

    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 0.25rem 0; /* Even more reduced padding */
        gap: 0;
        margin: 0;
        max-height: 60vh; /* Reduced from 70vh since fewer items */
        overflow-y: auto;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        display: block;
        padding: 0.625rem 1.25rem; /* More compact padding */
        font-size: 1rem; /* Normal font size for better readability */
        font-weight: 500; /* Medium weight for better appearance */
        transition: all 0.2s ease;
    }

    .main-navigation a:hover {
        background: rgba(139, 69, 19, 0.05);
        color: #8B4513;
        padding-left: 2rem; /* Add indent on hover for better UX */
    }
}

@media (max-width: 480px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   FAQ ACCORDION STYLES
   ========================================================================== */

.faq-item details {
    transition: all 0.3s ease;
}

.faq-item details[open] .faq-arrow {
    transform: rotate(45deg);
}

.faq-item details[open] summary {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(101, 67, 33, 0.05));
}

.faq-item summary:hover {
    background: rgba(139, 69, 19, 0.03);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:focus {
    outline: 2px solid #8B4513;
    outline-offset: 2px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ==========================================================================
   QUANTITY BUTTONS
   ========================================================================== */

.quantity {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.qty-btn {
    background: #fafafa;
    border: 2px solid #d2b48c;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    color: #3D2817;
    transition: all 0.3s ease;
    user-select: none;
}

.qty-btn:hover {
    background: #8B4513;
    border-color: #8B4513;
    color: white;
}

.qty-minus {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.qty-plus {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.quantity .qty {
    border-radius: 0;
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #fafafa;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #8B4513;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* ==========================================================================
   HIDE UNWANTED WIDGETS & LISTS (Pages, Archives, Categories)
   ========================================================================== */

/* Hide all widget areas that might contain unwanted lists */
.widget_pages,
.widget_archive,
.widget_categories,
.widget_recent_entries,
.widget_tag_cloud,
.widget_calendar,
.widget_meta,
.widget_search {
    display: none !important;
    visibility: hidden !important;
}

/* Hide specific list elements */
.wp-block-page-list,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-tag-cloud,
ul.wp-block-page-list,
ul.wp-block-archives-list,
ul.wp-block-categories-list {
    display: none !important;
    visibility: hidden !important;
}

/* Hide any auto-generated page/category lists in footer */
.site-footer ul.pages,
.site-footer ul.categories,
.site-footer ul.archives,
.footer-main ul.pages,
.footer-main ul.categories,
.footer-main ul.archives {
    display: none !important;
    visibility: hidden !important;
}

/* Hide search widget results showing pages/categories */
.search-results .page,
.search-results .category-item {
    display: none !important;
}

/* Hide breadcrumb categories and archives */
.woocommerce-breadcrumb .archive,
.woocommerce-breadcrumb .category {
    display: none !important;
}

/* Force hide Archive titles and Search forms everywhere */
h1:contains("Archives"),
h2:contains("Archives"),
h3:contains("Archives"),
.archive-title,
.page-title.archives,
body.archive .page-header,
body.archive .page-title {
    display: none !important;
    visibility: hidden !important;
}

/* ==========================================================================
   CUSTOM QUANTITY PRICING CARDS
   ========================================================================== */

.custom-quantity-pricing {
    margin: 2rem 0;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-benefit {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    padding: 0;
    margin: 0;
}

/* Carrousel d'images clients - Version large */
.customer-carousel-wrapper-large {
    width: 100%;
    overflow: hidden;
    margin: 0 0 3rem 0;
    position: relative;
    background: linear-gradient(to bottom, #f9f9f9, #fff);
    padding: 2rem 0;
}

.customer-carousel-large {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.customer-carousel-large:hover {
    animation-play-state: paused;
}

.carousel-item-large {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #fff;
}

.carousel-item-large:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.carousel-item-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #c94277;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 66, 119, 0.2);
}

.pricing-card.selected {
    border-color: #c94277;
    background: #fff9fc;
    box-shadow: 0 8px 25px rgba(201, 66, 119, 0.25);
}

.pricing-card.popular {
    border-color: #ff9933;
    background: #fffbf5;
}

.pricing-card.popular .pricing-badge {
    background: #ff9933;
}

.pricing-badge {
    background: #ff9933;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.pricing-quantity {
    font-size: 1.75rem;
    font-weight: 900;
    color: #333;
    margin: 0.15rem 0;
    line-height: 1;
}

.pricing-product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin: 0.5rem 0;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    margin: 0.75rem 0;
    min-height: 75px;
    align-items: center;
}

.pricing-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 50px;
}

.pricing-card[data-qty="1"] .pricing-image {
    grid-template-columns: 1fr;
}

.pricing-card[data-qty="3"] .pricing-image {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card[data-qty="6"] .pricing-image {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-card[data-qty="9"] .pricing-image {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-amount {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.pricing-amount .original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
    line-height: 1;
}

.pricing-amount .final-price {
    font-size: 1.6rem;
    color: #ff5533;
    font-weight: 900;
    line-height: 1;
}

.add-to-cart-custom {
    width: 100%;
    background: linear-gradient(135deg, #c94277 0%, #d85a8f 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(201, 66, 119, 0.3);
}

.add-to-cart-custom:hover {
    background: linear-gradient(135deg, #b03767 0%, #c74a7f 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 66, 119, 0.4);
}

.add-to-cart-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ==========================================================================
   SECTION COMMENT ÇA MARCHE
   ========================================================================== */

.how-it-works-section {
    width: 100%;
    background: #fafafa;
    padding: 4rem 2rem;
    margin: 3rem 0 2rem 0;
    border-radius: 16px;
}

.how-it-works-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin: 0 0 3rem 0;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.how-it-works-step {
    display: grid;
    grid-template-columns: 390px 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-image {
    width: 390px;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.step-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(201, 66, 119, 0.2);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-counter {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c94277;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-step {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-image {
        width: 100%;
        aspect-ratio: 16 / 10;
        max-height: 250px;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

/* ==========================================================================
   SECTION OÙ L'UTILISER
   ========================================================================== */

.usage-locations-section {
    width: 100%;
    background: white;
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.usage-locations-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.usage-locations-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.usage-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.usage-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.usage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.usage-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.usage-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    padding: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: white;
}

/* Responsive */
@media (max-width: 1200px) {
    .usage-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .usage-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .usage-locations-title {
        font-size: 2rem;
    }
    
    .usage-card-image {
        height: 220px;
    }
    
    .usage-card-title {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .usage-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide all search forms on the site (except header if needed) */
.search-form,
.wp-block-search,
form[role="search"],
form.searchform,
.site-footer .search-form,
.site-footer form[role="search"],
.site-footer .wp-block-search,
footer .search-form,
footer form[role="search"],
footer .wp-block-search {
    display: none !important;
    visibility: hidden !important;
}

/* Hide "Search..." labels and buttons in footer */
.site-footer input[type="search"],
.site-footer button[type="submit"]:contains("Search"),
footer input[type="search"],
footer button[type="submit"] {
    display: none !important;
}

/* ==========================================================================
   PRODUCT LAYOUT WRAPPERS
   ========================================================================== */

/* Wrapper pour la galerie + summary (partie principale du produit) */
.product-main-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Wrapper pour toutes les sections additionnelles (carrousel, comment ça marche, où l'utiliser, tabs) */
.product-additional-sections {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (max-width: 768px) {
    .product-main-content {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
}
