@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root{
    --blue:#012169;
    --blue2:#003399;
    --red:#E4002B;
    --white:#fff;
    --light:#f5f7fb;
    --dark:#111827;
    --text:#111;
    --muted:#666;
}
a { text-decoration: none}
*{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    width:100%;
    min-height:100%;
    font-family:'Plus Jakarta Sans',sans-serif;
    background:var(--light);
    color:var(--text);
}

input,
select,
textarea,
button{
    font-family:'Plus Jakarta Sans',sans-serif;
}

h1,
h2,
h3,
.brand,
.profile-title,
.category-hero h1{
    font-family:'Outfit',sans-serif;
    letter-spacing:-.02em;
}
.blink-hard{animation:blinker 1s step-end infinite; }
.blink-soft{animation:blinker 1.5s linear infinite}
@keyframes blinker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}


/* =====================
   Map
===================== */

#map{
    position:fixed;
    inset:0;
    width:100vw;
    height:100vh;
    z-index:1;
}

.topbar,
.near-me,
.add-business,
.panel{
    display:none;
}

/* Show topbar on normal pages */
body:not(.map-page) .topbar{
    display:flex;
}

/* Show map controls only after map is ready */
body.map-ready .topbar,
body.map-ready .near-me,
body.map-ready .add-business{
    display:flex;
}
.vlh-first-visit-notice {
    max-width: 560px;
    padding: 10px;
}

.vlh-first-visit-notice h2 {
    margin-top: 0;
    font-weight: 800;
}

.vlh-first-visit-notice p {
    font-size: 14px;
    line-height: 1.5;
}

.vlh-first-visit-notice .btn {
    white-space: normal;
}
/* =====================
   Main Map Topbar
===================== */

.topbar{
    position:fixed;
    top:15px;
    left:15px;
    right:15px;
    z-index:9000;
    align-items:center;
    gap:12px;
    pointer-events:none;
}

.topbar .brand,
.topbar .search-wrap,
.topbar .topbar-actions{
    pointer-events:auto;
}

.brand{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 16px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--blue),var(--blue2));
    color:#fff !important;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
    white-space:nowrap;
    box-shadow:0 6px 18px rgba(1,33,105,.25);
}

.brand:before{
   content:"\f57d";
	font-family:"Font Awesome 6 Free";
	font-weight:900;
}

.search-wrap{
    flex:1;
    max-width:520px;
    min-width:0;
}

.geocoder{
    width:100%;
    position:relative;
}
.tag-box{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;

    padding:6px 10px;

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

    box-shadow:0 8px 26px rgba(1,33,105,.16);
}

.tag-box input{
    flex:1;
    min-width:120px;
    border:0;
    outline:0;
    background:transparent;
}

.tag-box .geomarker{
    position:static !important;

    width:34px;
    height:34px;

    min-width:34px;

    border:0;
    border-radius:50%;

    background:#eef3fb;

    color:#E4002B;

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

    cursor:pointer;

    flex-shrink:0;

    transform:none !important;
}
.mapboxgl-ctrl-geocoder{
    display:none;
	width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    border-radius:16px !important;
    box-shadow:0 8px 26px rgba(1,33,105,.16) !important;
    overflow:hidden;
}

.mapboxgl-ctrl-geocoder input{
    height:48px !important;
    padding-left:44px !important;
    padding-right:78px !important;
    font-family:'Plus Jakarta Sans',sans-serif !important;
    font-size:14px !important;
    border:0 !important;
}

.mapboxgl-ctrl-geocoder--icon-search{
    top:14px !important;
    left:14px !important;
}

.geomarker{
    position:absolute !important;
    right:12px !important;
    left:auto !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    z-index:99999 !important;
    width:38px !important;
    height:38px !important;
    line-height:38px !important;
    border:0 !important;
    border-radius:50% !important;
    background:#eef3fb !important;
    color:var(--red) !important;
    cursor:pointer !important;
    font-size:18px !important;
    text-align:center;
}

.topbar-actions{
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}

