
/* ================= BASE RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

html, body{
    overflow-x:hidden;
    background:#f5f5f5;
}

/* images clean global */
img{
    display:block;
    max-width:100%;
}

/* ================= SITE CONTAINER ================= */
.site-container{
    max-width:1600px;
    margin:0 auto;
    padding:0 20px;
}

/* =====================================================
   🎞️ SLIDER
===================================================== */
.top-slide{
    position:relative;
    background:#f6f8fc;
    padding:25px 10px;
    border-radius:15px;
    overflow:hidden;
}

.slider-window{
    overflow:hidden;
    width:100%;
}
.slider-track{
    display:flex;
    width:max-content;
    will-change:transform;
}
.slide-card{
    margin-right:15px;
}
/* cards slider */
.slide-card{
    flex:0 0 auto;
    width:200px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.25s;
}

.slide-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.slide-card img{height:120px; object-fit:cover; width:100%;}

/* =====================================================
   🎮 CONTROLS
===================================================== */
.slider-controls{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    transform:translateY(-50%);
    padding:0 15px;
    z-index:999;
    pointer-events:none;
}

.ctrl-btn{
    pointer-events:auto;
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:rgba(11,35,65,0.85);
    color:#fff;
    cursor:pointer;
}

.ctrl-btn:hover{background:#28a745;}

#pauseSlide{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
}

/* =====================================================
   🔎 SEARCH
===================================================== */
.search-section{
    background:linear-gradient(135deg,#0b2341,#163a63);
    padding:35px 20px;
    border-radius:18px;
    margin:20px 0;
    color:#fff;
}

.search-section .search-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
}

.search-section .grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}


/* =====================================================
   🔎 SEARCH SECTION (PROPRE + STABLE)
===================================================== */
.search-section{
    background:linear-gradient(135deg,#0b2341,#163a63);
    padding:35px 20px;
    border-radius:18px;
    margin:20px 0;
    color:#fff;
}

/* titre */
.search-section .section-title{
    font-size:22px;
    font-weight:800;
    margin-bottom:15px;
}

/* tabs */
.search-section .tabs{
    display:flex;
    gap:10px;
    margin-bottom:18px;
}

.search-section .tab-btn{
    flex:1;
    padding:12px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.15);
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.search-section .tab-btn.active{
    background:#fff;
    color:#0b2341;
}

/* contenu */
.search-section .tab-content{
    display:none;
}

.search-section .tab-content.active{
    display:block;
}

/* card formulaire */
.search-section .search-card{
    background:#fff;
    padding:20px;
    border-radius:16px;
}

/* grid formulaire */
.search-section .grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}

/* inputs */
.search-section input,
.search-section select{
    width:100%;
    padding:11px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

/* button */
.search-section .form-actions{
    display:flex;
    justify-content:flex-end;
    margin-top:10px;
}

.search-section .search-btn{
    padding:11px 18px;
    border:none;
    border-radius:25px;
    font-weight:700;
    cursor:pointer;
    background:#0b2341;
    color:#fff;
}

/* =====================================================
   📊 RESULTS CONTAINER
===================================================== */
.results-container{
    padding:25px 20px;
}

.results-wrapper{
    margin:25px 0 40px;
}

/* header */
.results-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:20px;
}

.results-main-title{
    font-size:24px;
    font-weight:800;
    color:#0b2341;
}

/* badges */
.results-badge{
    background:#0b2341;
    color:#fff;
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

.results-badge.shop{
    background:#ff9800;
}
/* ================= SEARCH LOADING OVERLAY ================= */
#search-loading.results-loader{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    background:rgba(11,35,65,0.75);
    backdrop-filter:blur(6px);

    z-index:99999;

    opacity:0;
    visibility:hidden;
    transform:scale(1.02);

    transition:all .25s ease;
}

/* actif */
#search-loading.results-loader.show{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}

/* contenu loader */
#search-loading .loader-inline{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;

    background:#fff;
    padding:18px 22px;
    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* animation barres */
.bars-inline{
    display:flex;
    gap:5px;
}

.bars-inline span{
    width:5px;
    height:18px;
    background:#0b2341;
    border-radius:3px;
    animation:bounce 0.9s infinite ease-in-out;
}

.bars-inline span:nth-child(2){ animation-delay:0.1s; }
.bars-inline span:nth-child(3){ animation-delay:0.2s; }

@keyframes bounce{
    0%,100%{ transform:scaleY(0.4); opacity:0.5; }
    50%{ transform:scaleY(1); opacity:1; }
}

