/*
Theme Name: Kesli - Storefront Child
Theme URI:
Description: Thème enfant de Storefront pour Kesli
Author: Alexandre
Template: storefront
Version: 1.0.2
Text Domain: kesli-child
*/

/* ==========================================================================
   Layout Global - Marges et espacements
   ========================================================================== */

/* Container principal avec vraies marges */
.single-product .site {
    overflow-x: hidden;
}

/* Footer bien espacé */
.single-product .site-footer {
    margin-top: 120px;
    padding: 60px 0 40px;
    clear: both;
}

/* Content minimum height */
.single-product .site-content {
    min-height: 60vh;
}

/* ==========================================================================
   Import des polices Google Fonts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ==========================================================================
   Variables CSS
   ========================================================================== */

:root {
    /* Couleurs */
    --color-primary: #CD6B5B;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-muted: #999;
    --color-bg-beige: #faf9f7;
    --color-bg-light: #f5f4f2;
    --color-bg-gray: #ebe9e6;
    --color-bg-filter: #f0efed;
    --color-border: #e5e5e5;

    /* Typographie */
    --font-archivo: 'Archivo', sans-serif;
    --font-poppins: 'Poppins', sans-serif;

    /* Espacements */
    --spacing-xs: 8px;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
    --spacing-2xl: 100px;

    /* Bordures */
    --radius-sm: 4px;
    --radius-md: 30px;

    /* Ombres */
    --shadow-soft: 0 1px 8px rgba(0,0,0,0.06);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.1), 0 40px 80px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset outline violet Storefront
   ========================================================================== */

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

a, a:visited, a:hover, a:active {
    outline: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ==========================================================================
   Classes utilitaires
   ========================================================================== */

/* Typographie */
.font-archivo { font-family: var(--font-archivo); }
.font-poppins { font-family: var(--font-poppins); }

.text-white { color: var(--color-white); }
.text-dark { color: var(--color-dark); }
.text-muted { color: var(--color-muted); }
.text-primary { color: var(--color-primary); }

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Backgrounds */
.bg-white { background: var(--color-white); }
.bg-beige { background: var(--color-bg-beige); }
.bg-light { background: var(--color-bg-light); }
.bg-gray { background: var(--color-bg-gray); }

/* Effets */
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }
.transition { transition: var(--transition); }

/* Tes styles personnalisés ici */

/* ==========================================================================
   Reset des styles Storefront pour la page d'accueil
   ========================================================================== */

/* Supprimer les marges et paddings du thème parent */
.home .site-main,
.home .content-area,
.home article,
.home .entry-content,
.home .col-full {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.home .site-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Container global avec marges de 5% */
.home-container {
    width: 90%;
    margin: 0 auto;
    max-width: 100%;
}

/* ========== CLEAN HERO SECTION - TRUE 50/50 SPLIT ========== */

.hero-section-clean {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100vh;
    max-height: 800px;
    min-height: 600px;
    margin-bottom: 0;
}

.hero-split-container {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Left Column - Text */
.hero-column-left {
    flex: 1;
    width: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.hero-text-content {
    max-width: 500px;
}

.hero-main-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 30px;
    font-family: var(--font-archivo);
}

.hero-main-title em {
    font-style: italic;
    color: var(--color-primary);
}

.hero-main-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    font-family: var(--font-poppins);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #CD6B5B;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b85a4b;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: 1px solid #ddd;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--color-dark);
}

/* Right Column - Polaroids */
.hero-column-right {
    flex: 1;
    width: 50%;
    position: relative;
    background: #CD6B5B;
    overflow: hidden;
}

/* Container Desktop */
.polaroid-desktop {
    position: absolute;
    width: 2000px;
    height: 1800px;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -45%) rotate(25deg);
    transform-origin: center center;
}

