* {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            background: #e6e4e4;
            color: #222222;
            font-family: Arial, Helvetica, sans-serif;
        }

        a {
            color: #d97900;
        }

        a:hover {
            color: #c96f00;
        }

        /* HEADER */
        .oulfa-header {
            background: #e6e4e4;
            border-bottom: 1px solid #d2d0d0;
        }

        .oulfa-header-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .oulfa-logo img {
            display: block;
            width: 210px;
            height: auto;
        }

        .oulfa-nav {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .oulfa-nav a {
            color: #555555;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
        }

        .oulfa-nav a.active,
        .oulfa-nav a:hover {
            color: #f78f07;
        }

        .oulfa-header-actions {
            display: flex;
            gap: 10px;
        }

        .header-btn {
            min-height: 38px;
            padding: 0 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
        }

        .header-btn.login {
            background: #ffffff;
            border: 1px solid #d6d6d6;
            color: #333333;
        }

        .header-btn.signup {
            background: #f78f07;
            border: 1px solid #d97900;
            color: #ffffff;
            box-shadow: 0 2px 3px rgba(0,0,0,0.18);
        }

        /* PAGE */
        .wrap {
            max-width: 1120px;
            margin: 22px auto 60px auto;
            padding: 0 16px;
        }

        .tall-links {
            background: #ffffff;
			line-height: 1.7;
            border: 1px solid #d2d2d2;
            border-radius: 4px;
            padding: 12px 16px;
            margin-bottom: 22px;
            text-align: center;
            color: #555555;
            font-size: 14px;
        }

        .tall-links a {
		display: inline-block;
    white-space: nowrap;
            margin: 0 8px;
            font-weight: 700;
            text-decoration: none;
        }

        .profile-title {
            text-align: center;
            margin: 0 0 22px 0;
            color: #333333;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 30px;
            line-height: 1.25;
            font-weight: 700;
        }

        /* PROFIL CARD */
        .profile-card {
            background: #ffffff;
            border: 1px solid #c9c9c9;
            border-radius: 6px;
            padding: 24px;
            display: grid;
            grid-template-columns: 320px minmax(0, 1fr) 280px;
            gap: 26px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }

        .profile-photo-main {
            width: 100%;
            height: 390px;
            background: #f2eeee;
            border: 1px solid #dddddd;
            border-radius: 4px;
            overflow: hidden;
        }

        .profile-photo-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 22%;
            display: block;
        }

        .profile-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-top: 12px;
        }

        .profile-thumbs img {
            width: 100%;
            height: 68px;
            object-fit: cover;
            object-position: center 22%;
            border: 1px solid #dddddd;
            border-radius: 4px;
            background: #f2eeee;
        }

        .profile-thumbs img.active {
            border: 2px solid #f78f07;
        }

        .profile-main h1 {
            margin: 0 0 8px 0;
            font-size: 30px;
            line-height: 1.15;
            color: #1f2937;
            font-weight: 800;
            text-transform: uppercase;
        }

        .profile-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 0 0 18px 0;
            color: #666666;
            font-size: 14px;
        }

        .online {
            color: #348d2b;
            font-weight: 700;
        }

        .profile-section {
            border-top: 1px solid #eeeeee;
            padding-top: 18px;
            margin-top: 18px;
        }

        .profile-info-grid {
            display: grid;
            grid-template-columns: 130px 1fr;
            gap: 10px 18px;
            font-size: 15px;
        }

        .profile-info-grid strong {
            color: #d97900;
        }

        .profile-info-grid span {
            color: #333333;
            font-weight: 600;
        }

        .profile-about {
            margin-top: 22px;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 17px;
            line-height: 1.5;
            color: #333333;
        }

        .profile-actions {
            display: flex;
            gap: 14px;
            margin-top: 24px;
        }

        .main-btn,
        .secondary-btn {
            min-height: 46px;
            padding: 0 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
        }

        .main-btn {
            background: #f78f07;
            border: 1px solid #d97900;
            color: #ffffff;
            box-shadow: 0 2px 3px rgba(0,0,0,0.22);
        }

        .main-btn:hover {
            background: #e17f00;
            color: #ffffff;
        }

        .secondary-btn {
            background: #ffffff;
            border: 1px solid #d6d6d6;
            color: #333333;
        }

        .secondary-btn:hover {
            background: #fff4e6;
            color: #d97900;
        }

        /* SIDEBAR */
        .profile-side {
            border-left: 1px solid #eeeeee;
            padding-left: 24px;
        }

        .favorite-btn {
            width: 100%;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: #ffffff;
            border: 1px solid #d6d6d6;
            border-radius: 4px;
            color: #333333;
            font-weight: 700;
            text-decoration: none;
            margin-bottom: 22px;
        }

        .favorite-btn:hover {
            background: #fff4e6;
            color: #d97900;
        }

        .side-list {
            display: grid;
            gap: 12px;
            font-size: 14px;
        }

        .side-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            border-bottom: 1px solid #eeeeee;
            padding-bottom: 10px;
        }

        .side-row span:first-child {
            color: #666666;
        }

        .side-row span:last-child {
            color: #222222;
            font-weight: 700;
            text-align: right;
        }

        .side-box {
            margin-top: 22px;
            padding: 16px;
            background: #fff8ef;
            border: 1px solid #ffd8a1;
            border-radius: 4px;
            color: #333333;
            font-size: 14px;
            line-height: 1.45;
        }

        .side-box strong {
            color: #d97900;
        }

        /* CTA INSCRIPTION */
        .signup-panel {
            margin-top: 26px;
            background: linear-gradient(135deg, #06233a, #073f67);
            border-radius: 6px;
            padding: 28px;
            color: #ffffff;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 34px;
            align-items: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.18);
        }

        .signup-panel h2 {
            margin: 0 0 10px 0;
            font-family: Georgia, "Times New Roman", serif;
            font-size: 32px;
            line-height: 1.15;
        }

        .signup-panel h2 span {
            color: #f78f07;
        }

        .signup-panel p {
            margin: 0 0 16px 0;
            color: #e9eef4;
            font-size: 16px;
        }

        .signup-benefits {
            display: grid;
            gap: 9px;
            font-size: 15px;
            color: #ffffff;
        }

        .signup-form {
            display: grid;
            gap: 12px;
        }

        .signup-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .signup-form input,
        .signup-form select {
            height: 44px;
            border: 1px solid #d6d6d6;
            border-radius: 4px;
            padding: 0 12px;
            font-size: 15px;
        }

        .signup-form button {
            height: 46px;
            background: #f78f07;
            border: 1px solid #d97900;
            border-radius: 4px;
            color: #ffffff;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 2px 3px rgba(0,0,0,0.22);
        }

        .signup-form button:hover {
            background: #e17f00;
        }

        /* BLOCS BAS */
        .profile-lower-grid {
            margin-top: 26px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .lower-card {
            background: #ffffff;
            border: 1px solid #c9c9c9;
            border-radius: 4px;
            padding: 20px;
        }

        .lower-card h3 {
            margin: 0 0 14px 0;
            color: #d97900;
            font-size: 20px;
        }

        .lower-card p,
        .lower-card li {
            color: #444444;
            font-size: 15px;
            line-height: 1.45;
        }

        .lower-card ul {
            margin: 0;
            padding-left: 18px;
        }

        /* FOOTER */
        .oulfa-footer {
            margin-top: 50px;
            background: #06233a;
            border-top: 4px solid #f78f07;
            color: #ffffff;
        }

        .oulfa-footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 34px 16px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 28px;
        }

        .oulfa-footer img {
            width: 150px;
            height: auto;
            margin-bottom: 12px;
        }

        .oulfa-footer p,
        .oulfa-footer a {
            color: #dce7f0;
            font-size: 14px;
            line-height: 1.5;
        }

        .oulfa-footer a {
            display: block;
            text-decoration: none;
            margin-bottom: 8px;
        }

        .oulfa-footer a:hover {
            color: #f78f07;
        }

        .oulfa-footer h4 {
            margin: 0 0 12px 0;
            color: #ffffff;
            font-size: 15px;
            text-transform: uppercase;
        }

        .footer-copy {
            border-top: 1px solid rgba(255,255,255,0.15);
            text-align: center;
            padding: 14px;
            color: #cbd5df;
            font-size: 13px;
        }

        /* MOBILE */
        @media screen and (max-width: 980px) {
            .oulfa-nav {
                display: none;
            }

            .profile-card {
                grid-template-columns: 280px 1fr;
            }

            .profile-side {
                grid-column: 1 / -1;
                border-left: 0;
                border-top: 1px solid #eeeeee;
                padding-left: 0;
                padding-top: 22px;
            }

            .signup-panel {
                grid-template-columns: 1fr;
            }

            .profile-lower-grid {
                grid-template-columns: 1fr;
            }

            .oulfa-footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media screen and (max-width: 700px) {
            .oulfa-header-inner {
                padding: 10px 14px;
            }

            .oulfa-logo img {
                width: 160px;
            }

            .header-btn.login {
                display: none;
            }

            .wrap {
                padding: 0 10px;
                margin-top: 14px;
            }

            .tall-links {
                font-size: 13px;
                line-height: 1.6;
            }

            .profile-title {
                font-size: 24px;
                margin-bottom: 16px;
            }

            .profile-card {
                padding: 14px;
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .profile-photo-main {
                height: 360px;
            }

            .profile-main h1 {
                font-size: 24px;
            }

            .profile-info-grid {
                grid-template-columns: 115px 1fr;
                gap: 9px 12px;
                font-size: 14px;
            }

            .profile-about {
                font-size: 16px;
            }

            .profile-actions {
                flex-direction: column;
            }

            .main-btn,
            .secondary-btn {
                width: 100%;
            }

            .signup-panel {
                padding: 22px 16px;
            }

            .signup-panel h2 {
                font-size: 26px;
            }

            .signup-form-row {
                grid-template-columns: 1fr;
            }

            .oulfa-footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .oulfa-footer img {
                margin-left: auto;
                margin-right: auto;
            }
        }
		.profile-info-grid {
    grid-template-columns: 135px 1fr !important;
    gap: 8px 16px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
}

.profile-info-grid strong {
    color: #555555  !important;
    font-weight: 700 !important;
}

.profile-info-grid span {
    color: #333333 !important;
    font-weight: 600 !important;
}

.profile-info-grid a {
    color: #d97900 !important;
    text-decoration: underline !important;
}
.oulfa-side-list div {
    display: grid !important;
    grid-template-columns: 125px 1fr !important;
    gap: 10px !important;
    align-items: start !important;
}

.oulfa-side-list span {
    color: #d97900 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.oulfa-side-list strong {
    color: #222222 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    max-height: 36px !important;
    overflow: hidden !important;
}
.oulfa-profile-card {
    padding: 20px !important;
    gap: 22px !important;
}

.oulfa-profile-main-photo {
    height: 330px !important;
}

.oulfa-profile-name {
    font-size: 28px !important;
}

.oulfa-profile-about {
    font-size: 17px !important;
    line-height: 1.45 !important;
    max-height: 135px !important;
    overflow: hidden !important;
}
.oulfa-region-similar-box {
    max-width: 1120px;
    margin: 26px auto 34px auto;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 300px 1fr 270px;
    gap: 28px;
    align-items: start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.oulfa-region-map h2,
.oulfa-similar-profiles h2 {
    margin: 0 0 14px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
    color: #222222;
}

.oulfa-similar-profiles h2 {
    color: #d9531e;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.oulfa-region-map img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
}

.oulfa-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 82px);
    gap: 10px 12px;
}

.oulfa-similar-grid a {
    display: block;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2eeee;
    border: 1px solid #dddddd;
}

.oulfa-similar-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 22%;
}