.loader-text{
    font-size:13px;
    font-weight:600;
    color:#0b2341;
}
/* =====================================================
   🧱 GRID RESULTATS (🔥 FIX IMPORTANT)
===================================================== */
.gallery-grid,
.property-grid{
    display:grid;

    /* 🔥 FIX : pas de stretch */
    grid-template-columns:repeat(auto-fill, 240px);

    gap:18px;

    justify-content:start;
    align-items:start;
}

/* =====================================================
   🧱 CARD RESULTAT (FIX PRINCIPAL)
===================================================== */
.gallery-card,
.property-card{
    width:240px;         /* 🔥 taille FIXE */
    flex:0 0 auto;

    background:#fff;
    border-radius:16px;
    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.25s ease;

    display:flex;
    flex-direction:column;
}

/* hover */
.gallery-card:hover,
.property-card:hover{
    transform:translateY(-5px);
}

/* =====================================================
   🖼️ IMAGE FIXE
===================================================== */
.gallery-card img,
.property-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}
/* ================= REFRESH BUTTON ================= */
.btn-reset{
    display:inline-flex;
    align-items:center;
    gap:6px;

    background:#0b2341;
    color:#fff;

    padding:10px 15px;
    border-radius:25px;

    font-size:13px;
    font-weight:700;

    text-decoration:none;

    transition:.25s ease;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* hover */
.btn-reset:hover{
    background:#28a745;
    transform:translateY(-2px);
}

/* loading state */
.btn-reset.loading{
    opacity:0.7;
    pointer-events:none;
    position:relative;
}

/* spinner */
.btn-reset.loading::before{
    content:"";
    width:14px;
    height:14px;

    border:2px solid #fff;
    border-top:2px solid transparent;
    border-radius:50%;

    display:inline-block;
    margin-right:8px;

    animation:spin .8s linear infinite;
}

@keyframes spin{
    0%{transform:rotate(0);}
    100%{transform:rotate(360deg);}
}
/* ================= HERO ================= */
.hero{
    background:linear-gradient(135deg,#061a33,#0b2341);
    color:#fff;
    padding:110px 20px;
    text-align:center;
    position:relative;
}

/* lumière douce */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 65%);
    pointer-events:none;
}

/* container large */
.hero-content{
    position:relative;
    max-width:1200px;
    margin:0 auto;
}

/* ================= SLOGAN ================= */
.hero-slogan{
    font-size:18px;
    font-weight:600;
    margin-bottom:18px;
    opacity:0.9;
}

/* ================= TITRE ================= */
.hero h1{
    font-size:40px;
    font-weight:900;
    margin-bottom:12px;
    line-height:1.2;
}

/* ================= SUBTITLE ================= */
.hero-slogan,
.hero p{
    font-size:16px;   /* 👈 même taille */
    font-weight:500;
    opacity:0.88;
    margin-bottom:18px;
}
/* ================= ACTIONS ================= */
.hero-actions{
    display:flex;
    justify-content:center;
    align-items:center;

    flex-wrap:nowrap;   /* 🔥 UNE SEULE LIGNE DESKTOP */
    gap:18px;

    overflow-x:auto;    /* sécurité si écran petit */
    padding-bottom:5px;
}

/* ================= BOUTONS ================= */
.btn-hero{
    padding:15px 20px;
    border:none;
    border-radius:50px;

    font-size:14px;
    font-weight:800;
    cursor:pointer;

    white-space:nowrap;
    flex-shrink:0;

    min-width:180px;

    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:all .25s ease;
}

/* hover */
.btn-hero:hover{
    transform:translateY(-4px);
    filter:brightness(1.08);
}

