:root {
    --sweetch-terracotta: #A7452E;
    --sweetch-beige: #FAFAFA;
    --sweetch-black: #1C1C1C;
    --text-dark: #1C1C1C;
    --text-light: #666666;
    --border-light: #E5E5E5;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

/* Override du conteneur principal */
#main-section-content {
    background: white !important;
}

/* Override FORCÉ pour fond blanc */
body .nos-designs-page,
body .nos-designs-page .section,
body .nos-designs-page .section.section-alt,
body .nos-designs-page section.section-alt.hero,
body .nos-designs-page .hero {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Garder les couleurs pour terracotta et dark */
body .nos-designs-page .section-terracotta,
body .nos-designs-page .section.section-terracotta {
    background: #A7452E !important;
    background-color: #A7452E !important;
}

body .nos-designs-page .section-dark,
body .nos-designs-page .section.section-dark {
    background: #1C1C1C !important;
    background-color: #1C1C1C !important;
}


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

body {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.05em !important;
    color: var(--text-dark) !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.1 !important;
}

h1 { font-size: 32px !important; }
h2 { font-size: 28px !important; }
h3 { font-size: 22px !important; }

p {
    font-family: 'Lexend Deca', sans-serif !important;
    font-size: 15px !important;
    color: var(--text-light) !important;
    line-height: 1.6 !important;
    margin: 0 0 1rem 0 !important;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section { background: var(--white); padding: 5rem 0; }
.card {
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); }

/* HERO */
.hero { padding: 3rem 0 2.5rem; text-align: center; }
.hero h1 { font-size: 38px !important; margin-bottom: 16px !important; }
.hero-subtitle { font-size: 17px !important; max-width: 750px; margin: 0 auto 1.5rem !important; }

/* CAROUSEL */
.carousel { position: relative; width: 100%; height: 300px; overflow: hidden; background: var(--light-gray); }
.carousel-track { display: flex; height: 100%; transition: transform 0.4s ease; }
.carousel-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: var(--sweetch-terracotta); color: var(--white); }
.carousel-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }
.design-card .carousel-indicators,
.carousel[data-carousel] .carousel-indicators { 
    position: absolute !important; 
    bottom: 12px !important; 
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important; 
    display: flex !important; 
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important; 
    z-index: 10 !important;
    width: auto !important;
    margin: 0 !important;
}

.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.6); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.carousel-dot.active { background: var(--sweetch-terracotta); width: 20px; border-radius: 4px; }

/* GRILLE */
.designs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.design-card { display: flex; flex-direction: column; }
.design-content { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.design-name { font-size: 22px !important; margin-bottom: 6px !important; }
.design-description { flex: 1; font-size: 14px !important; margin-bottom: 1.25rem !important; }

.btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.04em;
    padding: 14px 40px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary { background: var(--sweetch-terracotta); color: var(--white); border: none; }
.btn-sm { font-size: 14px; padding: 12px 30px; }
.btn:hover { background: var(--sweetch-black) !important; color: var(--white) !important; transform: translateY(-2px); }

@media (max-width: 1024px) {
    .designs-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .section { padding: 3rem 0; }
    .hero { padding: 2rem 0 1.5rem; }
    .hero h1 { font-size: 26px !important; }
    .designs-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .carousel { height: 220px; }
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.trust-badge {
    background: rgba(167, 69, 46, 0.1);
    color: var(--sweetch-terracotta);
    padding: 6px 12px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
    white-space: nowrap;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    margin-bottom: 16px !important;
}

.intro-text p {
    font-size: 16px !important;
}

/* RÉASSURANCE */
.section-terracotta {
    background: var(--sweetch-terracotta);
}

.section-dark {
    background: var(--sweetch-black);
}

.section-terracotta h1, .section-terracotta h2, .section-terracotta h3,
.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--white) !important;
}

.section-terracotta p, .section-dark p {
    color: var(--white) !important;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.reassurance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reassurance-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reassurance-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.reassurance-title {
    font-size: 16px !important;
    margin-bottom: 6px !important;
}

.reassurance-text {
    font-size: 13px !important;
    opacity: 0.9;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 28px !important;
    margin-bottom: 12px !important;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-on-black:hover {
    background: var(--sweetch-terracotta) !important;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--sweetch-terracotta) !important;
    border-color: var(--sweetch-terracotta) !important;
}

@media (max-width: 1024px) {
    .reassurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 0.4rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .intro-text h2 {
        font-size: 20px !important;
    }
    
    .intro-text p {
        font-size: 14px !important;
    }
    
    .reassurance-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .reassurance-icon {
        width: 44px;
        height: 44px;
    }
    
    .reassurance-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section h2 {
        font-size: 20px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
.nos-designs-page .section-terracotta {
    background: #A7452E !important;
}

.nos-designs-page .section-dark {
    background: #1C1C1C !important;
}

/* Fond blanc pour toutes les sections SAUF terracotta et dark */
.nos-designs-page .section-alt:not(.section-terracotta):not(.section-dark) {
    background: white !important;
    background-color: white !important;
}

.nos-designs-page .hero {
    background: white !important;
    background-color: white !important;
}

/* Boutons côte à côte dans les cards */
.design-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.design-cta .btn {
    flex: 1;
    min-width: 0;
}

/* Bouton outline selon design system - FORCÉ */
.design-card .btn-outline,
.design-cta .btn-outline,
a.btn.btn-outline {
    background: var(--white) !important;
    border: 2px solid var(--sweetch-terracotta) !important;
    color: var(--sweetch-terracotta) !important;
}

.design-card .btn-outline.btn-sm,
.design-cta .btn-outline.btn-sm,
a.btn.btn-outline.btn-sm {
    padding: 10px 38px !important;
}

.design-card .btn-outline:hover,
.design-cta .btn-outline:hover,
a.btn.btn-outline:hover {
    background: var(--sweetch-black) !important;
    color: var(--white) !important;
    border-color: transparent !important;
}

}