.oulfa-profile-tall-links {
    display: grid;
    gap: 14px;
}

.oulfa-profile-tall-links a {
    min-height: 42px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #bfc3c7;
    border-radius: 4px;
    color: #2f5f95;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    text-decoration: none;
}

.oulfa-profile-tall-links a:hover {
    background: #fff4e6;
    border-color: #d97900;
    color: #d97900;
}

@media screen and (max-width: 900px) {
    .oulfa-region-similar-box {
        grid-template-columns: 1fr 1fr;
    }

    .oulfa-profile-tall-links {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 700px) {
    .oulfa-region-similar-box {
        margin: 22px 10px;
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .oulfa-region-map {
        text-align: center;
    }

    .oulfa-region-map img {
        margin: 0 auto;
        max-width: 260px;
    }

    .oulfa-similar-grid {
        justify-content: center;
        grid-template-columns: repeat(3, 78px);
        gap: 10px;
    }

    .oulfa-similar-grid a {
        width: 78px;
        height: 78px;
    }

    .oulfa-profile-tall-links {
        grid-template-columns: 1fr;
    }

    .oulfa-profile-tall-links a {
        font-size: 19px;
        min-height: 40px;
    }
}
.profile-about-chat {
    max-width: 1120px;
    margin: 24px auto 30px auto;
    padding: 26px 28px;
    background: #ffffff;
    border: 1px solid #cfcfcf;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
}

.profile-chat-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.profile-chat-row:last-child {
    margin-bottom: 0;
}

.profile-chat-avatar {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #dddddd;
    background: #f3f3f3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.14);
}

.profile-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    display: block;
}

.profile-chat-bubble {
    max-width: 760px;
    padding: 14px 18px;
    background: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 7px;
    color: #222222;
}

.profile-chat-intro {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.profile-chat-text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.55;
}

@media screen and (max-width: 700px) {
    .profile-about-chat {
        margin: 20px 10px 26px 10px;
        padding: 18px 14px;
    }

    .profile-chat-avatar {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .profile-chat-bubble {
        max-width: none;
        padding: 12px 14px;
    }

    .profile-chat-text {
        font-size: 17px;
        line-height: 1.5;
    }
}
.profile-chat-intro {
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e6e6e6;
    font-size: 17px;
    font-weight: 700;
    color: #222222;
}
/* =========================================================
   HEADER DESKTOP / TABLET PROFIL
   ========================================================= */

.oulfa-header-wrapper {
    width: 100%;
    background: #e9e7e7;
    border-bottom: 1px solid #d0d0d0;
    font-family: Arial, Helvetica, sans-serif;
}

.oulfa-header {
    width: 100%;
    background: #e9e7e7;
}

.oulfa-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.oulfa-logo {
    flex: 0 0 auto;
    display: block;
}

.oulfa-logo img {
    width: 190px;
    height: auto;
    display: block;
}

.oulfa-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
}

.oulfa-nav a {
    color: #444444;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.oulfa-nav a:hover,
.oulfa-nav a.active {
    color: #f78f07;
}

.oulfa-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.header-btn.login {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    color: #333333;
}

.header-btn.login:hover {
    background: #f5f5f5;
}

.header-btn.signup {
    background: #f78f07;
    border: 1px solid #e17f00;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.18);
}

.header-btn.signup:hover {
    background: #e17f00;
}


/* =========================================================
   HEADER MOBILE PROFIL
   ========================================================= */

.oulfa-mobile-header {
    width: 100%;
    background: #e9e7e7;
    border-bottom: 1px solid #d0d0d0;
}

.oulfa-mobile-top {
    position: relative;
    min-height: 78px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oulfa-mobile-logo img {
    width: 190px;
    height: auto;
    display: block;
    max-width: 70vw;
}

.oulfa-mobile-menu-btn {
    position: absolute;
    left: 12px;
    top: 18px;
    width: 46px;
    height: 42px;
    padding: 0;
    border: 1px solid #d97900;
    border-radius: 6px;
    background: #f78f07;
    box-shadow: 0 2px 4px rgba(0,0,0,0.20);
    cursor: pointer;
}

.oulfa-mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    background: #ffffff;
    border-radius: 3px;
}

.oulfa-mobile-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 8px 12px 12px 12px;
}

.oulfa-mobile-actions a {
    flex: 1;
    max-width: 150px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f78f07;
    color: #ffffff;
    border: 1px solid #d97900;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 3px rgba(0,0,0,0.22);
}


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

.oulfa-menu-overlay {
    display: none;
}

.oulfa-mobile-drawer {
    position: fixed;
    top: 0;
    left: -285px;
    width: 285px;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    z-index: 99999;
    box-shadow: 4px 0 18px rgba(0,0,0,0.25);
    transition: left 0.25s ease;
}

.oulfa-menu-open .oulfa-mobile-drawer {
    left: 0;
}

.oulfa-menu-open .oulfa-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99998;
}

