body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    min-height: 100vh;
    color: #333;
}
h2{
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

/* Styles responsive pour le h2 */
@media (max-width: 768px) {
    h2 {
        font-size: 20px;
        text-align: center;
        margin: 1rem 0;
        padding: 0 1rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    h2 {
        font-size: 22px;
        text-align: center;
        margin: 1.5rem 0;
    }
}
.text-primary {
    color: #28a3b3 !important;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #28a3b3;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-left .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    image-rendering: auto;
}

.nav-left .logo img:hover {
    transform: scale(1.05);
}

.nav-left .logo .logo-text {
    display: none;
}

.nav-center {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: auto;
    overflow: hidden;
    z-index: 1000;
    position: relative;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
    white-space: nowrap;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.nav-links a img {
    filter: brightness(0) invert(1);
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 40px;
    overflow: hidden;
    width: 600px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 45px;
    max-height: 45px;
}

.search-bar:hover {
    border-color: #28a3b3;
    box-shadow: 0 6px 30px rgba(9, 165, 199,0.15);
}

/* Styles global de recherche */
@media (min-width: 769px) {
.search-section {
    padding: 0.2rem 1rem;
    border-right: 1px solid #ddd;
    flex: 1;
    text-align: left;
    font-size: 12px;
}

.search-section p {
    margin: 1px 0;
}

.search-section input,
.search-section select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
    color: #333;
    font-family: 'Manrope', sans-serif;
    text-align: center;
}

.search-section input::placeholder {
    color: #999;
    font-size: 11px;
}

.search-section select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
}

.search-section select option {
    background: white;
    color: #333;
    padding: 8px;
}
}

.search-button {
    background: #293e55;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.search-button:hover {
    background: #ee8000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(238, 128, 0, 0.4);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.nav-right a {
    color: inherit;
    text-decoration: none;
}

.nav-right i {
    cursor: pointer;
    font-size: 20px;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-right i:hover,
.nav-right a:hover i {
    background-color: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.nav-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: #ffffff;
    transition: background-color 0.15s ease;
}

.nav-right a:hover {
    background-color: rgba(255, 255, 255, 0.10);
}

.nav-right a.active {
    background-color: rgba(255, 255, 255, 0.16);
}

.nav-icon {
    width: 22px;
    height: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.nav-right .fa-bars {
    transition: transform 0.3s ease;
}

.content {
    padding: 0.8rem;
}

.card-price {
    font-weight: 600;
    color: #28a3b3;
    font-size: 14px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 11px;
    justify-content: flex-start;
}

.stars {
    color: #ffd700 !important;
}

/* Styles pour les étoiles dans les cartes uniquement */
.card-rating .stars,
.card-rating .fa-star,
.card-rating i.fa-star {
    color: #ffd700 !important;
}

/* Pour les étoiles dans les cartes proximité */
.bt-proxi .stars,
.bt-proxi .fa-star,
.bt-proxi i.fa-star {
    color: #ffd700 !important;
}

/* Styles mobiles pour étoiles collées */
@media (max-width: 768px) {
    .bt-proxi .stars {
        letter-spacing: -2px !important;
    }
    
    .bt-proxi .stars i,
    .bt-proxi .fa-star,
    .bt-proxi i.fa-star,
    .bt-proxi [class*="clip-star"],
    .bt-proxi [class*="fa-star"] {
        margin-right: -2px !important;
    }
}

/* Pour les conteneurs de rating spécifiques */
.rating-container .fa-star,
.star-container .fa-star,
.rating-stars .fa-star,
.star-rating .fa-star {
    color: #ffd700 !important;
}

.heart {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heart:hover {
    color: #28a3b3;
    transform: scale(1.1);
}

.heart.liked {
    color: #28a3b3;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    font-size: 14px;
    color: #666;
    margin-top: 2rem;
}

/* FILTER TAGS */
.filter-tags {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    flex-wrap: nowrap;
}

.filter-tag {
    padding: 0.5rem 1rem !important;
    background: white !important;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    min-width: fit-content;
    flex-shrink: 0;
}

.filter-tag:hover,
.filter-tag.active {
    border-color: #28a3b3;
    background: #e3f2fd;
    color: #28a3b3;
}

/* BOUTON RETOUR EN HAUT */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #293e55;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.back-to-top:hover {
    background: #ee8000;
    transform: translateY(-3px);
    box-shadow: rgba(50, 50, 93, 0.35) 0px 8px 16px -2px, rgba(0, 0, 0, 0.4) 0px 4px 9px -3px;
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Responsive pour le bouton retour en haut */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 95px;
        right: 20px;
        font-size: 16px;
    }
}

/* Navigation responsive pour très petits écrans (iPhone 5, etc.) */
@media (max-width: 375px) {
    nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-left .logo img {
        height: 35px;
    }
    
    .nav-right {
        gap: 0.8rem;
    }
    
    .nav-right i {
        font-size: 16px;
        padding: 0.3rem;
    }
    
    /* Menu burger sans fond par défaut */
    .nav-right .fa-bars {
        font-size: 18px !important;
        padding: 0.5rem !important;
        background: transparent !important;
        border-radius: 4px;
        border: none !important;
    }
}

/* SECTION HERO */
@media (min-width: 769px) {
.hero-section {
    background: linear-gradient(rgba(41, 62, 85, 0.75), rgba(41, 62, 85, 0.75)),
    url('https://images.unsplash.com/photo-1530549387789-4c1017266635?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    box-sizing: border-box;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.2s both;
}
}

/* Barre de recherche hero */
@media (min-width: 769px) {
.hero-search-bar {
    display: flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1s ease-out 0.4s both;
    height: 50px;
    max-height: 50px;
    margin: 0 auto;
}

.hero-search-bar:hover {
    border-color: #28a3b3;
    box-shadow: 0 12px 50px rgba(9, 165, 199,0.2);
    transform: translateY(-2px);
}
}

/* Bordure bleue sur tablette et desktop */
@media (min-width: 769px) {
    .hero-search-bar {
        border: 2px solid #28a3b3;
    }

    .hero-search-bar:hover {
        border-color: #005a8b;
        box-shadow: 0 12px 50px rgba(9, 165, 199,0.25);
    }
}

/* Styles des sections de recherche */
@media (min-width: 769px) {
.hero-search-bar .search-section {
    padding: 0.2rem 1rem;
    border-right: 1px solid #ddd;
    border-bottom: none;
    flex: 1;
    text-align: left;
    font-size: 12px;
}

.hero-search-bar .search-section p {
    margin: 0 auto;
}

.hero-search-bar .search-section input,
.hero-search-bar .search-section select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 12px;
    background: transparent;
    color: #333;
    font-family: 'Manrope', sans-serif;
}

.hero-search-bar .search-section input::placeholder {
    color: #999;
    font-size: 11px;
}

.hero-search-bar .search-section select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 8px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 32px;
}

.hero-search-bar .search-section select option {
    background: white;
    color: #333;
    padding: 8px;
}
}

.hero-search-bar .search-button {
    background: #293e55;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 3px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hero-search-bar .search-button:hover {
    background: #ee8000;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(238, 128, 0, 0.4);
}

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

/* Responsive pour le hero */
@media (max-width: 480px) {
    .hero-section {
        min-height: 50vh;
        padding: 1rem 0.8rem;
        background-attachment: scroll;
    }

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

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        line-height: 1.4;
    }

    .hero-search-bar {
        flex-direction: column;
        border-radius: 15px;
        padding: 1.2rem;
        gap: 1rem;
        max-width: 100%;
        width: calc(100% - 1.6rem);
        margin: 0 auto;
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-sizing: border-box;
        min-height: 280px;
    }

    .hero-search-bar .search-section {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 0.2rem;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-search-bar .search-section:last-of-type {
        border-bottom: none;
    }

    .hero-search-bar .search-section p {
        font-size: 12px;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .hero-search-bar .search-section input,
    .hero-search-bar .search-section select {
        font-size: 15px;
        padding: 0.5rem 0;
        max-width: 100%;
        box-sizing: border-box;
        background: transparent;
        text-align: center !important;
    }

    .hero-search-bar .search-button {
        width: calc(100% - 1rem);
        height: 50px;
        border-radius: 25px;
        font-size: 16px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        min-height: 55vh;
        padding: 1.5rem 1rem;
        background-attachment: scroll;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-search-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.8rem;
        gap: 1.2rem;
        max-width: 90%;
        width: 90%;
        margin: 0 auto;
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-sizing: border-box;
        min-height: 320px;
    }

    .hero-search-bar .search-section {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 1.2rem 0.8rem;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-search-bar .search-section:last-of-type {
        border-bottom: none;
    }

    .hero-search-bar .search-section p {
        font-size: 14px;
        margin-bottom: 0.6rem;
        font-weight: 600;
    }

    .hero-search-bar .search-section input,
    .hero-search-bar .search-section select {
        font-size: 16px;
        padding: 0.6rem 0;
        text-align: center;
        border-bottom: 2px solid #ddd;
    }

    .hero-search-bar .search-button {
        width: calc(100% - 1rem);
        height: 52px;
        border-radius: 26px;
        margin: 1rem auto 0;
        font-size: 18px;
    }
}

/* Tablettes en mode portrait (iPad, Galaxy Tab, etc.) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-section {
        min-height: 60vh;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.2rem;
        text-align: center;
    }

    .hero-search-bar {
        max-width: 80%;
        margin: 0 auto;
        border: 3px solid #28a3b3;
        min-height: 60px;
        padding: 0;
        flex-direction: row;
    }

    .hero-search-bar .search-section {
        border-right: 1px solid #ddd;
        border-bottom: none;
        padding: 0.8rem 1.2rem;
        text-align: center;
        flex: 1;
    }

    .hero-search-bar .search-section:last-of-type {
        border-right: none;
    }

    .hero-search-bar .search-section p {
        font-size: 12px;
        margin-bottom: 0.3rem;
    }

    .hero-search-bar .search-section input,
    .hero-search-bar .search-section select {
        font-size: 14px;
        text-align: center;
        border-bottom: none;
    }

    .hero-search-bar .search-button {
        width: 50px;
        height: 50px;
        margin: 5px;
        font-size: 16px;
        border-radius: 50%;
    }

    .bt-proxi {
        transform: scale(1) !important;
        zoom: 1 !important;
        -webkit-transform: scale(1) !important;
        -moz-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    .bt-proxi #bl-img {
        width: 100% !important;
        height: 150px !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: scale(1) !important;
        zoom: 1 !important;
        -webkit-transform: scale(1) !important;
        -moz-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
        max-width: 100% !important;
        max-height: 150px !important;
        display: block !important;
    }

    .proximite-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        min-height: 65vh;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2.2rem;
    }

    .hero-search-bar {
        max-width: 650px;
        border: 2px solid #28a3b3;
    }
    
    .bt-proxi {
        transform: scale(1) !important;
        zoom: 1 !important;
        -webkit-transform: scale(1) !important;
        -moz-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
    }
    
    .bt-proxi #bl-img {
        width: 100% !important;
        height: 150px !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: scale(1) !important;
        zoom: 1 !important;
        -webkit-transform: scale(1) !important;
        -moz-transform: scale(1) !important;
        -ms-transform: scale(1) !important;
        max-width: 100% !important;
        max-height: 150px !important;
    }
    
    .proximite-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }
    
    .hero-search-bar .search-section input {
        text-align: left;
    }
}

@media (min-width: 1025px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-search-bar .search-section input {
        text-align: left;
    }
}

/* ============================================
   DESKTOP NAVIGATION (≥1025px)
   ============================================ */
@media (min-width: 1025px) {
    /* Nav principale */
    nav {
        padding: 1rem 2rem;
        position: sticky;
    }
    
    /* Nav center - Mode desktop horizontal */
    .nav-center {
        flex-grow: 1;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        margin-top: 0;
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        max-width: none;
        overflow: visible;
        backdrop-filter: none;
        border: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Cacher la search bar dans nav-center en desktop */
    .nav-center .search-bar {
        display: none;
    }
    
    /* Nav links - Horizontal */
    .nav-links {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 0;
        width: auto;
        padding: 0;
        height: auto;
        overflow: visible;
        z-index: 1000;
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Links individuels */
    .nav-links a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        background: transparent;
        color: white;
        font-weight: 600;
        font-size: 16px;
        gap: 0.5rem;
        white-space: nowrap;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        min-height: auto;
        margin: 0;
        flex: none;
    }
    
    /* Icônes dans les links */
    .nav-links a i {
        font-size: 18px;
        width: 20px;
        height: 20px;
        color: white;
    }
    
    .nav-links a img,
    .nav-links a svg {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
        fill: white;
    }
    
    /* Hover state */
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        transform: translateY(-1px);
        border: none;
        box-shadow: none;
    }
    
    .nav-links a:hover i,
    .nav-links a:hover img,
    .nav-links a:hover svg {
        color: white;
        filter: brightness(0) invert(1);
    }
    
    /* Cacher le menu burger sur desktop */
    .nav-right .fa-bars {
        display: none;
    }
}

/* ============================================
   MOBILE & TABLET NAVIGATION (<1024px)
   ============================================ */
/* Menu center - Mobile et Tablette */
@media (max-width: 1024px) {
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        margin-top: 0.5rem;
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, #28a3b3, #28a3b3);
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        z-index: 999;
        max-width: calc(100vw - 1rem);
        box-sizing: border-box;
        overflow: visible;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* Navigation responsive pour très petits écrans */
@media (max-width: 375px) {
    nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-left .logo img {
        height: 35px;
    }
    
    .nav-right {
        gap: 0.8rem;
    }
    
    .nav-right i {
        font-size: 16px;
        padding: 0.3rem;
    }
    
    .nav-right .fa-bars {
        font-size: 18px !important;
        padding: 0.5rem !important;
        background: transparent !important;
        border-radius: 4px;
        border: none !important;
    }
    
    .nav-center {
        right: 0.5rem;
        width: calc(100% - 1rem);
        padding: 1.2rem;
        border-radius: 12px;
        margin-top: 0.3rem;
    }
    
    .nav-links {
        gap: 0.2rem;
        margin-bottom: 0;
    }
    
    .nav-links a {
        padding: 0.7rem 0.2rem;
        font-size: 10px;
        min-height: 55px;
        margin: 0.1rem;
        border-radius: 10px;
    }
    
    .nav-links a i {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .nav-links a svg {
        width: 16px;
        height: 16px;
        margin-bottom: 3px;
    }
}

/* Navigation responsive pour tablettes */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        margin-top: 0.5rem;
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, #28a3b3, #28a3b3);
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        z-index: 999;
        max-width: calc(100vw - 1rem);
        box-sizing: border-box;
        overflow: visible;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-links {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 0;
        width: 100%;
        padding: 0.5rem 0;
        overflow: visible;
    }
    
    .nav-links a {
        padding: 1rem 0.8rem;
        text-align: center;
        border-radius: 12px;
        background: transparent;
        color: white;
        font-weight: 600;
        font-size: 14px;
        flex: 1;
        border: none;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 80px;
        margin: 0.2rem;
        position: relative;
        text-decoration: none;
    }
    
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links a i {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .nav-links a svg {
        width: 20px;
        height: 20px;
        margin-bottom: 6px;
    }
}

    .nav-center.mobile-open {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    /* Links horizontaux - Desktop */
    @media (min-width: 769px) {
        .nav-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 0.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: auto;
            overflow: hidden;
            z-index: 1000;
            position: relative;
            margin: 0;
        }
    }

    /* Links horizontaux - Mobile */
    @media (max-width: 768px) {
        .nav-links {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 0.5rem;
            margin-bottom: 0;
            width: 100%;
            padding: 0.3rem 0;
            overflow: visible;
        }
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Nav links - Desktop */
    @media (min-width: 769px) {
        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 1001;
            position: relative;
            display: flex;
            align-items: center;
            pointer-events: auto;
        }

        .nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            transform: translateY(-1px);
        }
    }

    /* Nav links - Mobile */
    @media (max-width: 768px) {
        .nav-links a {
            padding: 0.8rem 0.5rem;
            text-align: center;
            border-radius: 12px;
            background: transparent;
            color: white;
            font-weight: 600;
            font-size: 12px;
            flex: 1;
            border: none;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 65px;
            margin: 0.2rem;
            position: relative;
            text-decoration: none;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
    }

    /* Icons styles pour toutes les vues */
    .nav-links a i {
        font-size: 18px;
        margin-bottom: 4px;
        color: white;
    }

    .nav-links a img,
    .nav-links a svg {
        width: 18px;
        height: 18px;
        margin-bottom: 4px;
        filter: brightness(0) invert(1);
        fill: white;
    }

    .nav-links a:hover i {
        color: white;
    }

    .nav-links a:hover img,
    .nav-links a:hover svg {
        filter: brightness(0) invert(1);
        fill: white;
    }

    @media (max-width: 768px) {
        .search-bar {
            display: none !important;
        }
    }

    /* Searchbar - Desktop uniquement */
    @media (min-width: 769px) {
        .search-bar {
            width: 100%;
            margin: 0;
            flex-direction: column;
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: white;
        }
    }

    .search-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 0.8rem;
        text-align: center;
        /* background: white; */
    }

    .search-section:last-of-type {
        border-bottom: none;
    }

    .search-section p {
        margin-bottom: 0.4rem;
        font-size: 11px;
        font-weight: 600;
        color: #333;
    }

    .search-section input,
    .search-section select {
        font-size: 13px;
        padding: 0.4rem 0;
        text-align: left;
        border: none;
        border-bottom: 1px solid #ddd;
        background: white;
        width: 100%;
    }

    .search-section input:focus,
    .search-section select:focus {
        border-bottom-color: #28a3b3;
        outline: none;
    }
    .search-button {
        margin: 0.8rem;
        width: calc(100% - 9rem);
        height: 45px;
        font-size: 15px;
    }

    .nav-right {
        gap: 0.6rem;
    }

    .nav-right i {
        font-size: 18px;
        padding: 0.4rem;
    }

/* Responsive pour les filter tags sur mobile */
@media (max-width: 768px) {
    /* Filter tags sur une ligne */
    .filter-tags {
        padding: 0.8rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.6rem;
    }

    .filter-tag {
        font-size: 11px;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
        min-width: -webkit-fill-available;
        min-width: fit-content;
    }
}



/* .hero-search-bar .search-section input {
    text-align: left;
} */

.proximite-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive pour les cartes proximite */
@media (max-width: 480px) {
    .proximite-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .bt-proxi #bl-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .proximite-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 2rem 1.5rem;
    }
    
    .bt-proxi #bl-img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .proximite-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2.5rem 2rem;
    }
    
    /* CORRECTION MAXIMALE pour les images zoomées sur tablettes */
    .bt-proxi {
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        zoom: 1 !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        overflow: hidden !important;
    }
    
    .bt-proxi #bl-img {
        width: 100% !important;
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: none !important;
        zoom: 1 !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        scale: 1 !important;
        -webkit-scale: 1 !important;
        display: block !important;
        overflow: hidden !important;
    }
}
.bt-proxi {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;

}
.bt-proxi:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bt-proxi #bl-img{
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.bt-proxi #titre {

    margin: 0 0 0.3rem 0;
    color: #28a3b3;
    font-size: 14px;
    font-weight: 600;
}
.bt-proxi small{
    margin: 0.3rem 0;
    color: #666;
    line-height: 1.3;
}
#block-proxi {
    padding: 0.8rem;
    background: #0C0C0C;
}