.polaroid-desktop .polaroid-item {
    position: absolute;
    width: 180px;
    height: 270px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.polaroid-desktop .polaroid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Row tracks - carrousel diagonal continu par rangée (desktop uniquement) */
.polaroid-desktop .polaroid-row-track {
    position: absolute;
    left: 0;
    height: 270px;
    will-change: transform;
}

.polaroid-desktop .polaroid-row-track-0 {
    top: 350px;
    animation: polaroidRowDrift0 21s linear infinite;
}

.polaroid-desktop .polaroid-row-track-1 {
    top: 700px;
    animation: polaroidRowDrift1 35s linear infinite;
}

.polaroid-desktop .polaroid-row-track-2 {
    top: 1050px;
    animation: polaroidRowDrift2 28s linear infinite;
}

@keyframes polaroidRowDrift0 {
    from { transform: translateX(0); }
    to   { transform: translateX(840px); }
}

@keyframes polaroidRowDrift1 {
    from { transform: translateX(0); }
    to   { transform: translateX(1400px); }
}

@keyframes polaroidRowDrift2 {
    from { transform: translateX(0); }
    to   { transform: translateX(1120px); }
}

@media (prefers-reduced-motion: reduce) {
    .polaroid-desktop .polaroid-row-track {
        animation: none;
    }
}

/* Container Mobile - caché par défaut, rotation globale comme desktop */
.polaroid-mobile {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Styles pour la version mobile - 3 grandes images en éventail */
.polaroid-mobile-item {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    width: 120px;
    height: 160px;
}

.polaroid-mobile-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Image gauche - légèrement inclinée à gauche */
.polaroid-mobile .item-1 {
    top: 30px;
    left: 15px;
    transform: rotate(-12deg);
    z-index: 1;
}

/* Image centre - droite, plus grande */
.polaroid-mobile .item-2 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    width: 130px;
    height: 175px;
    z-index: 3;
}

/* Image droite - inclinée à droite */
.polaroid-mobile .item-3 {
    top: 35px;
    right: 15px;
    left: auto;
    transform: rotate(10deg);
    z-index: 2;
}

/* ==========================================================================
   Hero Section Clean - Responsive
   ========================================================================== */

@media (max-width: 1100px) {
    .hero-section-clean {
        height: auto;
        max-height: none;
        min-height: auto;
    }

    .hero-split-container {
        flex-direction: column;
    }

    .hero-column-left {
        width: 100%;
        padding: 100px 40px 40px 40px;
        order: 1;
    }

    .hero-column-right {
        width: 100%;
        height: 420px !important;
        min-height: 420px !important;
        order: 2;
        position: relative;
    }

    .hero-text-content {
        max-width: 600px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Cacher desktop, montrer mobile avec 3 grandes images */
    .polaroid-desktop {
        display: none !important;
    }

    .polaroid-mobile {
        display: block !important;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    /* Images grandes pour tablette 1100px */
    .polaroid-mobile-item {
        width: 200px;
        height: 270px;
    }

    .polaroid-mobile .item-1 {
        top: 55px;
        left: 80px;
    }

    .polaroid-mobile .item-2 {
        width: 220px;
        height: 295px;
        top: 42px;
    }

    .polaroid-mobile .item-3 {
        top: 55px;
        right: 80px;
    }
}

@media (max-width: 768px) {
    /* Cacher desktop, montrer mobile avec 3 grandes images */
    .polaroid-desktop {
        display: none !important;
    }

    .polaroid-mobile {
        display: block !important;
    }

    /* Images pour tablette 768px */
    .polaroid-mobile-item {
        width: 160px;
        height: 215px;
    }

    .polaroid-mobile .item-1 {
        top: 42px;
        left: 40px;
    }

    .polaroid-mobile .item-2 {
        width: 175px;
        height: 235px;
        top: 32px;
    }

    .polaroid-mobile .item-3 {
        top: 42px;
        right: 40px;
    }

    .hero-column-left {
        padding: 120px 20px 30px 20px;
    }

    .hero-main-title {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-main-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-column-right {
        height: 300px !important;
        min-height: 300px !important;
        flex-shrink: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 260px;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .hero-column-left {
        padding: 130px 15px 25px 15px;
    }

    .hero-main-title {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero-main-description {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-column-right {
        height: 260px !important;
        min-height: 260px !important;
    }

    /* Images moyennes pour 480px */
    .polaroid-mobile-item {
        width: 130px;
        height: 175px;
    }

    .polaroid-mobile .item-1 {
        top: 42px;
        left: 20px;
    }

    .polaroid-mobile .item-2 {
        width: 145px;
        height: 195px;
        top: 32px;
    }

    .polaroid-mobile .item-3 {
        top: 42px;
        right: 20px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .hero-column-left {
        padding: 130px 15px 20px 15px;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .hero-main-description {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-column-right {
        height: 230px !important;
        min-height: 230px !important;
    }

    /* Images plus petites pour iPhone SE */
    .polaroid-mobile-item {
        width: 105px;
        height: 140px;
    }

    .polaroid-mobile .item-1 {
        top: 45px;
        left: 12px;
    }

    .polaroid-mobile .item-2 {
        width: 115px;
        height: 155px;
        top: 38px;
    }

    .polaroid-mobile .item-3 {
        top: 45px;
        right: 12px;
    }
}

/* Polaroid Styles - SANS BORDURE */
.polaroid {
    position: absolute !important;
    background: white;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual Polaroid Positions - COMME L'IMAGE DE RÉFÉRENCE */
.polaroid-1 {
    width: 220px !important;
    height: 280px !important;
    top: 20px !important;
    left: -50px !important;
    transform: rotate(-25deg) !important;
    z-index: 3 !important;
}

.polaroid-2 {
    width: 220px !important;
    height: 280px !important;
    top: 50px !important;
    left: 150px !important;
    transform: rotate(5deg) !important;
    z-index: 4 !important;
}

.polaroid-3 {
    width: 220px !important;
    height: 280px !important;
    top: 280px !important;
    left: 20px !important;
    transform: rotate(-15deg) !important;
    z-index: 2 !important;
}

.polaroid-4 {
    width: 220px !important;
    height: 280px !important;
    top: 200px !important;
    right: 50px !important;
    transform: rotate(20deg) !important;
    z-index: 1 !important;
}

.hero-section-new .hero-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 20px;
    font-family: var(--font-archivo);
}

.hero-section-new .hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 25px;
    font-family: var(--font-archivo);
}

.hero-section-new .hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
    max-width: 520px;
    font-family: var(--font-poppins);
    font-weight: 300;
}

.hero-cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-archivo);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(184, 168, 146, 0.3);
}

.hero-cta-button:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 168, 146, 0.4);
}

/* Right: Polaroid Gallery */
.hero-section-new .hero-right {
    flex: 1;
    width: 50%;
    position: relative;
    background: #C9573B;
    padding: 40px;
    overflow: visible;
}

.polaroid-gallery {
    position: relative !important;
    width: 100% !important;
    height: 500px !important;
    min-height: 500px !important;
}

/* Ancien style polaroid désactivé - on utilise .polaroid-desktop .polaroid-item maintenant */

/* Positioning based on computed data - 4 images */
.polaroid-1 {
    width: 200px !important;
    height: 280px !important;
    top: -20px !important;
    left: 60px !important;
    transform: rotate(8deg) !important;
    z-index: 2 !important;
}

.polaroid-2 {
    width: 200px !important;
    height: 280px !important;
    top: 80px !important;
    left: 220px !important;
    transform: rotate(-5deg) !important;
    z-index: 3 !important;
}

.polaroid-3 {
    width: 200px !important;
    height: 280px !important;
    top: 200px !important;
    left: 40px !important;
    transform: rotate(-12deg) !important;
    z-index: 1 !important;
}

.polaroid-4 {
    width: 200px !important;
    height: 280px !important;
    top: 150px !important;
    left: 280px !important;
    transform: rotate(15deg) !important;
    z-index: 4 !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 60px;
        padding: 0 40px;
    }

    .hero-section-new .hero-right {
        min-height: 500px;
    }

    .polaroid-item {
        width: 180px !important;
        height: 250px !important;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-section-new .hero-left {
        padding-right: 0;
        text-align: center;
    }

    .hero-section-new .hero-description {
        max-width: none;
        margin: 0 auto 35px auto;
    }

    .hero-section-new .hero-right {
        max-width: 600px;
        margin: 0 auto;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: var(--spacing-lg) 0;
        min-height: auto;
    }

    .hero-content-wrapper {
        padding: 0 25px;
    }

    .hero-section-new .hero-title {
        font-size: 32px;
    }

    .hero-section-new .hero-right {
        min-height: 400px;
        padding: 30px;
    }

    .polaroid-item {
        width: 140px !important;
        height: 200px !important;
    }

    .polaroid-1 { top: 10px; left: 20px; }
    .polaroid-2 { top: 60px; left: 140px; }
    .polaroid-3 { top: 160px; left: 10px; }
    .polaroid-4 { top: 120px; left: 170px; }
}

@media (max-width: 600px) {
    .hero-section-new .hero-right {
        min-height: 350px;
        padding: 20px;
    }

    .polaroid-item {
        width: 120px !important;
        height: 170px !important;
    }

    .polaroid-3,
    .polaroid-4 {
        display: none;
    }

    .polaroid-1 { top: 30px; left: 30px; transform: rotate(8deg); }
    .polaroid-2 { top: 100px; left: 120px; transform: rotate(-8deg); }
}

/* OLD HERO SECTION (keep for reference or remove) */
.hero-section {
    position: relative;
    width: calc(100% + 11.11%);
    margin-left: -5.55%;
    min-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg-beige);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
}

/* Compensation barre admin pour homepage hero */
body:not(.admin-bar) .hero-section {
    margin-top: 0;
    padding-top: var(--spacing-xl);
}

body.admin-bar .hero-section {
    margin-top: 0;
    padding-top: calc(var(--spacing-xl) + 32px);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Belle image d'intérieur moderne depuis Unsplash */
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Colonne de gauche - Texte - PAS DE BOX, TEXTE DIRECT */
.hero-left {
    position: relative;
    /* PAS de background, PAS de padding, PAS de border-radius */
}

.hero-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 25px;
    opacity: 0.8;
    font-family: var(--font-archivo);
}

.hero-title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 35px;
    letter-spacing: 0;
    font-family: var(--font-archivo);
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    font-weight: 300;
    letter-spacing: 0;
    font-family: var(--font-poppins);
}

/* Colonne de droite - Image */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    background: var(--color-white);
    padding: var(--spacing-xs);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    pointer-events: none;
    z-index: 1;
}

.hero-featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

    .hero-container {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left {
        text-align: center;
    }

    .hero-description {
        max-width: none;
        margin: 0 auto;
        max-width: 600px;
    }

    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-background::after {
        background: rgba(0, 0, 0, 0.85) !important;
    }

    .hero-section {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 50px 25px;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 25px;
        color: var(--color-white);
    }

    .hero-description {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
        color: var(--color-white);
    }

    .hero-background::after {
        background: rgba(0, 0, 0, 0.8) !important;
    }

    .hero-section {
        min-height: 500px;
        padding: var(--spacing-lg) 0;
    }
}

/* ==========================================================================
   Trust Badges Section (Réassurances)
   ========================================================================== */

.trust-badges-section {
    padding: 40px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Version Desktop */
.trust-badges-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1450px;
    margin: 0 auto;
    gap: 30px;
    position: relative;
    padding: 0;
}

/* Version Mobile - Marquee (cachée par défaut) */
.trust-badges-marquee {
    display: none;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 1 auto;
    justify-content: flex-start;
}

.trust-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #CD6B5B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #FFFFFF;
}

.trust-icon path,
.trust-icon circle {
    stroke: #FFFFFF;
    stroke-width: 2;
}

.trust-text {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    line-height: 1.2;
    color: rgb(104, 81, 67);
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

/* Ligne de séparation en bas - plus nécessaire, gérée par border-bottom */
.trust-divider {
    display: none;
}

/* Défilement infini sous 1522px */
@media (max-width: 1521px) {
    .trust-badges-section {
        padding: 20px 0;
        overflow: hidden;
        /* Étendre jusqu'aux bords de l'écran */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    /* Cacher la version desktop */
    .trust-badges-desktop {
        display: none;
    }

    /* Afficher la version marquee mobile */
    .trust-badges-marquee {
        display: block;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .trust-badges-track {
        display: flex;
        gap: 40px;
        animation: trust-scroll 20s linear infinite;
        width: max-content;
        padding-left: 40px;
    }

    .trust-badges-marquee .trust-badge-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        width: auto;
        min-width: auto;
    }

    .trust-badges-marquee .trust-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .trust-badges-marquee .trust-icon {
        width: 18px;
        height: 18px;
    }

    .trust-badges-marquee .trust-text {
        font-size: 12px;
        white-space: nowrap;
    }

    /* Animation de défilement infini */
    @keyframes trust-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* Pause au survol (optionnel pour touch devices) */
    .trust-badges-marquee:hover .trust-badges-track {
        animation-play-state: paused;
    }
}

/* ==========================================================================
   Popular Items Section
   ========================================================================== */

.popular-items-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.popular-items-header {
    max-width: 1450px;
    margin: 0 auto var(--spacing-lg) auto;
}

.popular-items-header-centered {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.popular-items-header-centered .popular-items-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.5px;
    font-family: var(--font-archivo);
}

.popular-items-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.5px;
    font-family: var(--font-archivo);
}

.popular-items-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

.btn-explore-shop {
    display: inline-block;
    background-color: #CD6B5B;
    color: #FFFFFF;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-inter);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
}

.btn-explore-shop:hover {
    background-color: #b85a4a;
    color: #FFFFFF;
}

.view-all-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Grille de produits - Page d'accueil (4 colonnes) */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0;
}

/* Grille style Shopify Portland - Page archive */
.collection-product-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 20px;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto var(--spacing-xl) auto;
    padding: 0;
    list-style: none;
}

.collection-product-card {
    position: relative;
}

/* Carte produit Shopify */
.card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card--product {
    position: relative;
    background: transparent;
}

.card__inner {
    position: relative;
    overflow: hidden;
}

/* Zone image avec ratio portrait 130% */
.media--portrait {
    position: relative;
    padding-bottom: 130%;
    background: #f5f5f5;
    overflow: hidden;
}

.media--portrait img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bouton Quick View */
.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.collection-product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.card__link {
    display: block;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-archivo);
}

/* Informations produit */
.card-information {
    padding-top: 20px;
}

.card-information__wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card__vendor {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-muted);
    font-family: var(--font-archivo);
}

.card__title {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    font-family: var(--font-poppins);
}

.card__title a {
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s ease;
}

.card__title a:hover {
    gap: 8px;
}

.icon-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.card__title a:hover .icon-arrow {
    transform: translate(2px, -2px);
}

/* Prix */
.card-information .price {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    margin-top: 5px;
    font-family: var(--font-poppins);
}