.oulfa-mobile-drawer-head {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #eeeeee;
}

.oulfa-mobile-drawer-head img {
    width: 145px;
    height: auto;
}

.oulfa-mobile-drawer-head button {
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    color: #555555;
    cursor: pointer;
}

.oulfa-mobile-drawer a {
    display: block;
    padding: 15px 18px;
    border-bottom: 1px solid #eeeeee;
    color: #333333;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.oulfa-mobile-drawer a:hover {
    background: #fff4e6;
    color: #f78f07;
}


/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */

@media screen and (max-width: 900px) {
    .oulfa-header-inner {
        gap: 16px;
    }

    .oulfa-logo img {
        width: 170px;
    }

    .oulfa-nav {
        gap: 14px;
    }

    .oulfa-nav a {
        font-size: 15px;
    }

    .header-btn {
        min-width: 82px;
        padding: 0 12px;
    }
}
/* FIX MENU MOBILE : cacher le drawer par défaut */
.oulfa-menu-overlay {
    display: none !important;
}

.oulfa-mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    left: -285px !important;
    width: 285px !important;
    height: 100% !important;
    max-height: 100% !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    box-shadow: 4px 0 18px rgba(0,0,0,0.25) !important;
    transition: left 0.25s ease !important;
}

/* Ouverture du menu */
body.oulfa-menu-open .oulfa-mobile-drawer {
    left: 0 !important;
}

body.oulfa-menu-open .oulfa-menu-overlay {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.45) !important;
    z-index: 99998 !important;
}