/* ===== TRIO HOTELS ARCHIVE — ISOLATION ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;450;500;550;600;650;700;750;800&display=swap');

#trioHotelsArchive,
#trioHotelsArchive *,
#trioHotelsArchive *::before,
#trioHotelsArchive *::after {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#trioHotelsArchive {
    --th-orange: #FA8862;
    --th-orange-hover: #f97356;
    --th-orange-light: rgba(250,136,98,0.08);
    --th-orange-mid: rgba(250,136,98,0.15);
    --th-black: #131212;
    --th-white: #ffffff;
    --th-gray-50: #FAFAF9;
    --th-gray-100: #F5F5F4;
    --th-gray-200: #E7E5E4;
    --th-gray-300: #D6D3D1;
    --th-gray-400: #A8A29E;
    --th-gray-500: #78716C;
    --th-gray-600: #57534E;
    --th-gray-700: #44403C;
    --th-radius: 20px;
    --th-radius-sm: 12px;
    --th-radius-full: 9999px;
    --th-shadow: 0 1px 3px rgba(0,0,0,0.04);
    --th-shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --th-shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --th-transition: cubic-bezier(0.4, 0, 0.2, 1);
    --th-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    min-height: 60vh;
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
}

#trioHotelsArchive .th-inner {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== CARTE ===== */
#trioHotelsArchive .th-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

#trioHotelsArchive .th-map-head h2 {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(20px, 2.4vw, 26px) !important;
    font-weight: 750 !important;
    color: var(--th-black) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    margin: 0 !important;
    text-transform: none !important;
    background: none !important;
    border: none !important;
}

#trioHotelsArchive .th-map-head p {
    font-family: 'Manrope', sans-serif !important;
    font-size: 14.5px !important;
    color: #364153 !important;
    font-weight: 450 !important;
    line-height: 1.5 !important;
    margin: 6px 0 0 !important;
    max-width: 620px;
}

#trioHotelsArchive .th-map-reset {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 18px !important;
    background: var(--th-black) !important;
    border: none !important;
    border-radius: var(--th-radius-full) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 650 !important;
    color: var(--th-white) !important;
    cursor: pointer !important;
    transition: all 0.25s var(--th-transition) !important;
    line-height: 1.4 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    white-space: nowrap !important;
}

#trioHotelsArchive .th-map-reset:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(19,18,18,0.22) !important;
}

#trioHotelsArchive .th-map-reset[hidden] { display: none !important; }

#trioHotelsArchive .th-map-reset svg {
    width: 14px !important;
    height: 14px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

#trioHotelsArchive .th-map {
    width: 100%;
    height: 480px;
    touch-action: none;
    overscroll-behavior: contain;
    border-radius: var(--th-radius);
    border: 1px solid var(--th-gray-200);
    box-shadow: var(--th-shadow-md);
    overflow: hidden;
    margin-bottom: 48px;
    background: var(--th-gray-100);
    z-index: 1;
}

/* Tuiles en niveaux de gris doux, pour laisser l'orange ressortir */
#trioHotelsArchive .th-map .leaflet-tile-pane {
    filter: saturate(0.55) contrast(0.95) brightness(1.03);
}

#trioHotelsArchive .th-map .leaflet-container {
    font-family: 'Manrope', sans-serif !important;
    background: #eef2f4 !important;
}

#trioHotelsArchive .th-map .leaflet-control-zoom a {
    border-radius: 10px !important;
    color: var(--th-black) !important;
    border: 1px solid var(--th-gray-200) !important;
    font-weight: 600 !important;
}

/* Attribution repliée en pastille discrète, dépliée au survol */
#trioHotelsArchive .th-map .leaflet-control-attribution {
    background: rgba(255,255,255,0.7) !important;
    border-radius: 9999px 0 0 0 !important;
    padding: 2px 8px !important;
    margin: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 9px !important;
    color: var(--th-gray-400) !important;
    box-shadow: none !important;
    max-width: 26px;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    transition: max-width 0.3s var(--th-transition), background 0.3s var(--th-transition);
}

#trioHotelsArchive .th-map .leaflet-control-attribution:hover {
    max-width: 260px;
    background: rgba(255,255,255,0.92) !important;
}

#trioHotelsArchive .th-map .leaflet-control-attribution a {
    color: var(--th-gray-500) !important;
    text-decoration: none !important;
}

/* Marqueur custom */
#trioHotelsArchive .th-marker,
.th-marker {
    background: none !important;
    border: none !important;
}