.topbar-btn{
    display:flex;
    align-items:center;
    gap:6px;
    padding:10px 14px;
    border:0;
    border-radius:12px;
    background:#fff;
    color:var(--blue);
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    cursor:pointer;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.topbar-btn:hover{
    background:#f5f7fb;
}

.topbar-btn-add{
    background:var(--red);
    color:#fff;
}

.topbar-btn-add:hover{
    background:#c90026;
}

/* =====================
   Floating buttons
===================== */

.near-me,
.add-business{
    position:fixed;
    right:22px;
    z-index:45;
    width:58px;
    height:58px;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    border:0;
    cursor:pointer;
    box-shadow:0 6px 18px rgba(0,0,0,.3);
}

.near-me{
    bottom:92px;
    background:var(--blue);
    color:#fff;
}

.add-business{
    bottom:22px;
    background:var(--red);
    color:#fff;
    font-size:22px;
}

/* =====================
   Panels
===================== */

.panel{
    position:fixed;
    top:80px;
    right:20px;
    width:420px;
    max-width:calc(100vw - 40px);
    max-height:calc(100vh - 100px);
    overflow-y:auto;
    background:#fff;
    border-top:4px solid var(--blue);
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.18),0 2px 8px rgba(0,0,0,.08);
    z-index:999;
    padding:24px;
    animation:slidePanel .25s ease;
}

.panel.is-open{
    display:block;
}

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

.panel h2{
    margin:0 0 12px;
    font-size:1.4rem;
    font-weight:700;
    color:var(--blue);
}

.panel-note{
    margin:0 0 18px;
    color:var(--muted);
    line-height:1.5;
}

.close-panel{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:0;
    background:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
}

.close-panel i{
    color:var(--red);
    font-size:24px;
}

.close-panel:hover{
    transform:translateY(-1px);
}

.panel input,
.panel select,
.panel textarea{
    width:100%;
    margin-bottom:10px;
    padding:12px 14px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    background:#fff;
    font-size:14px;
    transition:.2s;
}

.panel textarea{
    min-height:90px;
    resize:vertical;
}

.panel input:focus,
.panel select:focus,
.panel textarea:focus{
    outline:none;
    border-color:var(--blue);
    box-shadow:0 0 0 4px rgba(1,33,105,.12);
}

.panel label{
    display:block;
    margin-top:12px;
    margin-bottom:5px;
    font-weight:600;
    color:#333;
}

.form-section-title{
    margin-top:20px;
    margin-bottom:8px;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--red);
}

.field-note,
.upload-file-name{
    display:block;
    margin:8px 0 14px;
    color:var(--muted);
    font-size:13px;
}

.panel button[type="submit"],
.review-form button,
#verifyBox button{
    width:100%;
    border:0;
    padding:14px;
    margin-top:8px;
    border-radius:12px;
    background:var(--blue);
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.panel button[type="submit"]:hover,
.review-form button:hover,
#verifyBox button:hover{
    background:#00144f;
}