/* Overlay link pour toute la carte */
.card-wrapper__link--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.product-card {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card .product-image-wrapper {
    border-radius: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    text-align: left;
    padding: 17px 0 25px;
}

.product-category {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(144, 144, 144);
    margin: 0;
    font-family: var(--font-poppins);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.product-stars {
    color: #CD6B5B;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
    position: relative;
    top: -1px;
}

.product-stars .half-star {
    display: inline-block;
    width: 0.5em;
    overflow: hidden;
    vertical-align: top;
}

.product-reviews-count {
    font-size: 13px;
    color: rgb(144, 144, 144);
    font-family: var(--font-poppins);
    line-height: 1;
}

.product-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: rgb(0, 0, 0);
    margin: 0 0 7px;
    font-family: var(--font-poppins);
}

.product-price {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-family: var(--font-poppins);
}

.product-price del {
    color: var(--color-muted);
    font-weight: 400;
    margin-right: var(--spacing-xs);
}

.product-price ins {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

/* Responsive pour la section produits */
@media (max-width: 1390px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 1100px) {
    .collection-product-list {
        gap: 25px 15px;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: var(--spacing-md);
    }

    .popular-items-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .popular-items-filters {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .home-container {
        width: 95%;
    }

    .products-grid {
        gap: var(--spacing-md);
    }

    .popular-items-title {
        font-size: 32px;
    }

    .popular-items-filters {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .popular-items-section {
        padding: var(--spacing-md) 0;
    }

    .popular-items-cta {
        margin-top: 20px;
    }
}

@media (max-width: 750px) {
    .collection-product-list {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .popular-items-title {
        font-size: 28px;
    }

    .filter-btn {
        font-size: 11px;
        padding: 8px 16px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section-new {
    background: #f5f4f2;
    padding: var(--spacing-2xl) 0;
}

/* Première rangée: Grande image + Texte + Mini grid */
.about-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
}

.about-large-image {
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.about-large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-content h3 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: var(--color-dark);
    font-family: var(--font-archivo);
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 30px 0;
    color: #4a4a4a;
    font-family: var(--font-poppins);
    font-weight: 300;
}

/* Mini grid 3 images */
.about-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.about-mini-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* Deuxième rangée: 3 cartes service */
.about-row-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1450px;
    margin: 0 auto;
}

.about-service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.about-service-card h4 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 12px 0;
    color: var(--color-dark);
    font-family: var(--font-archivo);
}

.about-service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a;
    font-family: var(--font-poppins);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-row-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-large-image {
        height: 450px;
    }

    .about-row-bottom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: var(--spacing-xl) 0;
    }

    .about-large-image {
        height: 350px;
    }

    .about-text-content h3 {
        font-size: 26px;
    }

    .about-mini-grid {
        gap: 10px;
    }

    .about-mini-grid img {
        height: 120px;
    }

    .about-service-card img {
        height: 250px;
    }
}

/* ==========================================================================
   Featured Items Section - NEW 3 COLUMNS LAYOUT
   ========================================================================== */

.featured-items-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-white);
    position: relative;
}

.featured-items-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    max-width: 1450px;
    margin: 0 auto;
}

/* Header centré en haut */
.featured-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.featured-header-centered .featured-subtitle {
    display: block;
    margin-bottom: 20px;
}

.featured-title-centered {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.5px;
    font-family: var(--font-archivo);
}

/* NEW: 3 columns layout */
.featured-items-container.featured-three-columns {
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* Colonne gauche - Liens catégories */
.featured-text-column {
    padding-right: 0;
}

/* Colonne centrale - Image ambiance */
.featured-ambiance-column {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-ambiance-column .ambiance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Colonne droite - Produit carousel */
.featured-product-column {
    position: relative;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.featured-product-card {
    display: block;
}

.featured-product-card.hidden {
    display: none;
}

.featured-product-image {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    margin-bottom: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-product-info {
    text-align: center;
}

.featured-product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.featured-product-rating .stars {
    color: #f5a623;
}

.featured-product-rating .stars .star-rating {
    display: inline-flex;
}

.featured-product-rating .count {
    font-size: 13px;
    color: var(--color-muted);
}

.featured-product-category {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 8px;
    font-family: var(--font-archivo);
}

.featured-product-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 0 10px 0;
    font-family: var(--font-archivo);
}

.featured-product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    font-family: var(--font-poppins);
}

/* Carousel dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--color-primary);
}

/* Navigation arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--color-dark);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

/* Colonne de gauche - Texte et catégories (ancien) */
.featured-items-left {
    padding-right: 0;
    padding-top: 0;
}

.featured-subtitle {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 20px;
    font-family: var(--font-archivo);
}

.featured-title {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-dark);
    margin: 0 0 250px 0;
    letter-spacing: -0.5px;
    font-family: var(--font-archivo);
}

.featured-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Version centrée des catégories */
.featured-items-centered {
    text-align: center;
}

.featured-items-centered .featured-header-centered {
    margin-bottom: 60px;
}

.featured-categories-centered {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Marquee Slider */
.marquee-section {
    margin-top: 100px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    will-change: transform;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    height: 320px;
}

.marquee-img {
    width: 220px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Variations de position verticale */
.marquee-img-1 { margin-top: 0; margin-bottom: 0; height: 320px; }
.marquee-img-2 { margin-top: auto; margin-bottom: 0; height: 285px; }
.marquee-img-3 { margin-top: 0; margin-bottom: auto; height: 290px; }
.marquee-img-4 { margin-top: auto; margin-bottom: auto; height: 265px; }
.marquee-img-5 { margin-top: 0; margin-bottom: auto; height: 296px; }
.marquee-img-6 { margin-top: 0; margin-bottom: 0; height: 320px; }
.marquee-img-7 { margin-top: auto; margin-bottom: 0; height: 286px; }
.marquee-img-8 { margin-top: 0; margin-bottom: auto; height: 285px; }
.marquee-img-9 { margin-top: 0; margin-bottom: 0; height: 320px; }
.marquee-img-10 { margin-top: auto; margin-bottom: 0; height: 290px; }
.marquee-img-11 { margin-top: 0; margin-bottom: auto; height: 280px; }
.marquee-img-12 { margin-top: auto; margin-bottom: auto; height: 270px; }

@keyframes marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}


@media (max-width: 768px) {
    .marquee-section {
        margin-top: 40px;
    }

    .marquee-track {
        height: 240px;
    }

    .marquee-img {
        width: 160px;
    }

    .marquee-img-1, .marquee-img-6, .marquee-img-9 { height: 240px; }
    .marquee-img-2, .marquee-img-7, .marquee-img-10 { height: 210px; }
    .marquee-img-3, .marquee-img-8, .marquee-img-11 { height: 215px; }
    .marquee-img-4, .marquee-img-12 { height: 200px; }
    .marquee-img-5 { height: 220px; }
}

.featured-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-dark);
    transition: var(--transition);
}

.featured-category-link:last-child {
    border-bottom: 1px solid var(--color-border);
}

.featured-category-link span {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-archivo);
}

.featured-category-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.featured-category-link:hover {
    color: var(--color-primary);
}

.featured-category-link:hover svg {
    transform: translate(4px, -4px);
}

/* Colonne de droite - Grille lifestyle */
.featured-items-right {
    position: relative;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    min-height: 600px;
}

.lifestyle-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-bg-light);
}