.th-marker-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 8px;
    background: #ffffff;
    border-radius: 9999px;
    font-family: 'Manrope', -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #131212;
    letter-spacing: -0.005em;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(19,18,18,0.16);
    border: 1.5px solid #ffffff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(-50%, -50%);
    position: relative;
}

.th-marker-inner::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #FA8862;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.th-marker-inner:hover {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 8px 22px rgba(250,136,98,0.35);
    border-color: #FA8862;
}

.th-marker-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9999px;
    background: rgba(250,136,98,0.15);
    color: #FA8862;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1;
}

.th-marker.is-active .th-marker-inner {
    background: #131212;
    color: #ffffff;
    border-color: #131212;
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 10px 26px rgba(19,18,18,0.3);
    z-index: 999;
}

.th-marker.is-active .th-marker-inner::before {
    background: #FA8862;
    border-color: #ffffff;
}

.th-marker.is-active .th-marker-count {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
}

/* ===== TOP BAR ===== */
#trioHotelsArchive .th-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

#trioHotelsArchive .th-topbar-left h1 {
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(24px, 4vw, 34px) !important;
    font-weight: 500 !important;
    color: var(--th-black) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.025em !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    text-transform: none !important;
    background: none !important;
}

#trioHotelsArchive .th-topbar-left p {
    font-family: 'Manrope', sans-serif !important;
    font-size: 15px !important;
    color: #364153 !important;
    font-weight: 450 !important;
    line-height: 1.5 !important;
    margin: 6px 0 0 !important;
    padding: 0 !important;
}

/* ===== FILTRES ===== */
#trioHotelsArchive .th-cats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

#trioHotelsArchive .th-cat-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 20px !important;
    background: var(--th-white) !important;
    border: 1.5px solid var(--th-gray-200) !important;
    border-radius: var(--th-radius-full) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--th-gray-600) !important;
    cursor: pointer !important;
    font-family: 'Manrope', sans-serif !important;
    transition: all 0.25s var(--th-transition) !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    text-decoration: none !important;
    letter-spacing: normal !important;
    outline: none !important;
}

#trioHotelsArchive .th-cat-btn:hover:not(.active) {
    border-color: var(--th-gray-300) !important;
    color: var(--th-black) !important;
    transform: translateY(-1px);
    box-shadow: var(--th-shadow-md) !important;
}

#trioHotelsArchive .th-cat-btn.active {
    background: var(--th-orange) !important;
    border-color: var(--th-orange) !important;
    color: var(--th-white) !important;
    box-shadow: 0 4px 16px rgba(250,136,98,0.3) !important;
}

#trioHotelsArchive .th-cat-btn.active:hover {
    background: var(--th-orange-hover) !important;
    border-color: var(--th-orange-hover) !important;
    transform: translateY(-1px);
}

#trioHotelsArchive .th-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--th-radius-full);
    background: var(--th-gray-100);
    font-size: 11px;
    font-weight: 700;
    color: var(--th-gray-500);
    transition: all 0.25s var(--th-transition);
    line-height: 1;
}

#trioHotelsArchive .th-cat-btn.active .th-cat-count {
    background: rgba(255,255,255,0.25) !important;
    color: var(--th-white) !important;
}

/* ===== GRID ===== */
#trioHotelsArchive .th-grid-wrapper { position: relative; }

#trioHotelsArchive .th-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    min-height: 200px;
    list-style: none;
}

/* ===== CARD ===== */
#trioHotelsArchive .th-card {
    position: relative !important;
    background: var(--th-white) !important;
    border-radius: var(--th-radius) !important;
    overflow: hidden !important;
    border: 1px solid var(--th-gray-200) !important;
    box-shadow: var(--th-shadow) !important;
    transition: all 0.35s var(--th-transition) !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 0;
    transform: translateY(24px);
    animation: thCardIn 0.5s var(--th-transition) forwards;
    text-decoration: none !important;
}

#trioHotelsArchive .th-card:nth-child(1)  { animation-delay: 0.05s; }
#trioHotelsArchive .th-card:nth-child(2)  { animation-delay: 0.10s; }
#trioHotelsArchive .th-card:nth-child(3)  { animation-delay: 0.15s; }
#trioHotelsArchive .th-card:nth-child(4)  { animation-delay: 0.20s; }
#trioHotelsArchive .th-card:nth-child(5)  { animation-delay: 0.25s; }
#trioHotelsArchive .th-card:nth-child(6)  { animation-delay: 0.30s; }
#trioHotelsArchive .th-card:nth-child(7)  { animation-delay: 0.35s; }
#trioHotelsArchive .th-card:nth-child(8)  { animation-delay: 0.40s; }
#trioHotelsArchive .th-card:nth-child(9)  { animation-delay: 0.45s; }
#trioHotelsArchive .th-card:nth-child(10) { animation-delay: 0.50s; }
#trioHotelsArchive .th-card:nth-child(11) { animation-delay: 0.55s; }
#trioHotelsArchive .th-card:nth-child(12) { animation-delay: 0.60s; }