.secondary-button{
    width:100%;
    margin-bottom:10px;
    padding:12px;
    border:1px solid var(--blue);
    border-radius:10px;
    background:#fff;
    color:var(--blue);
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.secondary-button:hover{
    background:var(--blue);
    color:#fff;
}

/* =====================
   Step form
===================== */

.step-progress{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:10px 0 22px;
}

.step-dot{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#eef3fb;
    color:var(--blue);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.step-dot.active{
    background:var(--blue);
    color:#fff;
}

.form-step{
    display:none;
}

.form-step.active{
    display:block;
}

.step-buttons{
    display:flex;
    gap:10px;
    margin-top:12px;
}

.step-btn{
    flex:1;
    padding:13px;
    border-radius:12px;
    border:0;
    font-weight:700;
    cursor:pointer;
}

.step-btn.primary{
    background:var(--blue);
    color:#fff;
}

.step-btn.secondary{
    background:#eef3fb;
    color:var(--blue);
}

/* =====================
   Uploads
===================== */

.logo-upload-button{
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px;
    border-radius:14px;
    background:var(--blue);
    color:#fff !important;
    font-weight:700;
    cursor:pointer;
}

.logo-upload-button input,
.gallery-dropzone input{
    display:none;
}

.logo-upload-button:hover{
    background:var(--blue2);
}

.gallery-dropzone{
    display:flex !important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:150px;
    padding:20px;
    border:2px dashed var(--blue);
    border-radius:18px;
    background:#f5f7fb;
    color:var(--blue);
    text-align:center;
    cursor:pointer;
    transition:.2s;
}

.gallery-dropzone i{
    font-size:34px;
    color:var(--red);
}

.gallery-dropzone span,
.gallery-dropzone small{
    color:#555;
}

.gallery-dropzone.dragover{
    background:#eef3fb;
    border-color:var(--red);
    transform:scale(1.01);
}

/* =====================
   Verify box
===================== */

#verifyBox{
    width:100%;
    max-width:420px;
    background:#fff;
    padding:25px;
    border-radius:18px;
}

#verifyBox h3{
    margin-top:0;
    font-size:24px;
    color:var(--blue);
}

/* =====================
   Markers & popups
===================== */

.marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--marker-colour, #1976d2);
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.marker i{
    font-size:18px !important;
    line-height:1 !important;
}

.mapboxgl-popup{
    max-width:min(90vw,300px) !important;
}

.mapboxgl-popup-content{
    padding:12px !important;
    border-radius:14px !important;
    border-top:4px solid var(--red);
}
.user-location-popup {font-family: 'Plus Jakarta Sans', Verdana, sans-serif;}
.popup-card{
    width:100%;
    min-width:220px;
    max-width:280px;
}
.popup-category a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.popup-category a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {

    .popup-logo {
        height: 60px;
        margin-bottom: 8px;
    }

    .popup-logo img {
        object-fit: contain;
        padding: 4px;
    }

}
.popup-logo{
    width:100%;
    aspect-ratio:16/9;
    overflow:hidden;
    border-radius:10px;
    background:#fff;
    margin-bottom:10px;
    border:1px solid #eee;
}

.popup-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:8px;
    display:block;
}

.popup-card h3{
    margin:0 0 6px;
    font-size:18px;
    color:var(--blue);
}

.popup-category{
    display:inline-block;
    background:var(--red);
    color:#fff;
    padding:4px 8px;
    font-size:12px;
    margin-bottom:8px;
}

.popup-card p{
    margin:6px 0;
    font-size:13px;
    color:#555;
}

.popup-button{
    display:block;
    margin-top:10px;
    text-align:center;
    background:var(--blue);
    color:#fff !important;
    text-decoration:none;
    padding:10px;
    border-radius:10px;
    font-weight:700;
}

/* =====================
   Nearby panel
===================== */

.nearby-list{
    display:grid;
    gap:12px;
}

.nearby-item{
    display:flex;
    gap:10px;
    padding:2px 4px;      
    text-decoration:none;
    color:#111;
    /*border-left:4px solid var(--blue);
	background:#f5f7fb; 
	border-radius:12px;  */
}

.nearby-logo{
    width:60px;
    height:60px;
    overflow:hidden;
    border-radius:10px;
    background:#fff;
    flex-shrink:0;
}

.nearby-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.nearby-title{
    font-weight:800;
    color:var(--blue);
}

.nearby-category{
    color:var(--red);
    font-size:13px;
    font-weight:700;
}

.nearby-phone,
.nearby-distance{
    font-size:13px;
    color:#555;
}

/* =====================
   Profile pages
===================== */
.profile-route-hero {
    position: relative;
    height: 280px;
    background: #eef3fb;
}

#profileRouteMap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.profile-route-loading {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    background: rgba(255,255,255,.92);
    color: #012169;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,.14);
}

.profile-route-hero.route-loaded .profile-route-loading {
    display: none;
}
.profile-page{
    background:#f5f7fb;
    min-height:100vh;	
	padding-top:22px;
}