.lifestyle-large {
    grid-row: span 2;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lifestyle-image:hover img {
    transform: scale(1.05);
}

/* Responsive pour la section Featured Items */
@media (max-width: 1200px) {
    .featured-items-container {
        gap: var(--spacing-lg);
    }

    .featured-items-container.featured-three-columns {
        grid-template-columns: 0.8fr 1.2fr 0.8fr;
        gap: 30px;
    }

    .featured-title-centered {
        font-size: 32px;
    }

    .featured-header-centered {
        margin-bottom: 50px;
    }

    .featured-ambiance-column {
        height: 500px;
    }

    .featured-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .featured-category-link span {
        font-size: 20px;
    }

    .lifestyle-grid {
        min-height: 500px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .featured-items-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .featured-items-container.featured-three-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .featured-text-column {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }

    .featured-title-centered {
        font-size: 28px;
    }

    .featured-header-centered {
        margin-bottom: 40px;
    }

    .featured-categories {
        max-width: 500px;
        margin: 0 auto;
    }

    .featured-ambiance-column {
        height: 400px;
    }

    .featured-items-left {
        padding-right: 0;
    }

    .lifestyle-grid {
        min-height: 400px;
    }

    .featured-items-section {
        padding: var(--spacing-xl) 0;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .featured-items-container.featured-three-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-text-column {
        grid-column: span 1;
    }

    .featured-title-centered {
        font-size: 24px;
    }

    .featured-header-centered {
        margin-bottom: 30px;
    }

    .featured-ambiance-column {
        height: 350px;
    }

    .featured-product-column {
        padding: 20px;
    }

    .carousel-arrow {
        display: none;
    }

    .featured-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .featured-category-link span {
        font-size: 18px;
    }

    .featured-category-link {
        padding: 20px 0;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
        gap: 12px;
    }

    .lifestyle-large {
        grid-row: span 1;
    }

    .lifestyle-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .featured-items-section {
        padding: var(--spacing-lg) 0;
    }

    .featured-title-centered {
        font-size: 22px;
    }

    .featured-ambiance-column {
        height: 280px;
    }

    .featured-category-link span {
        font-size: 16px;
    }

    .lifestyle-image {
        height: 250px;
    }
}


/* ==========================================================================
   Shop Archive Page (Reset des styles Storefront)
   ========================================================================== */

/* Reset global des styles Storefront pour la page boutique */
.woocommerce-page .site-main,
.woocommerce-page .content-area,
.woocommerce-page article,
.woocommerce-page .entry-content,
.woocommerce-page .col-full {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.woocommerce-page .site-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Masquer le titre par défaut de Storefront */
.woocommerce-page .woocommerce-products-header {
    display: none !important;
}

/* Reset du breadcrumb */
.woocommerce-page .woocommerce-breadcrumb {
    display: none !important;
}

/* Hero Banner Section pour la boutique */
.shop-hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
    margin-top: -122px;
    padding-top: 122px;
}

.shop-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Même image que la page d'accueil */
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.shop-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

/* Version Terra Cotta avec affiches */
.shop-hero-terracotta {
    background-color: #CD6B5B;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    padding-top: 180px;
    padding-bottom: 60px;
    gap: 40px;
    margin-top: -122px;
}

.shop-hero-terracotta .shop-hero-content {
    flex: 0 0 auto;
    max-width: 500px;
}

.shop-hero-posters {
    display: flex;
    align-items: center;
    gap: -20px;
    flex-shrink: 0;
}

.shop-hero-posters-left {
    margin-left: -50px;
}

.shop-hero-posters-right {
    margin-right: -50px;
}

.hero-poster {
    width: 140px;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transform: rotate(var(--rotation, 0deg)) translateY(var(--offset-y, 0));
    margin: 0 -15px;
    flex-shrink: 0;
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.shop-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    color: var(--color-white);
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    font-family: var(--font-archivo);
    text-transform: capitalize;
}

.shop-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: var(--font-inter);
}

/* Container principal de la boutique */
.shop-container {
    width: 90%;
    margin: 0 auto;
    max-width: 1450px;
}

.shop-main-section {
    padding-bottom: var(--spacing-2xl);
}

/* Contrôles avec bordures haut/bas et séparateurs verticaux */
.shop-controls {
    display: flex;
    align-items: center;
    height: 60px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: var(--spacing-lg);
    padding: 0;
    gap: 0;
}

/* Items de contrôle */
.shop-control-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 25px;
    height: 100%;
    cursor: pointer;
}

.control-label {
    font-size: 14px;
    color: #333;
    font-family: var(--font-poppins);
}

.control-arrow {
    opacity: 0.6;
    pointer-events: none;
}

/* Filtres dropdown Pays/Ville */
.shop-filter-dropdown {
    position: relative;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
}

.custom-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: #333;
    font-family: var(--font-poppins);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.custom-dropdown-trigger:hover {
    color: var(--color-primary);
}

.custom-dropdown-trigger .dropdown-label {
    white-space: nowrap;
}

.custom-dropdown-trigger .dropdown-arrow {
    transition: transform 0.2s ease;
    color: #999;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Liste déroulante */
.custom-dropdown-list {
    position: absolute;
    top: calc(100% + 15px);
    left: -15px;
    min-width: 200px;
    max-height: 200px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

/* Scrollbar stylisée */
.custom-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.custom-dropdown-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.custom-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.custom-dropdown.open .custom-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Options */
.custom-dropdown-item {
    padding: 12px 20px;
    font-family: var(--font-poppins);
    font-size: 14px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.15s ease;
}

.custom-dropdown-item:last-child {
    border-bottom: none;
}

.custom-dropdown-item:hover {
    background: var(--color-bg-beige);
    color: var(--color-primary);
}

.custom-dropdown-item.selected {
    color: var(--color-primary);
    font-weight: 500;
}

.custom-dropdown-item.placeholder {
    color: #999;
    font-style: italic;
}

/* Séparateurs verticaux */
.control-separator {
    width: 1px;
    height: 25px;
    background: #e5e5e5;
}

/* Compteur de résultats au centre avec flex-grow */
.shop-results-count {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #999;
    font-family: var(--font-poppins);
    padding: 0 20px;
}

.shop-results-count .woocommerce-result-count {
    margin: 0;
}

/* Section tri à droite */
.shop-sorting {
    margin-left: auto;
    padding: 0 25px;
    border-left: 1px solid #e5e5e5;
    position: relative;
}

.shop-sorting .woocommerce-ordering {
    margin: 0;
}

/* Liste du tri : ouvrir vers la gauche */
.shop-sorting .custom-dropdown-list {
    left: auto;
    right: 0;
}

/* Notifications */
.shop-notices {
    margin-bottom: var(--spacing-md);
}



/* Pagination */
.shop-pagination {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.shop-pagination .woocommerce-pagination {
    margin: 0;
}

.shop-pagination .page-numbers {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-pagination .page-numbers li {
    display: inline-block;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-poppins);
}


.shop-pagination .page-numbers .current {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Page sans produits */
.shop-no-products {
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.shop-no-products h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 0 20px 0;
    font-family: var(--font-archivo);
}

.shop-no-products p {
    font-size: 16px;
    color: var(--color-muted);
    margin: 0 0 30px 0;
    font-family: var(--font-poppins);
}

.shop-back-home {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-poppins);
    transition: var(--transition);
}


/* Responsive pour la page boutique */
@media (max-width: 900px) {
    .shop-controls {
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .shop-control-item,
    .shop-results-count,
    .shop-sorting {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #e5e5e5;
    }

    .control-separator {
        display: none;
    }

    .shop-sorting {
        border-left: none;
    }
}

@media (max-width: 1200px) {
    .hero-poster {
        width: 120px;
        height: 170px;
    }
}

@media (max-width: 991px) {
    .shop-hero-posters {
        display: none;
    }

    .shop-hero-terracotta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .shop-hero-section {
        min-height: 400px;
    }

    .shop-hero-title {
        font-size: 32px;
    }

    .shop-hero-subtitle {
        font-size: 15px;
        padding: 0 15px;
        line-height: 1.5;
    }

    .shop-hero-content {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }

    .shop-hero-terracotta .shop-hero-content {
        max-width: 100%;
        width: 100%;
    }

    .shop-container {
        width: 95%;
    }

    .shop-hero-terracotta {
        min-height: 300px;
        padding: 60px 15px;
        padding-top: 120px;
        margin-top: -70px;
    }
}

@media (max-width: 600px) {
    .shop-hero-section {
        min-height: 350px;
    }

    .shop-hero-terracotta {
        min-height: 250px;
        padding-top: 110px;
        margin-top: -60px;
    }
}

/* ==========================================================================
   Instagram Section - Layout centré avec 4 photos
   ========================================================================== */

.instagram-section-new {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.instagram-section-new .reviews-main-title {
    margin-bottom: 50px;
}

.instagram-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.instagram-photo-item {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.instagram-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-photo-item:hover img {
    transform: scale(1.05);
}

.instagram-cta {
    margin-top: 50px;
}

/* Responsive Instagram */
@media (max-width: 1024px) {
    .instagram-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .instagram-section-new {
        padding: 40px 5%;
    }

    .instagram-section-new .reviews-main-title {
        margin-bottom: 30px;
    }

    .instagram-photos-grid {
        gap: 10px;
    }
}

/* ==========================================================================
   Header blanc fixe - DESIGN MINIMALISTE
   ========================================================================== */

/* Header principal - Blanc permanent */
.site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 12px 0 !important;
}

/* Compensation barre admin WordPress */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* Container header custom - Layout flex comme Potto */
.site-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 100%;
    margin: 0;
}

/* Logo à gauche */
.site-header .site-branding {
    margin: 0 !important;
    padding: 0;
    flex: 0 0 auto !important;
    width: auto !important;
    display: inline-block !important;
    float: none !important;
}

.site-header .site-title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 26px;
    font-weight: 600;
    font-family: var(--font-archivo);
    text-transform: lowercase;
    letter-spacing: 0;
    line-height: 30px;
    height: 30px;
    width: auto;
    display: inline-block;
}

.site-header .site-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    line-height: 30px;
    white-space: nowrap;
}

.site-header .site-title a:hover {
    opacity: 0.7;
}

/* Menu au centre */
.site-header .main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0;
}

.site-header .main-navigation .nav-menu {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.site-header .main-navigation .nav-menu li {
    margin: 0;
    padding: 0;
}

.site-header .main-navigation .nav-menu a {
    display: inline-block;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    font-family: var(--font-archivo);
    text-transform: uppercase;
    white-space: nowrap;
    padding: 20px;
    line-height: 19.2px;
}

.site-header .main-navigation .nav-menu a:hover {
    color: var(--color-primary);
    opacity: 1;
}

/* Page active */
.site-header .main-navigation .nav-menu .current_page_item a,
.site-header .main-navigation .nav-menu .current-menu-item a {
    color: var(--color-primary);
    opacity: 1;
}

/* Utilitaires à droite */
.site-header .header-utilities {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Cart icon minimaliste */
.site-header .cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0;
}

.site-header .cart-icon:hover {
    opacity: 0.7;
}

/* Icône SVG */
.site-header .cart-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* Masquer le texte et afficher juste le compteur si > 0 */
.site-header .cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Account icon minimaliste */
.site-header .account-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0;
    margin-right: 15px;
}

.site-header .account-icon:hover {
    opacity: 0.7;
}

.site-header .account-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* Header transparent par défaut sur TOUTES les pages */

/* Header au scroll - devient blanc */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    padding: 12px 0 !important;
}

.site-header.scrolled .header-container {
    padding: 0 50px;
}

/* Couleurs au scroll - Logo */
.site-header.scrolled .site-title a {
    color: var(--color-dark);
}

/* Couleurs au scroll - Menu */
.site-header.scrolled .main-navigation .nav-menu a {
    color: var(--color-dark);
}

/* Couleurs au scroll - Panier */
.site-header.scrolled .cart-icon {
    color: var(--color-dark);
}

/* Couleurs au scroll - Compte */
.site-header.scrolled .account-icon {
    color: var(--color-dark);
}

/* Ajuster le contenu du site pour compenser le header fixe */
.site-content {
    padding-top: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }
}