#trioHotelsArchive .th-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--th-gray-300) !important;
    box-shadow: var(--th-shadow-lg) !important;
}

#trioHotelsArchive .th-card-img {
    position: relative !important;
    width: 100% !important;
    padding-top: 68% !important;
    overflow: hidden !important;
    background: var(--th-gray-100) !important;
    display: block !important;
    text-decoration: none !important;
    border: none !important;
}

#trioHotelsArchive .th-card-img img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s var(--th-transition) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#trioHotelsArchive .th-card:hover .th-card-img img {
    transform: scale(1.06) !important;
}

#trioHotelsArchive .th-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,18,18,0) 55%, rgba(19,18,18,0.18) 100%);
    pointer-events: none;
    z-index: 1;
}

#trioHotelsArchive .th-card-loc {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 5px 12px 5px 10px !important;
    background: var(--th-white) !important;
    border-radius: var(--th-radius-full) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--th-orange) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    text-decoration: none !important;
    z-index: 2 !important;
    line-height: 1.4 !important;
    font-family: 'Manrope', sans-serif !important;
    border: none !important;
}

#trioHotelsArchive .th-card-loc svg {
    width: 11px !important;
    height: 11px !important;
    stroke: var(--th-orange) !important;
    fill: none !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    flex-shrink: 0 !important;
}

#trioHotelsArchive .th-card-body {
    padding: 22px 24px 14px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    background: var(--th-white) !important;
}

#trioHotelsArchive .th-card-body h3 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 18px !important;
    font-weight: 750 !important;
    color: var(--th-black) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    transition: color 0.2s var(--th-transition) !important;
    border: none !important;
    text-transform: none !important;
    background: none !important;
}

#trioHotelsArchive .th-card:hover .th-card-body h3 {
    color: var(--th-orange) !important;
}

#trioHotelsArchive .th-card-body h3 a {
    color: inherit !important;
    text-decoration: none !important;
    border: none !important;
    background: none !important;
}

/* --- Region, accroche et tarif sur la carte --- */

#trioHotelsArchive .th-card-geo {
    display: inline-block !important;
    margin: 9px 0 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 10.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: var(--th-gray-400) !important;
}

#trioHotelsArchive .th-card-fort {
    margin: 10px 0 0 !important;
    padding: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13.5px !important;
    font-weight: 450 !important;
    line-height: 1.55 !important;
    color: var(--th-gray-600) !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

#trioHotelsArchive .th-card-price {
    display: flex !important;
    flex-direction: column !important;
    line-height: 1.25 !important;
}

#trioHotelsArchive .th-card-price-l {
    font-family: 'Manrope', sans-serif !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;
    color: var(--th-gray-400) !important;
}

#trioHotelsArchive .th-card-price-v {
    font-family: 'Manrope', sans-serif !important;
    font-size: 15.5px !important;
    font-weight: 750 !important;
    color: var(--th-black) !important;
    margin-top: 2px !important;
}

#trioHotelsArchive .th-card-price-n {
    font-family: 'Manrope', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: var(--th-gray-400) !important;
    margin-top: 2px !important;
}

#trioHotelsArchive .th-card-footer {
    padding: 16px 24px 20px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 14px !important;
    background: var(--th-white) !important;
    margin-top: auto !important;
    border-top: 1px solid var(--th-gray-100) !important;
}

#trioHotelsArchive .th-card-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 16px !important;
    background: var(--th-orange-light) !important;
    border: none !important;
    border-radius: 999px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    color: var(--th-orange) !important;
    text-decoration: none !important;
    transition: all 0.2s var(--th-transition) !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

#trioHotelsArchive .th-card-btn:hover {
    color: var(--th-orange-hover) !important;
}

#trioHotelsArchive .th-card-btn svg {
    width: 15px !important;
    height: 15px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    transition: transform 0.2s var(--th-transition) !important;
}

#trioHotelsArchive .th-card-btn:hover svg {
    transform: translateX(4px) !important;
}

/* ===== PAGINATION ===== */
#trioHotelsArchive .th-pagination {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

#trioHotelsArchive .th-page-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    height: 44px !important;
    padding: 0 14px !important;
    background: var(--th-white) !important;
    border: 1.5px solid var(--th-gray-200) !important;
    border-radius: var(--th-radius-full) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--th-gray-600) !important;
    cursor: pointer !important;
    font-family: 'Manrope', sans-serif !important;
    transition: all 0.25s var(--th-transition) !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    line-height: 1 !important;
    text-decoration: none !important;
    outline: none !important;
}