.profile-wrap{
    max-width:1160px;
    margin:0 auto;
}

.profile-back{
    display:inline-flex;
    align-items:center;

    gap:7px;
    color:#111;
    text-decoration:none;
    font-weight:700;
    background:#fff;
    padding:10px 14px;
    border-radius:12px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    margin-bottom:16px;
}

.profile-card,
.profile-box{
    background:#fff;
    border-radius:22px;
    box-shadow:0 8px 24px rgba(1,33,105,.08);
}

.profile-card{
    overflow:hidden;
}

.profile-hero{
    height:280px;
    background:linear-gradient(135deg,#111,#333);
    overflow:hidden;
}

.profile-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.profile-hero.no-image{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:54px;
}

.profile-content{
    padding:26px;
}

.profile-title-row{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
}

.profile-title{
    margin:0;
    font-size:36px;
    line-height:1.1;
}

.profile-category{
    display:inline-block;
    margin:12px 0 14px;
    padding:7px 13px;
    border-radius:999px;
    background:var(--red) !important;
    color:#fff !important;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
}

.profile-rating{
    background:var(--blue);
    color:#fff;
    padding:10px 14px;
    border-radius:14px;
    font-weight:700;
    white-space:nowrap;
}

.profile-description{
    line-height:1.65;
    color:#333;
    max-width:850px;
    margin-top:6px;
}

.profile-actions{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:18px;
}

.profile-actions a{
    display:inline-flex;
    align-items:center;
    gap:7px;
    text-decoration:none;
    border-radius:11px;
    padding:11px 14px;
    font-weight:700;
    font-size:14px;
}

.profile-action-dark{
    background:var(--blue);
    color:#fff;
}

.profile-action-blue{
    background:var(--red);
    color:#fff;
}

.profile-action-light{
    background:#eef3fb;
    color:var(--blue);
}

.profile-grid{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);
    gap:22px;
    margin-top:24px;
}

.profile-box{
    padding:18px;
}

.profile-box h3{
    margin:0 0 12px;
    font-size:20px;
}

.profile-contact p{
    margin:0 0 14px;
    overflow-wrap:anywhere;
    line-height:1.45;
}

.profile-contact a{
    color:var(--blue);
    font-weight:700;
    text-decoration:none;
}

.profile-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
    gap:12px;
    margin-top:12px;
}

.profile-gallery a{
    display:block;
    height:125px;
    border-radius:14px;
    overflow:hidden;
    background:#eaeaea;
}

.profile-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.profile-title-logo {
    width: 150px;
    height: 90px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.profile-title-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

@media(max-width:768px){
    .profile-title-logo {
        width: 100%;
        height: 120px;
    }
}
.route-van-marker {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #012169;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    font-size: 16px;
}
.review-card{
    background:#fff;
    border-radius:14px;
    padding:14px;
    margin-bottom:12px;
    border:1px solid #eee;
}

.review-stars{
    color:#f39c12;
    font-weight:700;
    margin-bottom:7px;
}

.review-form input,
.review-form select,
.review-form textarea{
    width:100%;
    margin-bottom:10px;
    padding:12px;
    border-radius:11px;
    border:1px solid #ddd;
    font-size:14px;
}

.review-form textarea{
    min-height:100px;
    resize:vertical;
}

.social-links{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:8px;
}

.social-links a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}
.popup-actions {
    position: relative;
    margin-top: 10px;
}

.popup-action-toggle {
    width: 100%;
    cursor: pointer;
}