/* ========================================
   SHOPIFY GRID LAYOUT - MOBILE/TABLET ONLY
   ======================================== */

/* Mobile first - Shopify portrait layout */
@media screen and (max-width: 900px) {
    /* Portrait image wrapper - 130% padding ratio */
    .product-image-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 130%; /* Portrait ratio from Shopify */
        overflow: hidden;
        background: #f8f8f8;
    }

    .product-image-wrapper .product-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Grid for mobile/tablet */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.8rem 4rem;
    }
}

/* Tablet - 2 columns */
@media screen and (min-width: 750px) and (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4.8rem 4rem;
    }
}

/* ========================================
   DESIGN CLEAN - GRILLE AVEC BORDURES (PAGE SHOP UNIQUEMENT)
   ======================================== */

/* Fond blanc pour toute la page shop */
.shop-main-section,
.shop-container,
body.archive {
    background: white !important;
}

/* Grille de produits - Style Postero 3 colonnes (PAGE SHOP UNIQUEMENT) */
body.archive .products-grid,
.shop-container .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1410px;
    margin: 0 auto;
    padding: 0;
}

/* Carte produit - Style Postero (PAGE SHOP UNIQUEMENT) */
body.archive .product-card,
.shop-container .product-card {
    background: white;
    padding: 0;
    width: 100%;
}



/* Zone image - Style Postero */
.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image hover effect - 2ème image de la galerie */
.product-image-main {
    transition: opacity 0.4s ease;
}

.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-hover {
    opacity: 1;
}

.product-card:hover .product-image-main {
    opacity: 0;
}


/* Bouton Add to Cart au hover - Style Postero */
.product-hover-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-card:hover .product-hover-actions {
    opacity: 1;
}

.product-hover-actions .button,
.product-hover-actions .add_to_cart_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    padding: 14px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-hover-actions .button::before,
.product-hover-actions .add_to_cart_button::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'%3E%3C/path%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.product-hover-actions .button:hover,
.product-hover-actions .add_to_cart_button:hover {
    background: #CD6B5B;
    color: #ffffff;
}

.product-hover-actions .button:hover::before,
.product-hover-actions .add_to_cart_button:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'%3E%3C/path%3E%3Cline x1='3' y1='6' x2='21' y2='6'%3E%3C/line%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'%3E%3C/path%3E%3C/svg%3E");
}


/* Infos produit - Style Postero */
.product-info {
    text-align: left;
    padding: 17px 0 25px;
}

/* Catégorie - Style Postero */
.product-category {
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(144, 144, 144);
    margin: 0;
    font-family: var(--font-poppins);
}

/* Titre - Style Postero */
.product-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: rgb(0, 0, 0);
    margin: 0 0 7px;
    font-family: var(--font-poppins);
}

.product-title a,
.product-title a:visited,
.product-title a:hover,
.product-title a:active {
    color: rgb(0, 0, 0) !important;
    text-decoration: none;
}

/* Prix - Style Postero */
.product-price {
    font-size: 18px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-family: var(--font-poppins);
}

/* Responsive */
@media screen and (max-width: 900px) {
    body.archive .products-grid,
    .shop-container .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media screen and (max-width: 600px) {
    body.archive .products-grid,
    .shop-container .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   Postero Fan Gallery Section - VALEURS EXACTES POSTERO
   ========================================================================== */

/* Container parent - padding 30px, margin-bottom 80px */
.postero-section {
    padding: 0 30px;
    margin: 0 0 80px;
    display: flex;
    justify-content: center;
}

/* Bloc rouge - 1410px, height 510px, bg rgb(210, 86, 79) */
.postero-hero {
    width: 1410px;
    max-width: 100%;
    height: 510px;
    background: #CD6B5B;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
}

/* Colonne texte - 470px, padding-left 120px */
.postero-text-column {
    width: 470px;
    height: 510px;
    padding: 0 0 0 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

/* Titre - 335px, 48px, 400, line-height 54px */
.postero-title {
    width: 335px;
    font-family: var(--font-archivo);
    font-size: 48px;
    font-weight: 400;
    line-height: 54px;
    color: rgb(255, 255, 255);
    margin: 0 0 20px 0;
}

/* Bouton - 11px, 600, padding 16px 30px, radius 50px */
.postero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #ffffff;
    border: 1px solid #ddd;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: fit-content;
}

.postero-btn:hover {
    border-color: var(--color-dark);
}

.postero-btn svg {
    width: 12px;
    height: 12px;
}

/* Colonne images - 940px, height 510px, position relative */
.postero-gallery-column {
    width: 940px;
    height: 510px;
    position: relative;
    flex-shrink: 0;
}

/* Images - ratio 2:3 (1024x1536) - largeur 234px = hauteur 351px */
.postero-fan-image {
    position: absolute;
    width: 234px;
    height: 351px;
    z-index: 1;
}

.postero-fan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image 1 (36aea51) - top: -42px, left: 88px, rotate: 35.51deg */
.postero-fan-image.fan-1 {
    top: -42px;
    left: 88px;
    transform: rotate(35.51deg);
}

/* Image 2 (d28c8f2) - top: 119px, left: 307px, rotate: 35.51deg */
.postero-fan-image.fan-2 {
    top: 119px;
    left: 307px;
    transform: rotate(35.51deg);
}

/* Image 3 (557cb36) - top: 38px, left: 697px, rotate: 34.75deg */
.postero-fan-image.fan-3 {
    top: 38px;
    left: 697px;
    transform: rotate(34.75deg);
}

/* Image 4 (f7b7113) - top: -165px, left: 450px, rotate: 125.51deg */
.postero-fan-image.fan-4 {
    top: -165px;
    left: 450px;
    transform: rotate(125.51deg);
}

/* Image 5 (37ede3f) - top: 319px, left: 551px, rotate: 125.51deg */
.postero-fan-image.fan-5 {
    top: 319px;
    left: 551px;
    transform: rotate(125.51deg);
}

/* Image 6 (db67163) - top: 401px, left: 162px, rotate: -54.49deg */
.postero-fan-image.fan-6 {
    top: 401px;
    left: 162px;
    transform: rotate(-54.49deg);
}

/* Responsive */
@media (max-width: 1500px) {
    .postero-hero {
        width: 100%;
    }

    .postero-gallery-column {
        width: calc(100% - 470px);
    }

    .postero-fan-image.fan-3 {
        display: none;
    }
}

@media (max-width: 1200px) {
    .postero-text-column {
        width: 350px;
        padding-left: 60px;
    }

    .postero-title {
        width: 100%;
        font-size: 40px;
        line-height: 48px;
    }

    .postero-fan-image {
        width: 180px;
        height: 250px;
    }

    .postero-fan-image.fan-5,
    .postero-fan-image.fan-6 {
        display: none;
    }
}

@media (max-width: 900px) {
    .postero-section {
        padding: 0 15px;
    }

    .postero-hero {
        flex-direction: column;
        height: auto;
    }

    .postero-text-column {
        width: 100%;
        height: auto;
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }

    .postero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .postero-gallery-column {
        width: 100%;
        height: 400px;
    }

    .postero-fan-image {
        width: 150px;
        height: 200px;
    }

    .postero-fan-image.fan-1 {
        top: 20px;
        left: calc(50% - 180px);
    }

    .postero-fan-image.fan-2 {
        top: 100px;
        left: calc(50% - 20px);
    }

    .postero-fan-image.fan-4 {
        top: -50px;
        left: calc(50% + 80px);
    }
}

@media (max-width: 600px) {
    .postero-text-column {
        padding: 30px 20px;
    }

    .postero-title {
        font-size: 28px;
        line-height: 34px;
    }

    .postero-gallery-column {
        height: 300px;
    }

    .postero-fan-image {
        width: 120px;
        height: 160px;
    }
}

/* ==========================================================================
   Why Choose Us Section - VALEURS EXACTES POSTERO
   ========================================================================== */

.why-choose-section {
    margin: 0 0 80px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.why-choose-container {
    width: 100%;
    height: 760px;
    display: flex;
    flex-direction: row;
}

/* Colonne gauche - fond vert */
.why-choose-content {
    width: 50%;
    height: 760px;
    background: #CD6B5B;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.why-choose-inner {
    width: 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Titre h2 - 48px, 400, line-height 54px */
.why-choose-title {
    font-family: var(--font-archivo);
    font-size: 48px;
    font-weight: 400;
    line-height: 54px;
    color: rgb(255, 255, 255);
    margin: 0 0 30px 0;
}

/* Icon boxes */
.why-choose-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

/* Icône - 90px x 90px */
.why-choose-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon svg {
    width: 50px;
    height: 50px;
    color: rgb(255, 255, 255);
}

/* Texte */
.why-choose-text {
    display: flex;
    flex-direction: column;
}

/* Titre h3 - 20px, 600, line-height 28px */
.why-choose-text h3 {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: rgb(255, 255, 255);
    margin: 0 0 10px 0;
}

/* Description - 15px, 400, line-height 24px */
.why-choose-text p {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(255, 255, 255);
    margin: 0;
}

/* About text style */
.why-choose-inner-about {
    max-width: 550px;
}

.why-choose-inner-about .why-choose-title {
    font-size: 38px;
    line-height: 1.2;
}

.why-choose-about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.why-choose-about-text p {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgb(255, 255, 255);
    margin: 0;
}

/* Décor images */
.why-choose-decor {
    position: absolute;
}

/* Décor 1 - 225x200, bottom left */
.why-choose-decor.decor-1 {
    width: 225px;
    height: 200px;
    bottom: 0;
    right: 0;
}

/* Décor 2 - 186x204, top left */
.why-choose-decor.decor-2 {
    width: 186px;
    height: 204px;
    top: -102px;
    left: 0;
}

/* Colonne droite - image background */
.why-choose-image {
    width: 50%;
    height: 760px;
    background-size: cover;
    background-position: 50% 35%;
}

/* Responsive */
@media (max-width: 1200px) {
    .why-choose-container {
        height: auto;
    }

    .why-choose-content,
    .why-choose-image {
        height: 600px;
    }

    .why-choose-title {
        font-size: 40px;
        line-height: 48px;
    }

    .why-choose-icon {
        width: 70px;
        height: 70px;
    }

    .why-choose-icon svg {
        width: 40px;
        height: 40px;
    }

    .why-choose-decor.decor-2 {
        display: none;
    }
}

@media (max-width: 900px) {
    .why-choose-container {
        flex-direction: column;
    }

    .why-choose-content,
    .why-choose-image {
        width: 100%;
        height: auto;
    }

    .why-choose-content {
        padding: 50px 30px;
    }

    .why-choose-image {
        height: 400px;
    }

    .why-choose-inner {
        max-width: 100%;
    }

    .why-choose-decor {
        display: none;
    }
}

@media (max-width: 600px) {
    .why-choose-content {
        padding: 40px 20px;
    }

    .why-choose-title {
        font-size: 32px;
        line-height: 40px;
    }

    .why-choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-choose-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-icon svg {
        width: 35px;
        height: 35px;
    }

    .why-choose-image {
        height: 300px;
    }
}

/* ==========================================================================
   Page About
   ========================================================================== */

/* Hero Section About */
.about-hero-section {
    min-height: 400px !important;
    margin-bottom: 0;
}

.about-hero-bg {
    background: linear-gradient(135deg, #b8a892 0%, #8a7560 100%);
}

.hero-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    color: var(--color-white);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.3;
    text-align: center;
}

/* Contenu About */
.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Intro */
.about-intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.about-intro-text {
    margin-top: var(--spacing-lg);
}

.about-intro-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-dark);
    text-align: center;
}

.highlight-text {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--color-primary) !important;
    margin-top: 30px !important;
}

/* Section Histoire */
.about-story-section {
    background: var(--color-bg-beige);
    padding: var(--spacing-xl) 0;
}

.story-grid {
    margin-top: var(--spacing-lg);
}

.story-paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a4a4a;
    font-family: var(--font-poppins);
}