/* Augmentation générale de la taille des polices sur mobile */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* NAV MOBILE*/

/* Navbar profil */
.navbar_profil {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 5px;
    border: 2px solid #ffffff;
}

/* Override navbar mobile */
@media (max-width: 1024px) {
    nav {
        padding: 0.8rem 1rem;
        height: 70px;
        min-height: 70px;
        box-sizing: border-box;
        z-index: 999999998 !important;
        position: relative !important;
    }

    .nav-left .logo img {
        height: 40px;
    }

    .nav-center {
        position: absolute;
        top: 100%;
        left: 0.5rem;
        right: 0.5rem;
        width: calc(100% - 1rem);
        margin-top: 0.5rem;
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, #28a3b3, #28a3b3);
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        z-index: 999999999 !important;
        max-width: calc(100vw - 1rem);
        box-sizing: border-box;
        margin: 0 !important;
    }

    .nav-center.mobile-open {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .nav-links a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem 0.5rem;
        border-radius: 12px;
        background: transparent;
        color: white;
        font-weight: 600;
        font-size: 12px;
        border: none;
        transition: all 0.3s ease;
        text-decoration: none;
        height: 80px;
    }

    .nav-links a i {
        font-size: 22px;
        margin-bottom: 8px;
        color: white;
    }

    .nav-links a svg {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
        fill: white;
    }

    .nav-links a:hover, 
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .search-bar {
        width: 100%;
        margin-top: 0.5rem;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .search-section {
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }

    .search-section p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    .search-section p:first-child {
        margin-bottom: 4px;
    }

    .search-section input, 
    .search-section select {
        width: 100%;
        border: none;
        outline: none;
        padding: 0.5rem 0;
        font-size: 14px;
        font-family: 'Manrope', sans-serif;
    }

    .search-button {
        width: 90%;
        margin: 1rem auto;
        padding: 0.8rem;
        border: none;
        border-radius: 25px;
        background: #293e55;
        color: white;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(41, 62, 85, 0.3);
        transition: all 0.3s ease;
    }
    
    .search-button:hover {
        background: #ee8000;
        box-shadow: 0 4px 15px rgba(238, 128, 0, 0.4);
    }

    .search-button i {
        margin-right: 8px;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-right a, 
    .nav-right i {
        color: white;
        font-size: 20px;
        padding: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-right a:hover, 
    .nav-right i:hover {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }
}

/* Pastille connectée (status dot) */
.nav-right .dropdown-toggle.is-logged {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-right .dropdown-toggle.is-logged::after {
    display: none !important;
}

.nav-right .dropdown-toggle.is-logged .status-dot {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 10px;
    height: 10px;
    background: #00e676;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,.06), 0 0 6px rgba(0,230,118,.7);
    pointer-events: none;
    z-index: 2;
}

/* Menu utilisateur compact */
.dropdown-menu.mgs-user-menu {
    min-width: 200px;
    padding: .25rem;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    overflow: hidden;
}

.dropdown-menu.mgs-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    color: #212529;
    background: transparent;
}

.dropdown-menu.mgs-user-menu .dropdown-item i {
    width: 18px;
    margin-right: .5rem;
    text-align: center;
    color: inherit;
}

.dropdown-menu.mgs-user-menu .dropdown-item:hover {
    background: transparent;
    color: inherit;
}

.dropdown-menu.mgs-user-menu .dropdown-divider {
    margin: .25rem 0;
    opacity: .1;
}

.dropdown-menu.mgs-user-menu .dropdown-item.text-danger:hover {
    background: transparent;
    color: #dc3545;
}

/* User icon avec status dot */
.user-icon-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-icon {
    font-size: 20px;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.user-status-dot {
    position: absolute;
    right: 0.5rem;
    bottom: 0.4rem;
    width: 0.6rem;
    height: 0.6rem;
    background: #4CAF50;
    border: 0.15rem solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

/* Ultra-small devices: <=360px width */
@media (max-width: 360px) {
    nav {
        padding: 0.5rem 0.6rem;
        height: 4rem;
        min-height: 4rem;
    }

    .nav-left .logo img {
        height: 2rem;
    }

    .nav-right {
        gap: 0.35rem;
    }

    .nav-right a, 
    .nav-right i {
        font-size: 1.125rem;
        padding: 0.25rem;
    }

    .nav-right .fa-bars {
        font-size: 1.125rem !important;
        padding: 0.35rem !important;
    }

    .user-icon {
        font-size: 1.125rem;
        padding: 0.3rem;
    }

    .user-status-dot {
        right: 0.2rem;
        bottom: 0.1rem;
        width: 0.6rem;
        height: 0.6rem;
        border-width: 0.12rem;
    }

    .nav-center {
        left: 0.3rem;
        right: 0.3rem;
        width: calc(100% - 0.6rem);
        padding: 0.8rem;
    }
}

/* ============================================
   MOBILE NAV V2 — Top simplifiée + Bottom flottante
   Chargée uniquement sur mobile via Affiche()
   ============================================ */
.mobile-top {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-top__left { justify-self: start; }
.mobile-top__right { justify-self: end; }
.mobile-top__logo {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.mobile-top__logo img {
    height: 28px;
    width: auto;
    display: block;
}
.mobile-top__right {
    width: 38px;
    height: 38px;
}
.mobile-top__avatar,
.mobile-top__login {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 75, 88, 0.06);
    color: #004b58;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    transition: background-color .15s ease;
}
.mobile-top__avatar:hover,
.mobile-top__login:hover {
    background: rgba(0, 75, 88, 0.10);
}
.mobile-top__avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 16px rgba(0, 75, 88, 0.06);
    padding: 10px 8px calc(env(safe-area-inset-bottom, 0px) + 10px);
    gap: 2px;
}
.mbn-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    border: none;
    background: transparent;
    color: #6b7c83;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: 14px;
    transition: color .15s ease;
    min-width: 0;
}
.mbn-tab i {
    font-size: 22px;
    line-height: 1;
    transition: transform .15s ease;
}
.mbn-tab span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.mbn-tab.is-active {
    color: #004b58;
}
.mbn-tab.is-active i {
    transform: scale(1.05);
}
.mbn-tab:not(.is-active):hover {
    color: #004b58;
}

.mbn-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -16px 48px rgba(0, 75, 88, 0.18);
    padding: 6px 12px calc(env(safe-area-inset-bottom, 0px) + 16px);
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mbn-sheet__handle {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.18);
    margin: 8px auto 8px;
}
.mbn-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px 14px;
}
.mbn-sheet__title {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #0e1f24;
    letter-spacing: -0.01em;
}
.mbn-sheet__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    color: #6b7c83;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color .15s ease;
}
.mbn-sheet__close:hover {
    background: rgba(0, 0, 0, 0.10);
}
.mbn-sheet__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mbn-sheet__row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 12px;
    border-radius: 14px;
    color: #0e1f24;
    text-decoration: none;
    transition: background-color .15s ease;
}
.mbn-sheet__row:hover {
    background: rgba(0, 75, 88, 0.04);
}
.mbn-sheet__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
}
.mbn-sheet__icon--star    { background: #28a3b3; }
.mbn-sheet__icon--compass { background: #004b58; }
.mbn-sheet__icon--blog    { background: #1e88a8; }
.mbn-sheet__icon--help    { background: #4fb8c6; }
.mbn-sheet__icon--account { background: #85edff; color: #004b58; }
.mbn-sheet__icon--admin   { background: #e77c31; }
.mbn-sheet__icon--danger  { background: #d0454b; }
.mbn-sheet__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.mbn-sheet__row-title {
    font-size: 15px;
    font-weight: 700;
    color: #0e1f24;
    line-height: 1.2;
}
.mbn-sheet__row-sub {
    font-size: 12px;
    color: #6b7c83;
    line-height: 1.3;
}
.mbn-sheet__row--danger .mbn-sheet__row-title { color: #d0454b; }
.mbn-sheet__chevron {
    color: #94a3aa;
    font-size: 12px;
    flex-shrink: 0;
}
.mbn-sheet__backdrop {
    position: fixed;
    inset: 0;
    z-index: 92;
    background: rgba(0, 0, 0, 0.32);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
body.mbn-sheet-open {
    overflow: hidden;
}

/* Réserver l'espace en bas pour ne pas masquer le contenu */
@media (max-width: 1024px) {
    body { padding-bottom: 80px; }
}

