/* 
 * DESIGN SIMPLE & PROPRE - CryoSculpt Minceur
 * Focus: Structure, Lisibilité, Espace
 */

:root {
    --primary-color: #14bdee;
    --primary-dark: #0da6d3;
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --bg-light: #f8fafc;
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.05);
}

body {
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    /* Compensation Header Fixe */
}

/* --- STRUCTURE --- */
.section_title_container {
    margin-bottom: 3rem;
    text-align: center;
}

.section_title {
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section_subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* --- HEADER SIMPLE --- */
.header {
    background: #fff !important;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid #eee !important;
    padding: 10px 0;
}

.main_nav li a {
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    text-transform: uppercase;
}


.main_nav li a:hover {
    color: var(--primary-color) !important;
}

/* Social Icons Simple */
.shopping_cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-left: 10px;
    border-radius: 50%;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.shopping_cart:hover {
    background: var(--primary-color);
}

.shopping_cart i {
    font-size: 14px;
    color: var(--text-dark);
}

.shopping_cart:hover i {
    color: white;
}

/* --- CARDS PRESTATIONS (Simple & Clean) --- */
.feature {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 30px !important;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.feature:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-soft) !important;
    border-color: var(--primary-color) !important;
}

.feature_icon img {
    max-height: 80px;
    margin-bottom: 20px;
}

.title-font {
    font-family: inherit !important;
    /* On garde la police du thème */
    font-weight: 600 !important;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- BOUTONS --- */
.btn-modern {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 10px 25px !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none !important;
    box-shadow: none !important;
}

.btn-modern:hover {
    background-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: none !important;
}

/* --- HERO PAGES INTERNES --- */
.page_hero {
    background: #f1f5f9;
    /* Gris très clair, propre */
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs ul {
    justify-content: center;
    margin-bottom: 10px;
    padding: 0;
    list-style: none;
    display: flex;
}

.breadcrumbs ul li {
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumbs ul li::after {
    content: '/';
    margin: 0 10px;
    color: #cbd5e0;
}

.breadcrumbs ul li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--text-gray);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

/* --- PAGE CONTENT --- */
.page_content_wrapper {
    padding: 60px 0;
}

.content_text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    max-width: 100%;
    /* Elargi au maximum du conteneur */
    margin: 0 auto;
}

.cta_block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* --- HOME SECTIONS --- */
.experience_item {
    padding: 80px 0;
}

.experience_item:nth-child(even) {
    background-color: #f8fafc;
}

.card_simple {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}