.story-paragraph strong {
    color: var(--color-dark);
    font-weight: 600;
}

.story-paragraph em {
    font-style: italic;
    color: var(--color-primary);
}

/* Conclusion */
.about-story-section .story-conclusion {
    margin-top: var(--spacing-lg);
    padding: 30px;
    background: var(--color-white);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.conclusion-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark);
    margin: 0;
}

.conclusion-text strong {
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        min-height: 300px !important;
    }

    .about-title {
        font-size: 28px;
    }

    .about-intro-text p,
    .story-paragraph {
        font-size: 15px;
    }

    .highlight-text {
        font-size: 17px !important;
    }

    .conclusion-text {
        font-size: 16px;
    }
}

/* ========================================
   CART SIDEBAR
   ======================================== */

/* Overlay sombre */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-sidebar-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Panneau latéral */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.is-open {
    transform: translateX(0);
}

/* Header du panneau */
.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px;
    margin-top: 20px;
    border-bottom: 1px solid #eee;
}

.cart-sidebar-title {
    font-family: var(--font-archivo, 'Archivo', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark, #1a1a1a);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-sidebar-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.2s ease;
}

.cart-sidebar-close:hover {
    color: #000;
}

/* Contenu scrollable */
.cart-sidebar-content,
#cart-sidebar .widget_shopping_cart_content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

/* Message panier vide */
#cart-sidebar .woocommerce-mini-cart__empty-message,
#cart-sidebar .cart-empty-message {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

/* Liste des produits */
#cart-sidebar .woocommerce-mini-cart,
#cart-sidebar .cart_list {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

/* Produit - Flexbox */
#cart-sidebar .mini_cart_item {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    padding: 15px 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

#cart-sidebar .mini_cart_item:first-child {
    padding-top: 0 !important;
}

#cart-sidebar .mini_cart_item:last-child {
    border-bottom: none;
}

/* Lien produit (image + titre dedans) */
#cart-sidebar .mini_cart_item > a:not(.remove) {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    flex: 1 !important;
    text-decoration: none !important;
    color: var(--color-dark, #1a1a1a) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    order: 1 !important;
}

#cart-sidebar .mini_cart_item > a:not(.remove):hover {
    color: #C45C3E !important;
}

/* Image dans le lien */
#cart-sidebar .mini_cart_item > a:not(.remove) img {
    width: 55px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
    border-radius: 4px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}

/* Prix - aligné avec le titre (pas l'image) */
#cart-sidebar .mini_cart_item .quantity {
    order: 3 !important;
    width: 100% !important;
    font-size: 13px !important;
    color: #666 !important;
    margin: 6px 0 0 67px !important;
    padding: 0 !important;
}

#cart-sidebar .mini_cart_item .quantity .woocommerce-Price-amount {
    color: var(--color-dark, #1a1a1a) !important;
    font-weight: 600 !important;
}

/* Bouton X - à droite du prix */
#cart-sidebar .mini_cart_item .remove,
#cart-sidebar .mini_cart_item .remove_from_cart_button {
    order: 2 !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 18px !important;
    font-size: 16px !important;
    color: #ccc !important;
    text-decoration: none !important;
}

#cart-sidebar .mini_cart_item:last-child .remove {
    bottom: 3px !important;
}

#cart-sidebar .mini_cart_item .remove:hover {
    color: #e74c3c !important;
    background: none !important;
}

/* Sous-total */
#cart-sidebar .woocommerce-mini-cart__total,
#cart-sidebar p.total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 2px solid #f0f0f0;
    font-size: 15px;
    font-weight: 600;
}

/* Masquer les boutons WooCommerce */
#cart-sidebar .woocommerce-mini-cart__buttons,
#cart-sidebar p.woocommerce-mini-cart__buttons.buttons,
#cart-sidebar p.buttons {
    display: none !important;
}

/* Footer avec boutons - toujours en bas */
.cart-sidebar-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fafafa;
    margin-top: auto;
    flex-shrink: 0;
}

.cart-sidebar-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    font-family: var(--font-archivo, 'Archivo', sans-serif);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cart-sidebar-btn-secondary {
    background: #fff;
    color: var(--color-dark, #1a1a1a);
    border: 1px solid var(--color-dark, #1a1a1a);
}

.cart-sidebar-btn-secondary:hover {
    background: var(--color-dark, #1a1a1a);
    color: #fff;
}

.cart-sidebar-btn-primary {
    background: #C45C3E;
    color: #fff;
    border: 1px solid #C45C3E;
}

.cart-sidebar-btn-primary:hover {
    background: #A84832;
    border-color: #A84832;
}

/* Bloquer le scroll du body */
body.cart-sidebar-open {
    overflow: hidden;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .cart-sidebar {
        max-width: 100%;
    }
}

/* ==========================================================================
   Section Avis Clients
   ========================================================================== */

.about-reviews-section {
    width: 100%;
    padding: 60px 5%;
    background: white;
    text-align: center;
}

.reviews-main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #1a1a1a;
    font-family: var(--font-archivo);
    margin-bottom: 60px;
    font-style: italic;
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.review-card {
    text-align: center;
    padding: 20px;
}

.review-stars {
    color: #C9A227;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-family: var(--font-poppins);
    margin-bottom: 30px;
    font-style: normal;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--font-archivo);
    font-style: italic;
}

.author-location {
    font-size: 14px;
    color: #888;
    font-family: var(--font-poppins);
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .about-reviews-section {
        padding: 40px 5%;
    }

    .reviews-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   MENU MOBILE - Hamburger et Overlay
   ========================================================================== */

/* Cacher la barre mobile Storefront */
.storefront-handheld-footer-bar {
    display: none !important;
}

/* Bouton Hamburger - caché sur desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation hamburger -> X */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Mobile Overlay */
#mobile-menu,
#mobile-menu.mobile-menu-overlay,
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: white !important;
    z-index: 999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none !important;
    align-items: center;
    justify-content: center;
}

#mobile-menu.active,
.mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
}

.mobile-menu-container {
    text-align: center;
    padding: 20px;
}

/* Navigation mobile */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin: 8px 0;
}

.mobile-nav-menu a {
    font-family: var(--font-archivo);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
}

.mobile-nav-menu a:hover {
    color: var(--color-primary);
}

/* Bloquer le scroll quand menu ouvert */
body.mobile-menu-open {
    overflow: hidden;
}

/* ==========================================================================
   RESPONSIVE MOBILE - Header
   ========================================================================== */