.popup-action-menu {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.popup-action-menu.is-open {
    display: block;
}

.popup-action-menu button {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
}

.popup-action-menu button:hover {
    background: #f5f5f5;
}

.vlh-action-form {
    width: 100%;
    max-width: 520px;
    padding: 10px;
}

.vlh-action-form label {
    display: block;
    margin-top: 12px;
    font-weight: 700;
}

.vlh-action-form input,
.vlh-action-form textarea,
.vlh-action-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.vlh-action-form textarea {
    min-height: 100px;
}

.vlh-submit-action {
    margin-top: 15px;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    padding: 12px;
    font-weight: 700;
}
/* =====================
   Category pages
===================== */

.category-page{
    background:#f5f7fb;
    min-height:100vh;    
}

.category-wrap{
    max-width:1180px;
    margin:0 auto;
    padding:22px;
}

.category-back{
    display:inline-flex;
    align-items:center;
    margin-bottom:18px;
    padding:10px 14px;
    border-radius:12px;
    background:#fff;
    color:var(--blue);
    font-weight:700;
    text-decoration:none;
    box-shadow:0 3px 12px rgba(1,33,105,.08);
}

.category-hero{
    background:linear-gradient(135deg,var(--blue),var(--blue2));
    color:#fff;
    padding:34px;
    border-radius:24px;
    margin-bottom:24px;
    box-shadow:0 8px 28px rgba(1,33,105,.18);
    position:relative;
    overflow:hidden;
}

.category-hero-icon{
    position:absolute;
    right:20px;
    bottom:10px;

    font-size:72px;
    color:rgba(255,255,255,.12);

    pointer-events:none;
}

.category-hero h1{
    margin:0;
    font-size:38px;
    line-height:1.1;
}

.category-hero p{
    margin:10px 0 0;
    color:rgba(255,255,255,.86);
    font-weight:700;
}

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

.category-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    color:#111;
    box-shadow:0 5px 18px rgba(1,33,105,.08);
    transition:.18s;
}

.category-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 28px rgba(1,33,105,.14);
}

.category-card-top{
    height:160px;
    background:#eef3fb;
    overflow:hidden;
}

.category-card-top img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.category-placeholder{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--blue),var(--red));
    color:#fff;
    font-size:48px;
}

.category-card-body{
    padding:17px;
}

.category-card-title{
    display:flex;
    justify-content:space-between;
    gap:8px;
}

.category-card-title h2{
    margin:0;
    font-size:20px;
    line-height:1.2;
}

.category-card-title span{
    background:var(--red);
    color:#fff;
    border-radius:999px;
    padding:5px 8px;
    font-size:11px;
    font-weight:700;
}

.category-description{
    color:#444;
    font-size:14px;
    line-height:1.45;
    margin:12px 0;
}

.category-meta{
    margin:12px 0 0;
    color:#666;
    font-size:13px;
    line-height:1.45;
}

.category-empty{
    background:#fff;
    border-radius:20px;
    padding:34px;
    text-align:center;
    box-shadow:0 5px 18px rgba(1,33,105,.08);
}
	.profile-meta-tags {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		align-items: center;
		margin-top: 8px;
	}
	
	.profile-locatag {
		display: inline-flex;
		align-items: center;
		gap: 4px;
		padding: 6px 10px;
		border-radius: 999px;
		background: #f1f3f5;
		color: #333;
		font-size: 13px;
		font-weight: 600;
		text-decoration: none;
	}
	
	.profile-locatag:hover {
		background: #111;
		color: #fff;
	}
	
	.profile-locatag span {
		opacity: 0.7;
	}	
/* =====================
   Responsive
===================== */

@media(max-width:900px){
    .topbar{
        flex-wrap:wrap;
    }

    .search-wrap{
        order:3;
        flex-basis:100%;
        max-width:none;
    }

    .topbar-actions{
        margin-left:auto;
    }

    .topbar-btn span{
        display:none;
    }

    .topbar-btn{
        width:42px;
        height:42px;
        justify-content:center;
        padding:0;
    }
}