#trioHotelsArchive .th-page-btn:hover:not(:disabled):not(.active) {
    border-color: var(--th-gray-300) !important;
    color: var(--th-black) !important;
    transform: translateY(-1px);
    box-shadow: var(--th-shadow-md) !important;
}

#trioHotelsArchive .th-page-btn.active {
    background: var(--th-black) !important;
    border-color: var(--th-black) !important;
    color: var(--th-white) !important;
    box-shadow: 0 4px 14px rgba(19,18,18,0.2) !important;
}

#trioHotelsArchive .th-page-btn:disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
}

#trioHotelsArchive .th-page-btn svg {
    width: 16px !important;
    height: 16px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

#trioHotelsArchive .th-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    font-size: 14px;
    font-weight: 600;
    color: var(--th-gray-400);
    letter-spacing: 2px;
    font-family: 'Manrope', sans-serif;
}

/* ===== LOADER ===== */
#trioHotelsArchive .th-loader {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10;
    align-items: center;
    justify-content: center;
    border-radius: var(--th-radius);
}

#trioHotelsArchive .th-loader.active { display: flex; }

#trioHotelsArchive .th-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--th-gray-200);
    border-top-color: var(--th-orange);
    border-radius: 50%;
    animation: thSpin 0.6s linear infinite;
}

/* ===== EMPTY STATE ===== */
#trioHotelsArchive .th-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

#trioHotelsArchive .th-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--th-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

#trioHotelsArchive .th-empty-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--th-orange);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#trioHotelsArchive .th-empty h3 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 20px !important;
    font-weight: 750 !important;
    color: var(--th-black) !important;
    margin: 0 0 8px !important;
}

#trioHotelsArchive .th-empty p {
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    color: var(--th-gray-500) !important;
    font-weight: 450 !important;
}

/* ===== ANIMATIONS ===== */
@keyframes thCardIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes thSpin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #trioHotelsArchive .th-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 22px !important;
    }
    #trioHotelsArchive .th-inner {
        padding: 44px 24px 64px !important;
    }
    #trioHotelsArchive .th-topbar {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    #trioHotelsArchive .th-cats { width: 100% !important; }
}

@media (max-width: 768px) {
    #trioHotelsArchive .th-map {
        height: 380px !important;
        border-radius: var(--th-radius-sm) !important;
        margin-bottom: 36px !important;
    }
    .th-marker-inner {
        font-size: 11px !important;
        padding: 5px 10px 5px 7px !important;
    }
    #trioHotelsArchive .th-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    #trioHotelsArchive .th-topbar {
        margin-bottom: 28px !important;
        gap: 16px !important;
    }
    #trioHotelsArchive .th-topbar-left h1 { font-size: 24px !important; }
    #trioHotelsArchive .th-topbar-left p  { font-size: 13px !important; }
    #trioHotelsArchive .th-cats { gap: 6px !important; width: 100% !important; }
    #trioHotelsArchive .th-cat-btn {
        padding: 7px 14px !important;
        font-size: 12px !important;
    }
    #trioHotelsArchive .th-card-body   { padding: 18px 20px 10px !important; }
    #trioHotelsArchive .th-card-footer { padding: 0 20px 18px !important; }
    #trioHotelsArchive .th-card-body h3 { font-size: 16px !important; }
    #trioHotelsArchive .th-pagination { margin-top: 40px !important; gap: 4px !important; }
    #trioHotelsArchive .th-page-btn {
        min-width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 520px) {
    #trioHotelsArchive .th-map { height: 320px !important; }
    #trioHotelsArchive .th-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    #trioHotelsArchive .th-topbar { margin-bottom: 24px !important; gap: 12px !important; }
    #trioHotelsArchive .th-topbar-left h1 { font-size: 22px !important; }
    #trioHotelsArchive .th-topbar-left p  { font-size: 12.5px !important; }
    #trioHotelsArchive .th-cat-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
    #trioHotelsArchive .th-cat-count {
        min-width: 18px !important;
        height: 18px !important;
        font-size: 10px !important;
        padding: 0 4px !important;
    }
    #trioHotelsArchive .th-card-body h3 { font-size: 15px !important; }
    #trioHotelsArchive .th-card-img { padding-top: 64% !important; }
    #trioHotelsArchive .th-page-btn {
        min-width: 36px !important;
        height: 36px !important;
        font-size: 12px !important;
        padding: 0 10px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    #trioHotelsArchive .th-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