@media (max-width: 768px) {
    /* Afficher le hamburger */
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    /* Cacher le menu desktop */
    .main-navigation {
        display: none !important;
    }

    /* Réorganiser le header */
    .header-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 6px 4% !important;
    }

    .site-branding {
        order: 1;
    }

    .header-utilities {
        order: 2;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .account-icon {
        order: 1;
        color: var(--color-dark) !important;
    }

    .account-icon svg {
        width: 22px;
        height: 22px;
    }

    .cart-icon {
        order: 2;
    }

    .mobile-menu-toggle {
        order: 3;
    }

    /* Header fixe sur mobile */
    .site-header,
    .home .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: white !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* Quand la barre admin WordPress est présente sur mobile */
    .admin-bar .site-header,
    .admin-bar.home .site-header {
        top: 46px !important;
    }

    /* Ajuster le contenu sous le header fixe */
    .site-content,
    .home .site-content {
        padding-top: 70px;
    }

    /* Style du logo/titre sur mobile */
    .site-title a {
        font-size: 20px;
        color: var(--color-dark) !important;
    }

    /* Hamburger toujours foncé sur mobile */
    .hamburger-line {
        background-color: var(--color-dark) !important;
    }

    .cart-icon svg {
        stroke: var(--color-dark) !important;
    }

    .account-icon svg {
        stroke: var(--color-dark) !important;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background-color: #000 !important;
    color: #fff !important;
    margin-top: 0;
    padding: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

/* Colonne Brand (Logo + Réseaux) */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    filter: invert(1);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #fff !important;
}

/* Colonne Navigation */
.footer-col-nav {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-archivo);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff !important;
    margin: 0 0 20px 0;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-family: var(--font-poppins);
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

/* Colonne Contact */
.footer-col-contact {
    display: flex;
    flex-direction: column;
}

.footer-email {
    font-family: var(--font-poppins);
    font-size: 14px;
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #fff;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-family: var(--font-poppins);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-col-brand {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col-nav,
    .footer-col-contact {
        align-items: center;
    }

    /* Formulaire ajout panier mobile - Page produit */
    .single-product form.cart {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .single-product form.cart .quantity {
        justify-content: center !important;
    }

    .single-product form.cart .single_add_to_cart_button {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 13px !important;
    }
}

/* ==========================================================================
   CORRECTION IMAGES TRONQUÉES - CHECKOUT & PANIER
   Les affiches sont en format portrait, pas carré
   ========================================================================== */

/* Checkout - Résumé de commande (WooCommerce Blocks) */
.wc-block-components-order-summary-item__image {
    width: 60px !important;
    height: auto !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: flex-start !important;
}

.wc-block-components-order-summary-item__image img {
    width: 60px !important;
    height: auto !important;
    max-height: 90px !important;
    object-fit: contain !important;
    border-radius: 4px !important;
}

/* Page panier classique (WooCommerce Blocks) */
.wc-block-cart-item__image img {
    width: 80px !important;
    height: auto !important;
    max-height: 120px !important;
    object-fit: contain !important;
    border-radius: 4px !important;
}

/* Mini-cart widget (panier latéral classique WooCommerce) */
.widget_shopping_cart .cart_list li img,
.woocommerce-mini-cart-item img {
    width: 55px !important;
    height: auto !important;
    max-height: 80px !important;
    object-fit: contain !important;
    border-radius: 4px !important;
}

/* ==========================================================================
   CORRECTIONS MOBILE - PANIER & CHECKOUT
   ========================================================================== */

@media (max-width: 768px) {

    /* ------------------------------------------------------------------
       PAGE PANIER - Corrections mobile
       ------------------------------------------------------------------ */

    /* Titre de page - éviter qu'il soit coupé par le header fixe */
    .woocommerce-cart .entry-header,
    .woocommerce-checkout .entry-header {
        padding-top: 20px !important;
    }

    .woocommerce-cart h1.entry-title,
    .woocommerce-checkout h1.entry-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    /* ------------------------------------------------------------------
       PANIER CLASSIQUE WOOCOMMERCE - Layout mobile amélioré
       ------------------------------------------------------------------ */

    /* Tableau panier classique - chaque ligne devient une carte */
    .woocommerce-cart-form__contents {
        display: block !important;
        border: none !important;
    }

    .woocommerce-cart-form__contents thead {
        display: none !important;
    }

    .woocommerce-cart-form__contents tbody {
        display: block !important;
    }

    .woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
        display: grid !important;
        grid-template-columns: 70px 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 5px 15px !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee !important;
        border-left: none !important;
        border-right: none !important;
        position: relative;
    }

    /* Cellule suppression (×) - positionnée en haut à droite */
    .woocommerce-cart-form__contents td.product-remove {
        position: absolute !important;
        top: 15px !important;
        right: 0 !important;
        padding: 0 !important;
        border: none !important;
        width: auto !important;
    }

    .woocommerce-cart-form__contents td.product-remove a.remove {
        font-size: 18px !important;
        color: #ccc !important;
        text-decoration: none !important;
        display: block !important;
        width: 24px !important;
        height: 24px !important;
        line-height: 24px !important;
        text-align: center !important;
        background: none !important;
    }

    .woocommerce-cart-form__contents td.product-remove a.remove:hover {
        color: #e74c3c !important;
        background: none !important;
    }

    /* Image produit */
    .woocommerce-cart-form__contents td.product-thumbnail {
        grid-column: 1 !important;
        grid-row: 1 / 4 !important;
        display: block !important;
        padding: 0 !important;
        border: none !important;
        width: 70px !important;
    }

    .woocommerce-cart-form__contents td.product-thumbnail img {
        width: 70px !important;
        height: auto !important;
        max-height: 100px !important;
        object-fit: contain !important;
        border-radius: 4px !important;
    }

    /* Nom du produit */
    .woocommerce-cart-form__contents td.product-name {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: block !important;
        padding: 0 !important;
        padding-right: 30px !important;
        border: none !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }

    .woocommerce-cart-form__contents td.product-name::before {
        display: none !important;
    }

    /* Cacher le prix unitaire sur mobile (on garde le sous-total) */
    .woocommerce-cart-form__contents td.product-price {
        display: none !important;
    }

    /* Quantité */
    .woocommerce-cart-form__contents td.product-quantity {
        grid-column: 2 !important;
        grid-row: 2 !important;
        display: block !important;
        padding: 5px 0 !important;
        border: none !important;
    }

    .woocommerce-cart-form__contents td.product-quantity::before {
        display: none !important;
    }

    /* Sous-total */
    .woocommerce-cart-form__contents td.product-subtotal {
        grid-column: 2 !important;
        grid-row: 3 !important;
        display: block !important;
        padding: 0 !important;
        border: none !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
    }

    .woocommerce-cart-form__contents td.product-subtotal::before {
        display: none !important;
    }

    /* Sélecteur de quantité compact */
    .woocommerce-cart-form__contents .quantity {
        display: inline-flex !important;
        align-items: center !important;
    }

    .woocommerce-cart-form__contents .quantity .qty {
        width: 50px !important;
        height: 32px !important;
        font-size: 14px !important;
        padding: 0 5px !important;
        text-align: center !important;
    }

    .woocommerce-cart-form__contents .quantity button {
        width: 28px !important;
        height: 32px !important;
        font-size: 14px !important;
        padding: 0 !important;
    }

    /* Zone code promo panier classique */
    .woocommerce-cart-form .coupon {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .woocommerce-cart-form .coupon input#coupon_code {
        flex: 1 !important;
        min-width: 150px !important;
        font-size: 14px !important;
        padding: 10px 12px !important;
    }

    .woocommerce-cart-form .coupon button {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }

    /* Total panier classique */
    .cart_totals {
        margin-top: 20px !important;
    }

    .cart_totals h2 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    .cart_totals table {
        font-size: 14px !important;
    }

    .cart_totals .checkout-button {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 13px !important;
    }

    /* Tableau panier WooCommerce Blocks - meilleur layout mobile */
    .wc-block-cart-items {
        display: block !important;
    }

    .wc-block-cart-items__row {
        display: grid !important;
        grid-template-columns: 70px 1fr !important;
        grid-template-rows: auto auto !important;
        gap: 10px 15px !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee;
        align-items: start !important;
    }

    /* Image produit panier mobile */
    .wc-block-cart-item__image {
        grid-row: 1 / 3 !important;
        grid-column: 1 !important;
        width: 70px !important;
    }

    .wc-block-cart-item__image img {
        width: 70px !important;
        height: auto !important;
        max-height: 100px !important;
        object-fit: contain !important;
    }

    /* Infos produit - nom et suppression */
    .wc-block-cart-item__product {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .wc-block-cart-item__product-name {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
    }

    /* Prix et quantité sur même ligne */
    .wc-block-cart-item__quantity,
    .wc-block-cart-item__total {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .wc-block-cart-item__quantity {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    /* Sélecteur de quantité plus compact */
    .wc-block-components-quantity-selector {
        height: 36px !important;
    }

    .wc-block-components-quantity-selector input {
        width: 40px !important;
        font-size: 14px !important;
    }

    .wc-block-components-quantity-selector button {
        width: 30px !important;
        font-size: 16px !important;
    }

    /* Zone code promo plus compacte */
    .wc-block-components-totals-coupon {
        margin-top: 15px !important;
    }

    .wc-block-components-totals-coupon input {
        font-size: 14px !important;
        padding: 10px 12px !important;
    }

    .wc-block-components-totals-coupon button {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }

    /* Total panier mobile */
    .wc-block-cart__totals-title {
        font-size: 18px !important;
    }

    /* Bouton valider commande */
    .wc-block-cart__submit-button {
        padding: 14px 20px !important;
        font-size: 13px !important;
    }

    /* ------------------------------------------------------------------
       PAGE CHECKOUT - Corrections mobile
       ------------------------------------------------------------------ */

    /* Formulaire checkout plus aéré */
    .wc-block-checkout__form {
        padding: 0 !important;
    }

    .wc-block-components-checkout-step {
        padding: 15px 0 !important;
    }

    .wc-block-components-checkout-step__heading {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    /* Champs de formulaire */
    .wc-block-components-text-input input,
    .wc-block-components-combobox .components-combobox-control__input {
        font-size: 16px !important; /* Évite le zoom sur iOS */
        padding: 12px !important;
    }

    /* ------------------------------------------------------------------
       RÉSUMÉ DE COMMANDE - Toujours ouvert sur mobile
       ------------------------------------------------------------------ */

    /* Cacher le bloc accordéon dans actions (ancien) */
    .wc-block-checkout__actions > div:first-child,
    .wc-block-checkout__actions .e19lxcc00 {
        display: none !important;
    }

    /* Masquer le titre cliquable "Résumé de la commande" avec le chevron */
    .wc-block-checkout__sidebar .wc-block-components-checkout-order-summary__title {
        display: none !important;
    }

    /* Supprimer la bordure du bloc résumé */
    .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
        border: none !important;
        padding: 0 !important;
    }

    /* Forcer le contenu du résumé à être toujours visible */
    .wc-block-checkout__sidebar .wc-block-components-order-summary,
    .wc-block-checkout__sidebar .wc-block-components-order-summary__content,
    .wc-block-checkout__sidebar [aria-hidden="true"] {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        max-height: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Ajouter un titre simple "Résumé de la commande" */
    .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block::before {
        content: "Résumé de la commande";
        display: block;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    /* Résumé de commande - image plus petite sur mobile */
    .wc-block-components-order-summary-item {
        display: grid !important;
        grid-template-columns: 50px 1fr auto !important;
        gap: 10px !important;
        padding: 12px 0 !important;
    }

    .wc-block-components-order-summary-item__image {
        width: 50px !important;
        min-height: auto !important;
    }

    .wc-block-components-order-summary-item__image img {
        width: 50px !important;
        max-height: 70px !important;
    }

    .wc-block-components-order-summary-item__description {
        font-size: 13px !important;
    }

    .wc-block-components-order-summary-item__description .wc-block-components-product-name {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    /* Cacher la description tronquée sur mobile pour gagner de la place */
    .wc-block-components-order-summary-item__description .wc-block-components-product-metadata {
        display: none !important;
    }

    /* Prix dans le résumé */
    .wc-block-components-order-summary-item__total-price {
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    /* Section totaux checkout */
    .wc-block-components-totals-wrapper {
        padding: 15px !important;
    }

    .wc-block-components-totals-item__label,
    .wc-block-components-totals-item__value {
        font-size: 14px !important;
    }

    .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
    .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
        font-size: 16px !important;
        font-weight: 600 !important;
    }

    /* Bouton Commander */
    .wc-block-components-checkout-place-order-button {
        padding: 14px 20px !important;
        font-size: 13px !important;
        width: 100% !important;
    }

    /* Barre sticky résumé en bas (si présente) */
    .wc-block-checkout__sidebar {
        position: relative !important;
    }

    /* ------------------------------------------------------------------
       MINI-CART SIDEBAR - Optimisations mobile
       ------------------------------------------------------------------ */

    .cart-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }

    .cart-sidebar-header {
        padding: 15px 20px !important;
    }

    .cart-sidebar-header h2 {
        font-size: 16px !important;
    }

    .cart-sidebar-content,
    #cart-sidebar .widget_shopping_cart_content {
        padding: 15px 20px !important;
    }

    /* Items du mini-cart plus compacts */
    #cart-sidebar .mini_cart_item {
        padding: 12px 0 !important;
    }

    #cart-sidebar .mini_cart_item > a:not(.remove) {
        font-size: 13px !important;
        gap: 10px !important;
    }

    #cart-sidebar .mini_cart_item > a:not(.remove) img {
        width: 50px !important;
        max-height: 65px !important;
    }

    #cart-sidebar .mini_cart_item .quantity {
        font-size: 12px !important;
        margin: 5px 0 0 60px !important;
    }

    /* Footer mini-cart */
    .cart-sidebar-footer {
        padding: 15px 20px !important;
        gap: 8px !important;
    }

    .cart-sidebar-btn {
        padding: 12px 15px !important;
        font-size: 11px !important;
    }
}

/* Corrections spécifiques pour très petits écrans */
@media (max-width: 375px) {

    .wc-block-cart-items__row {
        grid-template-columns: 60px 1fr !important;
    }

    .wc-block-cart-item__image,
    .wc-block-cart-item__image img {
        width: 60px !important;
    }

    .wc-block-cart-item__product-name {
        font-size: 13px !important;
    }

    .wc-block-components-order-summary-item {
        grid-template-columns: 45px 1fr auto !important;
    }

    .wc-block-components-order-summary-item__image,
    .wc-block-components-order-summary-item__image img {
        width: 45px !important;
    }
}

/* ==========================================================================
   GALERIE PRODUIT - Correction miniatures
   Supprime les chiffres 1, 2, 3 et corrige les bordures
   ========================================================================== */

/* Supprimer les numéros de la liste */
.woocommerce-product-gallery .flex-control-thumbs,
.flex-control-thumbs {
    list-style: none !important;
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 10px !important;
}

.woocommerce-product-gallery .flex-control-thumbs li,
.flex-control-thumbs li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style des miniatures */
.flex-control-thumbs li img {
    border: 2px solid transparent !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease !important;
    opacity: 0.6 !important;
}

/* Miniature active ou survolée */
.flex-control-thumbs li img.flex-active,
.flex-control-thumbs li img:hover {
    border-color: var(--color-primary) !important;
    opacity: 1 !important;
}

/* Options de livraison checkout */
.wc-block-components-radio-control__option .wc-block-components-radio-control__label-group {
    margin-left: 34px;
}

.wc-block-components-radio-control__option .mrwp_shipping_logo {
    min-width: 32px !important;
    max-width: 32px !important;
    width: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}

.wc-block-components-radio-control__label {
    white-space: nowrap !important;
}

/* Bouton "Choisir un Point Relais" - texte en blanc */
a.modaal_link {
    color: #ffffff !important;
}


/* === RÉSUMÉ COMMANDE === */
/* Cacher le prix individuel, la description et le prix à côté du titre */
.wc-block-components-order-summary-item__individual-price,
.wc-block-components-product-metadata__description,
.wc-block-components-order-summary-item__total-price {
    display: none !important;
}


/* Taille max du logo */
.site-header .site-branding img,
.site-header .custom-logo {
    max-width: 150px;
    height: auto;
}

/* Masquer l'en-tête et le bouton "Charger plus" du feed Instagram */
.sbi_header_text,
#sbi_load {
    display: none !important;
}