@media(max-width:768px){
    .topbar{
        left:10px;
        right:10px;
        align-items:stretch;
    }

    .brand{
        font-size:14px;
        padding:10px 12px;
    }

    .panel{
        top:120px;
        right:0;
        left:0;
        bottom:0;
        width:100%;
        max-width:100%;
        max-height:85vh;
        border-radius:20px 20px 0 0;
        animation:slideUp .25s ease;
    }

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

    .near-me,
    .add-business{
        width:54px;
        height:54px;
    }


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

    .profile-hero{
        height:200px;
    }

    .profile-content{
        padding:18px;
    }

    .profile-title{
        font-size:28px;
    }

    .profile-actions a{
        width:100%;
        justify-content:center;
    }
	.profile-contact-unavailable{
		text-align:center;
	}
	
	.contact-unavailable-icon{
		width:72px;
		height:72px;
	
		margin:0 auto 15px;
	
		border-radius:50%;
	
		display:flex;
		align-items:center;
		justify-content:center;
	
		background:#eef3fb;
		color:#E4002B;
	
		font-size:32px;
	}
	
	.profile-contact-unavailable h3{
		margin-bottom:10px;
	}
	
	.profile-contact-unavailable p{
		color:#666;
		line-height:1.6;
		max-width:420px;
		margin:0 auto 18px;
	}

	.contact-phone-button{
		display:inline-flex;
		align-items:center;
		gap:8px;
	
		padding:12px 18px;
	
		border-radius:12px;
	
		background:#012169;
		color:#fff !important;
	
		text-decoration:none;
		font-weight:700;
	}
	
	.contact-phone-button:hover{
		background:#00144f;
	}
    .category-wrap{
        padding:12px;
    }

    .category-hero{
        padding:24px;
        border-radius:18px;
    }

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

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

@media(max-width:520px){
    .profile-hero{
        height:165px;
    }

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

    .profile-gallery{
        grid-template-columns:repeat(2,1fr);
        gap:9px;
    }

    .profile-gallery a{
        height:105px;
    }
}
.profile-hero.no-image{
    position:relative;
    background:#eef3fb;
}

.imported-badge{
    position:absolute;
    top:15px;
    right:15px;

    display:flex;
    align-items:center;
    gap:6px;

    background:rgba(1,33,105,.92);
    color:#fff;

    padding:8px 12px;
    border-radius:999px;

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

    backdrop-filter:blur(4px);
}
/* =====================
   Categories
===================== */


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

.category-tile{
    background:#fff;
    border-radius:18px;
    padding:24px;
    text-decoration:none;
    color:#111;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.2s;
}

.category-tile:hover{
    transform:translateY(-4px);
}

.category-icon{
    font-size:34px;
    color:#012169;
    margin-bottom:12px;
}

.category-name{
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

.category-count{
    color:#E4002B;
    font-weight:700;
}
.tag-search-form{
    display:flex;
    align-items:center;
    gap:8px;
    width:100%;
}

.tag-box{
    flex:1;
    min-height:48px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:6px;
    padding:6px 10px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 26px rgba(1,33,105,.16);
}

.tag-box input{
    flex:1;
    min-width:150px;
    border:0;
    outline:0;
    font-size:14px;
    padding:8px;
}

.search-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#eef3fb;
    color:#012169;
    border-radius:999px;
    padding:7px 10px;
    font-size:13px;
    font-weight:700;
}

.search-tag button{
    border:0;
    background:none;
    color:#E4002B;
    cursor:pointer;
    font-weight:800;
}

.tag-search-button{
    width:48px;
    height:48px;
    border:0;
    border-radius:16px;
    background:#E4002B;
    color:#fff;
    cursor:pointer;
}
.shared-user-marker {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #E4002B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
    cursor: pointer;
    font-size: 15px;
	z-index: 9999;
    position: relative;
}

.share-location-button {
    border: 0;
    border-radius: 999px;
    background: #012169;
    color: #fff;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
}
.geocoder-button-only{
    width:44px;
    min-width:44px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.geocoder-button-only .geomarker{
    position:relative !important;
    right:auto !important;
    top:auto !important;
    transform:none !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
}
.vlh-share-location-form {
    max-width: 420px;
    padding: 10px;
}

.vlh-share-location-form h2 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #012169;
}

.vlh-share-location-form p {
    margin: 0 0 20px;
    color: #666;
    line-height: 1.5;
}

.vlh-share-location-form label {
    display: block;
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.vlh-share-location-form input,
.vlh-share-location-form textarea {
    width: 100%;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    transition: all .2s ease;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.vlh-share-location-form input:focus,
.vlh-share-location-form textarea:focus {
    outline: none;
    border-color: #012169;
    box-shadow: 0 0 0 4px rgba(1,33,105,.12);
}

.vlh-share-location-form textarea {
    min-height: 90px;
    resize: vertical;
}

.vlh-share-location-form .btn-danger {
    width: 100%;
    border: 0;
    padding: 8px;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #E4002B,
        #c20024
    );
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

.vlh-share-location-form .btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(228,0,43,.25);
}

.vlh-share-location-form .btn-danger:active {
    transform: translateY(0);
}

.vlh-share-location-form::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: rgba(1,33,105,.08);
    color: #012169;
    font-size: 24px;
}
.mapboxgl-popup {
    z-index: 40;
}

.mapboxgl-popup-content {
    max-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,.25);
    font-size: 14px;
    line-height: 1.4;
}