/* couleurs */
.btn-hero.primary{
    background:linear-gradient(135deg,#00c853,#1b8f3a);
}

.btn-hero.secondary{
    background:linear-gradient(135deg,#ff9800,#e65100);
}

.btn-hero.restaurant{
    background:linear-gradient(135deg,#ff7043,#e64a19);
}

.btn-hero.info{
    background:linear-gradient(135deg,#29b6f6,#1565c0);
}

.btn-hero.accent{
    background:linear-gradient(135deg,#ff3d6e,#c2185b);
}

/* ================= MOBILE ================= */
@media (max-width:768px){

    .hero{
        padding:80px 15px;
    }

    .hero h1{
        font-size:28px;
    }

    .hero p{
        font-size:14px;
    }

    .hero-slogan{
        font-size:16px;
    }

    .hero-actions{
        flex-wrap:wrap; /* colonne mobile */
        overflow-x:visible;
    }

    .btn-hero{
        width:100%;
        min-width:unset;
    }
}
.youtube-section{
    padding:40px 20px;
    background:#f9fafb;
}

.youtube-header{
    text-align:center;
    margin-bottom:25px;
}

.youtube-badge{
    background:#ff0000;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
}

.youtube-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.youtube-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,0.08);
}

.youtube-card iframe{
    width:100%;
    height:180px;
    border:none;
}

.youtube-info{
    padding:10px;
}

.youtube-info h3{
    font-size:14px;
    margin:0 0 5px 0;
}

.yt-meta, .yt-user{
    font-size:12px;
    color:#666;
}

.youtube-more{
    text-align:center;
    margin-top:20px;
}

.btn-more{
    display:inline-block;
    padding:10px 18px;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
}

/* MOBILE */
@media(max-width:900px){
    .youtube-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .youtube-grid{
        grid-template-columns:1fr;
    }
}
/* ================= CATEGORIES ================= */
.categories{
    padding:60px 20px;
    background:#f5f7fb;
}

.categories h2{
    font-size:22px;
    font-weight:800;
    color:#0b2341;
    margin-bottom:25px;
}

/* grid */
.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:18px;
}

/* card */
.category-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;

    text-align:center;
    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:.25s ease;

    padding-bottom:10px;
}

/* hover */
.category-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

/* image */
.category-card img{
    width:100%;
    height:110px;
    object-fit:cover;
}

/* label */
.category-card p{
    margin-top:10px;
    font-size:14px;
    font-weight:700;
    color:#0b2341;
}
/* =====================================================
   📦 CONTENT STABLE
===================================================== */
.content,
.card-content{
    padding:12px 14px;
    display:flex;
    flex-direction:column;
    gap:6px;
    min-width:0;
}

/* titre stable */
.card-title,
.card-content h3{
    font-size:15px;
    font-weight:700;
    color:#0b2341;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

/* texte */
.content p,
.card-content p{
    font-size:13px;
    color:#555;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* prix */
.price{
    font-weight:700;
    color:#28a745;
}

/* badge */
.badge{
    display:inline-block;
    background:#0b2341;
    color:#fff;
    font-size:11px;
    padding:4px 8px;
    border-radius:20px;
    width:fit-content;
}

/* bouton */
.btn-view,
.btn.view{
    display:inline-block;
    padding:8px 12px;
    border-radius:20px;
    background:#0b2341;
    color:#fff;
    font-size:13px;
    text-decoration:none;
}

/* hover bouton */
.btn-view:hover,
.btn.view:hover{
    background:#28a745;
}

/* =====================================================
   📱 RESPONSIVE
===================================================== */
@media(max-width:768px){

    .gallery-grid,
    .property-grid{
        grid-template-columns:repeat(2, 240px);
        justify-content:center;
    }
}

@media(max-width:480px){

    .gallery-grid,
    .property-grid{
        grid-template-columns:repeat(1, 240px);
        justify-content:center;
    }

    .search-section .grid-3{
        grid-template-columns:1fr;
    }
}


/* =====================================================
   🏪 HOME SHOPS
===================================================== */
.home-shops{
    padding:50px 20px;
    background:#f5f7fb;
}

.shops-scroll{
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

/* IMPORTANT FIX */
.shop-card-home{
    flex:0 0 auto;
    width:280px; /* FIX taille stable */
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
/* ================= HOME SHOPS ================= */
.home-shops{
    padding:70px 20px;
    background:#f5f7fb;
    overflow:hidden;
}

/* header */
.home-shops h2{
    font-size:24px;
    font-weight:900;
    color:#0b2341;
    margin-bottom:25px;
}

/* ================= HORIZONTAL SCROLL ================= */
.shops-scroll{
    display:flex;
    gap:20px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;

    padding-bottom:10px;
}

/* scroll style */
.shops-scroll::-webkit-scrollbar{
    height:6px;
}

.shops-scroll::-webkit-scrollbar-thumb{
    background:#0b2341;
    border-radius:10px;
}

/* ================= SHOP CARD ================= */
.shop-card-home{
    flex:0 0 auto;

    width:290px;

    background:#fff;
    border-radius:20px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:.28s ease;

    position:relative;
}

/* hover */
.shop-card-home:hover{
    transform:translateY(-7px);
    box-shadow:0 18px 40px rgba(0,0,0,0.14);
}

/* ================= BANNER ================= */
.shop-banner{
    width:100%;
    height:150px;
    overflow:hidden;
    position:relative;
}

.shop-banner img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:transform .4s ease;
}
.home-section{
    margin-top:35px;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.section-header h2{
    margin:0;
    color:#0b2341;
}

.see-all{
    text-decoration:none;
    color:#007bff;
    font-weight:bold;
}

.restaurant-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:20px;
}

.restaurant-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:.2s;
}

.restaurant-card:hover{
    transform:translateY(-3px);
}

.restaurant-image{
    position:relative;
    height:200px;
    overflow:hidden;
}

.restaurant-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.no-image{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
    background:#eee;
}

.restaurant-status{
    position:absolute;
    top:10px;
    right:10px;
    padding:6px 10px;
    border-radius:30px;
    font-size:13px;
    color:#fff;
    font-weight:bold;
}

.restaurant-status.open{
    background:#28a745;
}

.restaurant-status.closed{
    background:#dc3545;
}

.restaurant-content{
    padding:15px;
}

.restaurant-top{
    display:flex;
    gap:10px;
    align-items:center;
}

.restaurant-logo{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    box-shadow:0 3px 8px rgba(0,0,0,0.15);
}

.restaurant-top h3{
    margin:0;
    font-size:18px;
}

.restaurant-type,
.restaurant-hours{
    margin-top:10px;
    color:#555;
    font-size:14px;
}

.restaurant-services{
    margin-top:12px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.restaurant-services span{
    background:#f1f1f1;
    padding:6px 10px;
    border-radius:20px;
    font-size:12px;
}

.restaurant-btn{
    margin-top:15px;
    display:block;
    text-align:center;
    background:#28a745;
    color:#fff;
    text-decoration:none;
    padding:10px;
    border-radius:10px;
    font-weight:bold;
}
/* zoom hover */
.shop-card-home:hover .shop-banner img{
    transform:scale(1.06);
}

/* overlay */
.shop-banner::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.25)
    );
}

/* ================= BODY ================= */
.shop-body{
    padding:16px;
    text-align:center;
    position:relative;
}

/* ================= LOGO ================= */
.shop-logo{
    width:72px;
    height:72px;

    border-radius:50%;
    object-fit:cover;

    border:4px solid #fff;

    background:#fff;

    margin-top:-52px;
    margin-bottom:10px;

    box-shadow:0 6px 18px rgba(0,0,0,0.15);
}

/* ================= SHOP NAME ================= */
.shop-body h3{
    font-size:17px;
    font-weight:800;
    color:#0b2341;

    margin-bottom:6px;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* ================= LOCATION ================= */
.shop-body p{
    font-size:13px;
    color:#666;

    margin-bottom:14px;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* ================= BUTTON ================= */
.btn-shop{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    background:linear-gradient(135deg,#0b2341,#163a63);
    color:#fff;

    border-radius:30px;

    text-decoration:none;
    font-size:13px;
    font-weight:700;

    transition:.25s ease;
}

/* hover */
.btn-shop:hover{
    background:linear-gradient(135deg,#00c853,#1b8f3a);
    transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){

    .home-shops{
        padding:50px 15px;
    }

    .home-shops h2{
        font-size:21px;
    }

    .shop-card-home{
        width:250px;
    }

    .shop-banner{
        height:130px;
    }

    .shop-logo{
        width:65px;
        height:65px;
    }
}

@media(max-width:480px){

    .shop-card-home{
        width:220px;
    }

    .shop-banner{
        height:120px;
    }

    .shop-body{
        padding:14px;
    }
}
/* =====================================================
   🏡 PROPERTIES PREMIUM
===================================================== */
/* =====================================================
   🏡 PROPERTIES PREMIUM V2
===================================================== */

.properties{
    padding:55px 20px;
    background:#f4f7fb;
}

/* =====================================================
   🎯 HEADER
===================================================== */

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:24px;
    flex-wrap:wrap;
}

.properties h2{
    font-size:28px;
    font-weight:800;
    color:#0b2341;
    position:relative;
    padding-left:16px;
}

.properties h2::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    width:5px;
    height:32px;
    border-radius:20px;
    background:#28a745;
}

/* voir plus */
.see-more-business{
    text-decoration:none;
    background:#0b2341;
    color:#fff;
    padding:10px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    transition:.25s ease;
}

.see-more-business:hover{
    background:#28a745;
    transform:translateY(-2px);
}

/* =====================================================
   📦 GRID
===================================================== */

.property-grid{
    display:grid;

    /* 🔥 largeur identique */
    grid-template-columns:
        repeat(auto-fill,minmax(280px,280px));

    gap:22px;

    justify-content:flex-start;
    align-items:stretch;
}

/* =====================================================
   🧱 CARD
===================================================== */

.property-card{
    width:280px;
    min-height:100%;

    background:#fff;

    border-radius:22px;
    overflow:hidden;

    display:flex;
    flex-direction:column;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.property-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

/* =====================================================
   🖼 IMAGE
===================================================== */

.property-card img{
    width:100%;
    height:185px;
    object-fit:cover;
    display:block;
    background:#eef2f7;
}

/* =====================================================
   📄 CONTENT
===================================================== */

.card-content{
    flex:1;

    display:flex;
    flex-direction:column;

    padding:15px;
}

/* =====================================================
   📝 TITLE
===================================================== */

.card-content h3{
    font-size:17px;
    font-weight:800;
    color:#0b2341;

    line-height:1.4;

    margin-bottom:10px;

    /* 🔥 même hauteur */
    min-height:48px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;

    word-break:break-word;
    overflow-wrap:anywhere;
}

/* =====================================================
   🏷 BADGE
===================================================== */

.badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:fit-content;

    padding:6px 12px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #0b2341,
            #173d68
        );

    color:#fff;

    font-size:11px;
    font-weight:700;

    margin-bottom:12px;
}

/* =====================================================
   📋 DETAILS
===================================================== */

.compact-details{
    display:flex;
    flex-direction:column;
    gap:6px;

    margin-bottom:12px;
}

/* 🔥 DETAILS PLUS PETITS */
.compact-details p{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:10px;

    font-size:12px;
    color:#5b6472;

    padding:6px 0;

    line-height:1.35;

    border-bottom:1px solid #edf1f7;

    /* 🔥 réduit hauteur */
    min-height:30px;
}

.compact-details p:last-child{
    border-bottom:none;
}

.compact-details strong{
    color:#0b2341;
    font-weight:700;
    flex-shrink:0;
}

.compact-details span{
    text-align:right;

    word-break:break-word;
    overflow-wrap:anywhere;
}

/* =====================================================
   💰 PRICE
===================================================== */

.price-box,
.hotel-price-box{
    margin-top:auto;

    padding:14px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            rgba(40,167,69,0.12),
            rgba(40,167,69,0.05)
        );

    border:
        1px solid rgba(40,167,69,0.16);

    margin-bottom:14px;
}

/* label */
.price-label,
.hotel-price-label{
    display:block;

    font-size:11px;
    font-weight:800;

    color:#1f8f3a;

    text-transform:uppercase;

    margin-bottom:5px;

    letter-spacing:.4px;
}

/* valeur */
.price-value,
.hotel-price-range{
    font-size:23px;
    font-weight:900;

    color:#28a745;

    line-height:1.1;

    word-break:break-word;
}

/* hotel */
.hotel-price-range{
    font-size:20px;
}

/* =====================================================
   🎯 ACTIONS
===================================================== */

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

/* bouton */
.btn-action{
    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    padding:11px 14px;

    border-radius:14px;

    font-size:13px;
    font-weight:700;

    transition:.25s ease;
}

/* voir */
.btn-action.primary{
    background:
        linear-gradient(
            135deg,
            #0b2341,
            #173d68
        );

    color:#fff;
}

.btn-action.primary:hover{
    background:
        linear-gradient(
            135deg,
            #28a745,
            #1f8f3a
        );

    transform:translateY(-2px);
}

/* contact */
.btn-action.secondary{
    background:#eef2f7;
    color:#0b2341;
}

.btn-action.secondary:hover{
    background:#dce5ef;
    transform:translateY(-2px);
}

/* =====================================================
   💼 BUSINESS CARD
===================================================== */

.business-card .mini-info{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:10px;

    margin-top:4px;
    margin-bottom:16px;

    font-size:12px;
    color:#5f6b7a;
}

.business-card .card-content{
    padding:14px;
}

/* =====================================================
   📭 EMPTY
===================================================== */

.property-empty{
    width:100%;

    padding:50px 20px;

    background:#fff;

    border-radius:18px;

    text-align:center;

    color:#667085;

    font-size:15px;

    box-shadow:
        0 8px 24px rgba(0,0,0,0.05);
}

/* =====================================================
   📱 RESPONSIVE
===================================================== */

@media(max-width:768px){

    .properties{
        padding:40px 14px;
    }

    .properties h2{
        font-size:23px;
    }

    .property-grid{
        grid-template-columns:
            repeat(auto-fill,minmax(230px,230px));

        gap:16px;
    }

    .property-card{
        width:230px;
    }

    .property-card img{
        height:160px;
    }

    .price-value{
        font-size:20px;
    }

    .hotel-price-range{
        font-size:18px;
    }
}

@media(max-width:540px){

    .property-grid{
        grid-template-columns:1fr;
    }

    .property-card{
        width:100%;
    }

    .card-content h3{
        min-height:auto;
    }
}