/* Couleur des messages WooCommerce */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
    background-color: #cd6b5b !important;
}

/* Si tu veux aussi changer l'icône/bouton avant le message */
.woocommerce-message::before,
.woocommerce-info::before {
    color: #cd6b5b !important;
}



/* ==========================================================================
   FORMULAIRE DE CONTACT - Style cohérent avec le site
   ========================================================================== */

/* Container du formulaire */
.wpcf7,
.wpforms-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

/* Labels */
.wpcf7 label,
.wpforms-field-label {
    font-family: 'Epilogue', 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text, #1a1a2e);
    margin-bottom: 8px;
    display: block;
}

/* Champs de saisie */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpforms-field input,
.wpforms-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #ffffff;
    font-family: 'Epilogue', 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--color-text, #1a1a2e);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(205, 107, 91, 0.1);
}

/* Textarea */
.wpcf7 textarea,
.wpforms-field textarea {
    min-height: 150px;
    resize: vertical;
}

/* Bouton d'envoi */
.wpcf7 input[type="submit"],
.wpcf7-submit,
.wpforms-submit {
    background: var(--color-primary) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 32px !important;
    font-family: 'Epilogue', 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover,
.wpforms-submit:hover {
    background: #b85a4a !important;
    transform: translateY(-2px) !important;
}

/* Espacement entre les champs */
.wpcf7 p,
.wpcf7-form-control-wrap,
.wpforms-field {
    margin-bottom: 20px;
}

/* Messages de validation */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

.wpcf7-response-output {
    padding: 15px 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Champs requis - astérisque */
.wpcf7 .wpcf7-not-valid {
    border-color: #e74c3c !important;
}

/*Masquer Captcha*/
.grecaptcha-badge {
    visibility: hidden !important;
}


/* ==========================================================================
   MASQUER TOUS LES AVIS PARTOUT
   ========================================================================== */

/* Section avis - page accueil + page marque */
.about-reviews-section {
    display: none !important;
}

/* Étoiles sur cartes produits - boutique, catégories, cross-sells */
.product-rating {
    display: none !important;
}

/* Étoiles sur page produit single */
.kesli-product-rating {
    display: none !important;
}

/* Modal avis page produit */
.reviews-modal-overlay {
    display: none !important;
}

/* Onglet avis page produit WooCommerce */
.woocommerce-tabs .reviews_tab,
#tab-reviews,
#reviews,
.woocommerce-Reviews {
    display: none !important;
}

/* Étoiles WooCommerce par défaut */
.star-rating,
.woocommerce-product-rating,
.woocommerce-review-link {
    display: none !important;
}