.popup-card h3 {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 8px;
}

.popup-card p {
    margin: 6px 0;
    word-break: break-word;
}

.popup-card a {
    word-break: break-word;
}

.topbar,
.header,
.search-wrap {
    z-index: 80;
}
.mapboxgl-popup-content .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
	margin-bottom:5px;
}
@media (max-width: 768px) {
    .mapboxgl-popup {
        z-index: 60;
    }

    .mapboxgl-popup-content {
        max-width: calc(100vw - 28px);
        max-height: calc(100vh - 150px);
        margin-top: 90px;
        font-size: 13px;
    }

    .mapboxgl-popup-anchor-top .mapboxgl-popup-content,
    .mapboxgl-popup-anchor-top-left .mapboxgl-popup-content,
    .mapboxgl-popup-anchor-top-right .mapboxgl-popup-content {
        margin-top: 110px;
    }

    .topbar {
        z-index: 120;
    }
}
@media (max-width: 768px) {

    body.keyboard-open .fancybox__slide {
        align-items: flex-start !important;
        padding-top: 20px !important;
        padding-bottom: 45vh !important;
        overflow-y: auto !important;
    }

    body.keyboard-open .fancybox__content {
        transform: translateY(-20px);
        transition: transform .25s ease;
    }

    .vlh-share-location-form input,
    .vlh-share-location-form textarea,
    .vlh-action-form input,
    .vlh-action-form textarea,
    .vlh-action-form select {
        font-size: 16px;
    }
}
@media all and (min-width:1024px) {

    .fancybox__content > .carousel__button.is-close {
        right: 1em !important;
        top: 1em !important;
        color: #000 !important;
    }

}
.shared-user-popup {
    min-width: 220px;
    max-width: 280px;
}

.shared-user-header {
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.shared-user-header i {
    font-size:22px;
    color:#E4002B;
}

.shared-user-header h3 {
    margin:0;
    font-size:18px;
    font-weight:700;
}

.shared-user-message {
    background:#f5f5f5;
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
    word-break:break-word;
}

.shared-user-footer {
    font-size:12px;
    color:#666;
}
.vlh-share-location-form input,
.vlh-share-location-form textarea {
    font-size: 16px;
    width: 100%;
    touch-action: manipulation;
    -webkit-user-select: text;
    user-select: text;
}

.vlh-share-location-form textarea {
    min-height: 110px;
}
.mapboxgl-popup-close-button {font-size:2em; top:-10px !important}
.user-step-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 22px;
}

.user-step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef3fb;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-step-dot.active {
    background: var(--blue);
    color: #fff;
}

.user-form-step {
    display: none;
}

.user-form-step.active {
    display: block;
}
.tag-profile-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #E4002B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-left: 8px;
    transition: all .2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.tag-profile-button:hover {
    color: #fff;
    transform: scale(1.05);
}

.tag-profile-button {
    background: #E4002B;
    border: 3px solid #fff;
}