/* ===== Base ===== */
:root{
--bg: #f6f7fb;
--card: #ffffff;
--text: #0f172a;
--muted: #64748b;
--line: #e5e7eb;

--brand: #0f172a; /* dark navy */
--brand2:#2563eb; /* blue */
--good:#16a34a;
--warn:#f59e0b;
--bad:#ef4444;

--radius: 18px;
--shadow: 0 12px 30px rgba(2,6,23,.08);
--shadow2: 0 10px 18px rgba(2,6,23,.10);

/* Belushi-ish accents */
--nav-black:#0b0b0b;
--action-red:#e10600;
--action-red-dark:#b10500;
}

*{ box-sizing:border-box; }
html,body{
height:100%;
background-color:#000;
}

body{
margin:0;
font-family: "Anton", Inter, system-ui, sans-serif;
color: var(--text);
background:
radial-gradient(1200px 600px at 30% -10%, rgba(37,99,235,.12), transparent 60%),
radial-gradient(900px 500px at 90% 0%, rgba(15,23,42,.10), transparent 55%),
var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width:100%; display:block; }
button, input, select, textarea{ font-family: inherit; }

.container{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
}

/* =======================================================================
BIG BELUSHI-STYLE HERO
======================================================================= */
.hero-big{
position: relative;
width: 100%;
min-height: 520px;
display: grid;
place-items: center;
overflow: hidden;
border-bottom: 4px solid rgba(0,0,0,.6);
}
.hero-big__bg{
position:absolute;
inset:0;
background: url("../img/hero3.png") center/cover no-repeat;
transform: scale(1.02);
}
.hero-big__overlay{
position:absolute;
inset:0;
background:
linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25)),
radial-gradient(900px 500px at 30% 40%, rgba(0,0,0,.35), transparent 60%);
}
.hero-big__inner{
position:relative;
z-index:2;
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
padding: 46px 0;
color:#fff;
}
.hero-big__kicker{
font-size: 18px;
letter-spacing: .18em;
text-transform: uppercase;
opacity: .95;
margin-bottom: 14px;
}
.hero-big__title{
margin: 0 0 10px;
font-size: clamp(40px, 4.2vw, 74px);
line-height: 1.02;
letter-spacing: .10em;
text-transform: uppercase;
}
.hero-big__titleAccent{
display:inline-block;
padding: 4px 10px;
background: #000;
border: 2px solid #fff;
border-radius: 0;
}
.hero-big__sub{
margin: 0 0 18px;
max-width: 720px;
font-size: 16px;
opacity: .92;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
letter-spacing: 0;
text-transform: none;
}
.hero-big__actions{
display:flex;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 16px;
}
.hero-big__cta{
border-radius: 0;
border: 2px solid #000;
background: #fff;
color:#000;
padding: 12px 18px;
font-weight: 900;
cursor:pointer;
box-shadow:none;
}
.hero-big__cta:hover{ background:#f2f2f2; }
.hero-big__cta:active{ transform: translateY(1px); }
.hero-big__cta--ghost{
background: transparent;
color:#fff;
border-color:#fff;
}
.hero-big__cta--ghost:hover{
background:#fff;
color:#000;
}
.hero-big__search{
display:flex;
gap: 10px;
align-items:center;
width: min(720px, 100%);
background: rgba(255,255,255,.92);
border: 1px solid rgba(0,0,0,.25);
padding: 10px;
}
.hero-big__search input{
width: 100%;
border: 0;
outline: 0;
padding: 10px 10px;
font-weight: 700;
background: transparent;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.hero-big__search button{
border-radius: 0;
border: 2px solid #000;
background:#fff;
color:#000;
padding: 10px 14px;
font-weight: 900;
cursor:pointer;
}
.hero-big__search button:hover{ background:#f2f2f2; }
.hero-big__search button:active{ transform: translateY(1px); }

@media (max-width: 820px){
.hero-big{ min-height: 420px; }
.hero-big__inner{ padding: 32px 0; }
.hero-big__kicker{ font-size: 14px; }
.hero-big__sub{ font-size: 14px; }
}

/* =======================================================================
DEALS CONTROLS ROW (BELUSHI SHARP STYLE)
======================================================================= */
.deals-controls{
background: #fff;
border-bottom: 2px solid #000;
}
.deals-controls__inner{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
padding: 14px 0;
display:flex;
align-items:center;
gap: 12px;
flex-wrap: wrap;
}
.bd-group{
display:flex;
gap: 12px;
align-items:center;
flex-wrap: wrap;
}
.bd-btn{
min-width: 140px;
height: 44px;
padding: 0 18px;

border: 2px solid #000;
background: #fff;
color: #000;

font-family: "Anton", sans-serif;
font-size: 14px;
letter-spacing: .10em;
text-transform: uppercase;

border-radius: 0;
cursor: pointer;
box-shadow: none;

display: inline-flex;
align-items: center;
justify-content: center;
line-height: 1;
}
.bd-btn:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.bd-btn:active{ transform: translateY(1px); }
.bd-btn--active{
background: #000;
color:#fff;
border-color:#000;
}
.bd-selectWrap{
display:flex;
align-items:center;
gap: 10px;
margin-left: auto;
}
.bd-label{
font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
font-weight: 900;
font-size: 13px;
}
.bd-select{
height: 44px;
border-radius: 0;
border: 2px solid #000;
background:#fff;
padding: 0 12px;
font-weight: 900;
font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
outline: none;
}
.bd-select:focus{
box-shadow: 0 0 0 3px rgba(225,6,0,.25);
border-color: var(--action-red);
}

/* IMPORTANT: kill any legacy rounded chip style inside deals controls */
.deals-controls .chip{
border-radius: 0 !important;
box-shadow: none !important;
}

@media (max-width: 820px){
.bd-selectWrap{ margin-left: 0; width: 100%; }
.bd-select{ width: 100%; }
}

/* =========================
BELUSHI POSTER CARD
========================= */
.deal--poster{
border: 0;
width: 100%;
background: transparent;
padding: 0;
display: block;
}

.deal--poster .deal-inner{
background: #f6f1e9; /* paper */
width: 100%;
box-sizing: border-box;
max-width: none;
border: 4px solid #0b0b0b; /* outer black */
outline: 2px solid rgba(0,0,0,.35); /* subtle double-line */
outline-offset: -10px;

padding: 18px 18px 16px;
position: relative;

/* poster texture vibe without heavy effects */
background-image:
radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
background-size: 22px 22px, 34px 34px;
background-position: 0 0, 10px 14px;
}

.deal--poster .deal-top{
display:flex;
align-items:center;
justify-content:space-between;
gap: 12px;
margin-bottom: 12px;
}

/* Status badge */
.deal-status{
display:inline-flex;
align-items:center;
gap: 10px;

border: 3px solid #0b0b0b;
background: transparent;
padding: 8px 12px;

font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
font-size: 16px;
line-height: 1;
}

.deal-status .dot{
width: 16px;
height: 16px;
border-radius: 999px;
border: 2px solid #0b0b0b;
background: #16a34a; /* default = open */
}

/* open / soon / closed colors (no shadows) */
.deal-status--open .dot{ background:#16a34a; }
.deal-status--soon .dot{ background:#f59e0b; }
.deal-status--closed .dot{ background:#ef4444; }

/* Title + text */
.deal-title{
margin: 0 0 6px;
font-family: "Anton", sans-serif;
letter-spacing: .06em;
text-transform: uppercase;
font-size: 34px;
line-height: 1.05;
color: #0b0b0b;
}

.deal-when{
font-family: Inter, system-ui, sans-serif;
font-weight: 900;
font-size: 18px;
color: #111;
margin-bottom: 10px;
}

.deal-offer{
font-family: Inter, system-ui, sans-serif;
font-weight: 900;
font-size: 22px;
color: #0b0b0b;
line-height: 1.25;
margin-bottom: 12px;
}

.deal-loc{
display:flex;
align-items:center;
flex-wrap: wrap;
gap: 8px;

font-family: Inter, system-ui, sans-serif;
font-weight: 800;
color: rgba(0,0,0,.72);
font-size: 16px;
margin-bottom: 10px;
}

.deal-loc .pin{ font-size: 18px; }
.deal-loc .sep{ opacity: .6; }
.deal-loc .dist{ color: rgba(0,0,0,.72); }

/* Directions link */
.deal-dir{
display:inline-flex;
align-items:center;
gap: 10px;

font-family: Inter, system-ui, sans-serif;
font-weight: 900;
font-size: 18px;

color: #0b0b0b;
text-decoration:none;
}
.deal-dir:hover{ text-decoration: underline; }

/* VIEW button like Belushi */
.go--poster{
border-radius: 0;
border: 3px solid #0b0b0b;
background: #0b0b0b;
color:#fff;

padding: 12px 18px;
min-width: 110px;

font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
box-shadow: none;
}

.go--poster:hover{
background: var(--action-red);
border-color: var(--action-red);
}

/* Make poster card responsive */
@media (max-width: 820px){
.deal-title{ font-size: 28px; }
.deal-offer{ font-size: 18px; }
.deal-status{ font-size: 14px; }
.go--poster{ min-width: 96px; padding: 10px 14px; }
}


/* =======================================================================
NAVBAR (BELUSHI BLACK) + MOBILE BURGER
======================================================================= */
.dark-nav{
position: sticky;
top: 0;
z-index: 1200;
background: var(--nav-black);
border-bottom: 1px solid rgba(255,255,255,.08);
backdrop-filter: blur(6px);
height:88px;
display:flex;
align-items:center;
}
.nav-inner{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
padding: 14px 0;
position: relative;
}
.nav-logo{
justify-self: center;
display:flex;
align-items:center;
justify-content:center;
gap: 0px;
font-size: 30px;
font-weight: 650;
letter-spacing: -0.035em;
color:#ffffff;
text-transform: uppercase;
line-height: 1;
}
.nav-logo,
.go,
.btn,
.bn-item,
.nav-links a,
.action-text,
.action-btn{
font-family: "Anton", sans-serif;
letter-spacing: .08em;
text-transform: uppercase;
}
.logo-strong{ font-weight: 720; opacity: .98; }
.logo-light{ font-weight: 620; opacity: .92; }
.nav-icon{
width: 132px;
height: 132px;
object-fit: contain;
display: block;
margin: 0 2px;
opacity: .96;
}
.nav-links{
justify-self: end;
display:flex;
gap: 20px;
align-items:center;
}
.nav-links a{
color:#fff;
font-weight: 800;
font-size: 16px;
opacity: .9;
padding: 8px 6px;
border-radius: 12px;
}
.nav-links a:hover{
opacity: 1;
text-decoration: underline;
}
.nav-burger{
display:none;
justify-self: end;
width: 44px;
height: 44px;
border: 1px solid rgba(255,255,255,.18);
background: transparent;
border-radius: 0;
cursor:pointer;
padding: 10px;
}
.nav-burger span{
display:block;
height: 2px;
width: 100%;
background: #fff;
margin: 6px 0;
transition: transform .18s ease, opacity .18s ease;
}
.nav-burger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity: 0; }
.nav-burger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-menu{
display:none;
background: #0b0b0b;
border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a{
display:block;
color:#fff;
padding: 14px 16px;
font-size: 16px;
letter-spacing: .10em;
border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:active{ background: rgba(255,255,255,.06); }
.mobile-menu.is-open{ display:block; }

/* =======================================================================
RED ACTION BAR
======================================================================= */
.action-bar{
background: var(--action-red);
border-bottom: 3px solid var(--action-red-dark);
padding: 10px 0;
}
.action-inner{
max-width:1120px;
margin:0 auto;
padding:10px 16px;
display:flex;
align-items:center;
justify-content:space-between;
gap: 12px;
}
.action-text{
color:#fff;
font-weight:900;
font-size:20px;
letter-spacing:.12em;
text-transform:uppercase;
}
.action-btn{
background:#ffffff;
color:#000;
border:2px solid #000;
padding:8px 18px;
font-weight:900;
font-size:13px;
letter-spacing:.08em;
cursor:pointer;
border-radius:0;
box-shadow:none;
min-width: 90px;
text-align:center;
}
.action-btn:hover{ background:#f5f5f5; }
.action-btn:active{ transform: translateY(1px); background:#ededed; }

/* =======================================================================
HOME CATEGORIES (SHARP)
======================================================================= */
.home-top{ margin: 14px 0 10px; display: grid; gap: 12px; }

.home-cats{
display:flex;
gap:10px;
overflow-x:auto;
padding-bottom:8px;
scrollbar-width: none;
}
.home-cats::-webkit-scrollbar{ display:none; }

.home-cat{
flex:0 0 auto;
padding:10px 16px;
border:2px solid #000;
background:#fff;
color:#000;
font-family:"Anton", sans-serif;
font-size:13px;
letter-spacing:.08em;
text-transform:uppercase;
cursor:pointer;
border-radius:0;
box-shadow:none;
white-space:nowrap;
}
.home-cat:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.home-cat.active{ transform: translateY(1px); }

/* =======================================================================
FEATURED (Belushi strip)
======================================================================= */
.home-featured{ margin: 10px 0 16px; }

.home-rowhead{
display:flex;
align-items:baseline;
justify-content:space-between;
gap:12px;
margin:0 0 10px;
}
.home-rowhead h2{ 
margin:0;
font-family: "Anton", sans-serif;
font-size:26px;
letter-spacing: .12em;
text-transform: uppercase;

color: #000;
text-decoration: none;
border: 2px solid #000;
padding: 10px 14px;
border-radius: 0;
background: #fff;
font-weight: 900;
}
.home-rowhead a:hover{ color: #fff; border-color: var(--action-red); background: var(--action-red); }

.belu-track{
display:flex;
gap: 0;
overflow-x: auto;
border-top: 4px solid #060606;
background: #e10600;
padding: 18px 18px;
scroll-snap-type: x mandatory;
}
.belu-track::-webkit-scrollbar{ height: 8px; }
.belu-track::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.25); }

.featured-card{
flex: 0 0 auto;
width: 380px;
height: 320px;
position: relative;
overflow: hidden;
background: #000;
border-left: 4px solid;
scroll-snap-align: start;
cursor: pointer;
border-radius: 0;
}
.featured-card:first-child{ border-left: 0; }

.featured-img{
position:absolute;
inset:0;
background-size: cover;
background-position: center;
transform: scale(1.02);
}
.featured-img::after{
content:"";
position:absolute;
inset:0;
background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.10) 100%);
}
.featured-body{
position:absolute;
left:0; right:0; bottom:0;
padding: 18px 18px 16px;
background: rgba(0,0,0,.92);
border-top: 4px solid #7a0b0b;
display:flex;
align-items:flex-end;
justify-content: space-between;
gap: 16px;
}
.featured-name{
color:#fff;
font-family:"Anton", sans-serif;
text-transform: uppercase;
letter-spacing: .08em;
font-size: 20px;
line-height: 1.05;
margin:0;
}
.featured-sub{ display:none; }
.featured-pill{ display:none; }

.featured-body::after{
content:"→";
width: 44px;
height: 44px;
display:grid;
place-items:center;
color: var(--action-red);
font-size: 34px;
line-height: 1;
transform: translateY(2px);
}
.featured-card:hover .featured-img{
transform: scale(1.06);
transition: transform .25s ease;
}
.featured-card:hover .featured-body{
background: rgba(0,0,0,.96);
}
.featured-dots{
display:none;
justify-content:center;
gap: 10px;
margin-top: 12px;
}
.featured-dot{
width: 10px;
height: 10px;
border-radius: 999px;
background: rgba(0,0,0,.18);
border: 2px solid rgba(0,0,0,.22);
}
.featured-dot.is-active{
background: var(--action-red);
border-color: var(--action-red);
}

/* =======================================================================
LAYOUT (LIST LEFT, MAP RIGHT) + SHARP
======================================================================= */
.layout{
display:grid;
grid-template-columns: 420px 1fr; /* list fixed | map fill (when map visible) */
gap: 16px;
align-items:start;
width: 100%;
max-width: 1120px;
margin: 0 auto;
padding: 18px 0 18px;
}

/* IMPORTANT for CSS grid so map can shrink properly */
.map-card{ min-width: 0; }

/* SHARP CARDS */
.map-card, .list-card{
border-radius: 0;
border: 2px solid #000;
background:#0a0a0a;
box-shadow:none;
overflow:hidden;
}

/* MAP (✅ FIXED: apply filter to tile pane, NOT the pane height) */
#map{
width: 100%;
height: 620px; /* desktop height */
min-height: 620px; /* prevents “map disappeared” */
}
#map .leaflet-tile-pane{
filter: none;
}

/* ✅ Make sure markers + popups are NOT filtered */
#map .leaflet-marker-pane,
#map .leaflet-shadow-pane,
#map .leaflet-popup-pane{
filter: none !important;
}

/* ✅ Remove Leaflet default marker shadow globally */
.leaflet-marker-shadow,
.leaflet-shadow-pane{
display:none !important;
}

.map-hint{
padding: 12px 14px;
color: var(--card);
font-weight:100;
font-size: small;
border-top: 2px solid #000;
background: #0b0b0b;
}

/* LIST */
.list-card{
height: 620px;
display:flex;
flex-direction: column;
}
.list-head{
display:flex;
align-items: baseline;
justify-content: space-between;
gap: 10px;
padding: 14px 14px 10px;
border-bottom: 2px solid #000;
background:#fafafa;
}
.list-head h2{
margin:0;
font-size: 18px;
font-family:"Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
}
.muted{
color: var(--bg);
font-weight: lighter;
font-size: 13px;
padding-left: 1px;
}
.deal-list{
padding: 12px;
display:flex;
flex-direction: column;
gap: 10px;
flex: 1;
overflow:auto;
}
.deal{
display:flex;
align-items: stretch;
justify-content: space-between;
gap: 12px;

border: 2px solid #000;
background: #fff;
border-radius: 0;
padding: 12px 12px;
box-shadow:none;
}
.deal .meta{ min-width: 0; }
.deal h3{
margin: 2px 0 4px;
font-size: 15px;
letter-spacing: -.01em;
font-weight: 900;
}
.time{
font-weight: 900;
color: rgba(15,23,42,.78);
font-size: 12px;
margin-bottom: 6px;
}
.price{
font-weight: 800;
color: var(--text);
font-size: 13px;
line-height: 1.25;
}
.small{
margin-top: 6px;
color: var(--muted);
font-weight: 700;
font-size: 12px;
}
.go{
flex: 0 0 auto;
border-radius: 0;
border: 2px solid #000;
background: #000;
color:#fff;
font-weight: 900;
padding: 10px 12px;
cursor:pointer;
box-shadow:none;
align-self: center;
}
.go:hover{ background: var(--action-red); border-color: var(--action-red); }
.go:active{ transform: translateY(1px); }

/* =========================
BADGES: FLAT (no shadow/3D)
========================= */
.badge{
display:inline-flex;
align-items:center;
gap: 8px;
padding: 6px 10px;
border: 2px solid #000;
border-radius: 0;
box-shadow:none !important;
background:#fff;
font-weight: 900;
font-size: 12px;
letter-spacing: .08em;
text-transform: uppercase;
}

/* =======================================================================
MOBILE TOGGLE (LIST / MAP) - SHARP
======================================================================= */
.mobile-toggle{ display:none; }

.mt-btn{
min-width: 140px;
height: 44px;
padding: 0 18px;
border: 2px solid #000;
background: #fff;
color: #000;
font-family: "Anton", sans-serif;
font-size: 14px;
letter-spacing: .10em;
text-transform: uppercase;
border-radius: 0;
cursor:pointer;
box-shadow:none;
display:flex;
align-items:center;
justify-content:center;
}
.mt-btn:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.mt-btn:active{ transform: translateY(1px); }

body.mobile-show-list .mt-btn#showListBtn,
body.mobile-show-map .mt-btn#showMapBtn{
background: #000;
color:#fff;
border-color:#000;
}

/* =======================================================================
MODAL
======================================================================= */
.modal{ position: fixed; inset: 0; display:none; z-index: 2000; }
.modal.is-open{ display:block; }
.modal-backdrop{ position:absolute; inset:0; background: rgba(2,6,23,.55); }
.modal-card{
position: relative;
width: min(520px, calc(100% - 24px));
margin: 10vh auto 0;
background: #fff;
border-radius: 20px;
box-shadow: 0 30px 80px rgba(2,6,23,.35);
border: 1px solid rgba(229,231,235,.95);
overflow:hidden;
}
.modal-head{
display:flex;
justify-content: space-between;
align-items:center;
padding: 14px 16px;
border-bottom: 1px solid rgba(229,231,235,.9);
background: rgba(248,250,252,.8);
}
.modal-head h3{ margin:0; font-weight: 900; letter-spacing: -.02em; }
.modal-x{
border:none;
background: rgba(15,23,42,.06);
color: var(--text);
font-weight: 900;
border-radius: 12px;
padding: 8px 10px;
cursor:pointer;
}
.modal-form{
padding: 14px 16px 16px;
display:flex;
flex-direction: column;
gap: 10px;
}
.modal-form label{
display:flex;
flex-direction: column;
gap: 6px;
font-weight: 900;
font-size: 13px;
color: rgba(15,23,42,.86);
}
.modal-form input,
.modal-form textarea{
border: 1px solid rgba(229,231,235,.95);
border-radius: 14px;
padding: 11px 12px;
font-weight: 700;
outline:none;
background: rgba(248,250,252,.8);
}
.modal-form input:focus,
.modal-form textarea:focus{
border-color: rgba(37,99,235,.55);
box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.modal-form .btn{
width: 100%;
padding: 12px 14px;
border-radius: 14px;
}

/* =======================================================================
BOTTOM NAV (MOBILE) ✅ SHARP
======================================================================= */
.bottom-nav{
position:fixed;
left:0; right:0; bottom:0;
background:#fff;
border-top:1px solid #e5e7eb;
display:none;
gap:8px;
padding:10px 12px;
z-index:9999;
}
.bn-item{
flex:1;
border:2px solid #000;
border-radius:0;
background:#fff;
padding:10px 12px;
font-weight:900;
letter-spacing:.08em;
text-transform: uppercase;
box-shadow:none;
}
.bn-item:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.bn-primary{
border-color:#000;
background:#000;
color:#fff;
}

/* Tap feel */
button, .home-cat, .bn-item, .go { -webkit-tap-highlight-color: transparent; }

/* Leaflet popup font */
.leaflet-popup-content{
margin: 10px 12px;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =======================================================================
MAP HIDE BEHIND "MAP" BUTTON (desktop + mobile)
- your JS should toggle body class: .desktop-show-map on desktop
======================================================================= */

/* Desktop default: list-only */
@media (min-width: 821px){
body:not(.desktop-show-map) .map-card{ display:none; }
body:not(.desktop-show-map) .layout{ grid-template-columns: 1fr; }

body.desktop-show-map .map-card{ display:block; }
body.desktop-show-map .layout{ grid-template-columns: 420px 1fr; }
}

/* =======================================================================
MOBILE
======================================================================= */
@media (max-width: 820px){
/* collapse layout */
.layout{ grid-template-columns: 1fr; }
#map{ height: 52vh; min-height: 520px; }

.bottom-nav{ display:flex; box-shadow: none; }
body{ padding-bottom: 92px; }

/* Hide desktop links, show burger */
.nav-links{ display:none; }
.nav-burger{ display:block; }

/* Mobile toggle bar visible + sharp */
.mobile-toggle{
display:flex;
gap: 12px;
position: static;
top: 88px;
z-index: 1100;
background: #fff;
padding: 12px 0;
border-bottom: 2px solid #000;
}

/* show dots on featured */
.featured-dots{ display:flex; }

/* featured strip smaller */
.belu-track{ padding: 14px 12px; }
.featured-card{ width: 280px; height: 230px; }
.featured-name{ font-size: 18px; }
}

/* =======================================================================
BELUSHI-STYLE FOOTER (your <footer class="belu-footer">)
======================================================================= */
.belu-footer{
background:#050707;
color:#fff;
padding: 46px 0;
padding-bottom: 80px;
border-top: 4px solid var(--action-red);
}

.belu-footer__inner{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
display:grid;
grid-template-columns: 1fr 1fr 1fr; /* desktop: links | circle | brand */
align-items:center;
gap: 26px;
}

.belu-footer__col{ min-width: 0; }

.belu-footer__col--left a{
display:block;
font-family:"Anton", sans-serif;
letter-spacing:.08em;
text-transform: uppercase;
font-size: 18px;
padding: 8px 0;
color:#fff;
text-decoration:none;
opacity:.95;
}
.belu-footer__col--left a:hover{ opacity:1; text-decoration: underline; }

.belu-footer__smallLinks{
margin-top: 10px;
display:flex;
flex-direction: column;
gap: 6px;
}
.belu-footer__smallLinks a{
font-family: Inter, system-ui, sans-serif;
text-transform:none;
letter-spacing:0;
font-size: 12px;
opacity:.8;
padding: 0;
}

/* RIGHT: brand/contact/social */
.belu-footer__brand{
font-family:"Anton", sans-serif;
letter-spacing:.10em;
text-transform: uppercase;
font-size: 34px;
margin-bottom: 10px;
}
.belu-footer__contactTitle{
font-family: Inter, system-ui, sans-serif;
font-weight: 800;
opacity:.9;
margin-bottom: 6px;
}
.belu-footer__email{
color:#fff;
font-family: Inter, system-ui, sans-serif;
font-weight: 700;
text-decoration:none;
opacity:.9;
}
.belu-footer__email:hover{ text-decoration: underline; opacity:1; }
.belu-footer__social{
margin-top: 14px;
display:flex;
gap: 10px;
}
.belu-ico{
width: 44px;
height: 44px;
display:grid;
place-items:center;
border: 2px solid rgba(255,255,255,.22);
border-radius: 0;
font-family:"Anton", sans-serif;
letter-spacing:.08em;
color:#fff;
text-decoration:none;
opacity:.92;
}
.belu-ico:hover{
border-color: var(--action-red);
background: var(--action-red);
opacity: 1;
}

/* CENTER: circle CTA (SVG text + photo) */
.belu-circle{
position: relative;
width: 260px;
height: 260px;
display: grid;
place-items: center;
margin: 0 auto;
text-decoration:none;
color: inherit;
}
.belu-circle__svg{
position:absolute;
inset:0;
width:100%;
height:100%;
z-index: 2;
pointer-events:none;
animation: beluSpin 10s linear infinite;
}
.belu-circle__text{
fill:#fff;
font-family:"Anton", sans-serif;
letter-spacing:.14em;
font-size: 14px;
text-transform: uppercase;
}
@keyframes beluSpin{
from{ transform: rotate(0deg); }
to{ transform: rotate(360deg); }
}

.belu-circle__core{
width: 170px;
height: 170px;
border-radius: 50%;
overflow: hidden;
position: relative;
z-index: 1;
border: 2px solid rgba(255,255,255,.25);
background: #000;
}

.belu-circle__photo{
width:100%;
height:100%;
position: relative;
background: url("../logo/logo.png") center/cover no-repeat; /* ✅ your image */
}
.belu-circle__photo::after{
content:"";
position:absolute;
inset:0;
background: radial-gradient(circle, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}

/* MOBILE footer layout */
@media (max-width: 820px){
.belu-footer__inner{
display:flex;
flex-direction: column;
gap: 36px;
}
.belu-footer__col--left{
order: 1;
width: 100%;
text-align:left;
}
.belu-footer__col--center{
order: 2;
width: 100%;
display:flex;
justify-content:center;
align-items:center;
}
.belu-footer__col--right{
order: 3;
width: 100%;
text-align:left;
}
}/* ===== Base ===== */
:root{
--bg: #f6f7fb;
--card: #ffffff;
--text: #0f172a;
--muted: #64748b;
--line: #e5e7eb;

--brand: #0f172a; /* dark navy */
--brand2:#2563eb; /* blue */
--good:#16a34a;
--warn:#f59e0b;
--bad:#ef4444;

--radius: 18px;
--shadow: 0 12px 30px rgba(2,6,23,.08);
--shadow2: 0 10px 18px rgba(2,6,23,.10);

/* Belushi-ish accents */
--nav-black:#0b0b0b;
--action-red:#e10600;
--action-red-dark:#b10500;
}

*{ box-sizing:border-box; }
html,body{
height:100%;
background-color:#000;
}

body{
margin:0;
font-family: "Anton", Inter, system-ui, sans-serif;
color: var(--text);
background:
radial-gradient(1200px 600px at 30% -10%, rgba(37,99,235,.12), transparent 60%),
radial-gradient(900px 500px at 90% 0%, rgba(15,23,42,.10), transparent 55%),
var(--bg);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width:100%; display:block; }
button, input, select, textarea{ font-family: inherit; }

.container{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
}

/* =======================================================================
BIG BELUSHI-STYLE HERO
======================================================================= */
.hero-big{
position: relative;
width: 100%;
min-height: 520px;
display: grid;
place-items: center;
overflow: hidden;
border-bottom: 4px solid rgba(0,0,0,.6);
}
.hero-big__bg{
position:absolute;
inset:0;
background: url("../img/hero3.png") center/cover no-repeat;
transform: scale(1.02);
}
.hero-big__overlay{
position:absolute;
inset:0;
background:
linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.25)),
radial-gradient(900px 500px at 30% 40%, rgba(0,0,0,.35), transparent 60%);
}
.hero-big__inner{
position:relative;
z-index:2;
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
padding: 46px 0;
color:#fff;
}
.hero-big__kicker{
font-size: 18px;
letter-spacing: .18em;
text-transform: uppercase;
opacity: .95;
margin-bottom: 14px;
}
.hero-big__title{
margin: 0 0 10px;
font-size: clamp(40px, 4.2vw, 74px);
line-height: 1.02;
letter-spacing: .10em;
text-transform: uppercase;
}
.hero-big__titleAccent{
display:inline-block;
padding: 4px 10px;
background: #000;
border: 2px solid #fff;
border-radius: 0;
}
.hero-big__sub{
margin: 0 0 18px;
max-width: 720px;
font-size: 16px;
opacity: .92;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
letter-spacing: 0;
text-transform: none;
}
.hero-big__actions{
display:flex;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 16px;
}
.hero-big__cta{
border-radius: 0;
border: 2px solid #000;
background: #fff;
color:#000;
padding: 12px 18px;
font-weight: 900;
cursor:pointer;
box-shadow:none;
}
.hero-big__cta:hover{ background:#f2f2f2; }
.hero-big__cta:active{ transform: translateY(1px); }
.hero-big__cta--ghost{
background: transparent;
color:#fff;
border-color:#fff;
}
.hero-big__cta--ghost:hover{
background:#fff;
color:#000;
}
.hero-big__search{
display:flex;
gap: 10px;
align-items:center;
width: min(720px, 100%);
background: rgba(255,255,255,.92);
border: 1px solid rgba(0,0,0,.25);
padding: 10px;
}
.hero-big__search input{
width: 100%;
border: 0;
outline: 0;
padding: 10px 10px;
font-weight: 700;
background: transparent;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.hero-big__search button{
border-radius: 0;
border: 2px solid #000;
background:#fff;
color:#000;
padding: 10px 14px;
font-weight: 900;
cursor:pointer;
}
.hero-big__search button:hover{ background:#f2f2f2; }
.hero-big__search button:active{ transform: translateY(1px); }

@media (max-width: 820px){
.hero-big{ min-height: 420px; }
.hero-big__inner{ padding: 32px 0; }
.hero-big__kicker{ font-size: 14px; }
.hero-big__sub{ font-size: 14px; }
}

/* =======================================================================
DEALS CONTROLS ROW (BELUSHI SHARP STYLE)
======================================================================= */
.deals-controls{
background: #fff;
border-bottom: 2px solid #000;
}
.deals-controls__inner{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
padding: 14px 0;
display:flex;
align-items:center;
gap: 12px;
flex-wrap: wrap;
}
.bd-group{
display:flex;
gap: 12px;
align-items:center;
flex-wrap: wrap;
}
.bd-btn{
min-width: 140px;
height: 44px;
padding: 0 18px;
border: 2px solid #000;
background: #fff;
color: #000;
font-family: "Anton", sans-serif;
font-size: 14px;
letter-spacing: .10em;
text-transform: uppercase;
border-radius: 0;
cursor: pointer;
box-shadow: none;
display: inline-flex;
align-items: center;
justify-content: center;
line-height: 1;
}
.bd-btn:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.bd-btn:active{ transform: translateY(1px); }
.bd-btn--active{
background: #000;
color:#fff;
border-color:#000;
}
.bd-selectWrap{
display:flex;
align-items:center;
gap: 10px;
margin-left: auto;
}
.bd-label{
font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
font-weight: 900;
font-size: 13px;
}
.bd-select{
height: 44px;
border-radius: 0;
border: 2px solid #000;
background:#fff;
padding: 0 12px;
font-weight: 900;
font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
outline: none;
}
.bd-select:focus{
box-shadow: 0 0 0 3px rgba(225,6,0,.25);
border-color: var(--action-red);
}

/* IMPORTANT: kill any legacy rounded chip style inside deals controls */
.deals-controls .chip{
border-radius: 0 !important;
box-shadow: none !important;
}

@media (max-width: 820px){
.bd-selectWrap{ margin-left: 0; width: 100%; }
.bd-select{ width: 100%; }
}

/* =========================
BELUSHI POSTER CARD
========================= */
.deal--poster{
border: 0;
width: 100%;
background: transparent;
padding: 0;
display: block;
}

/* ✅ remove “empty space” feel: full width, no max-width, consistent edges */
.deal--poster .deal-inner{
width: 100%;
max-width: none;
box-sizing: border-box;

background: #f6f1e9; /* paper */
border: 4px solid #0b0b0b; /* outer black */
outline: 2px solid rgba(0,0,0,.35); /* subtle double-line */
outline-offset: -10px;

padding: 18px 18px 16px;
position: relative;

background-image:
radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px),
radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
background-size: 22px 22px, 34px 34px;
background-position: 0 0, 10px 14px;
}

.deal--poster .deal-top{
display:flex;
align-items:center;
justify-content:space-between;
gap: 12px;
margin-bottom: 12px;
}

/* Status badge */
.deal-status{
display:inline-flex;
align-items:center;
gap: 10px;
border: 3px solid #0b0b0b;
background: transparent;
padding: 8px 12px;
font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
font-size: 16px;
line-height: 1;
}

.deal-status .dot{
width: 16px;
height: 16px;
border-radius: 999px;
border: 2px solid #0b0b0b;
background: #16a34a; /* default = open */
}

.deal-status--open .dot{ background:#16a34a; }
.deal-status--soon .dot{ background:#f59e0b; }
.deal-status--closed .dot{ background:#ef4444; }

/* Title + text */
.deal-title{
margin: 0 0 6px;
font-family: "Anton", sans-serif;
letter-spacing: .06em;
text-transform: uppercase;
font-size: 34px;
line-height: 1.05;
color: #0b0b0b;
}

.deal-when{
font-family: Inter, system-ui, sans-serif;
font-weight: 900;
font-size: 18px;
color: #111;
margin-bottom: 10px;
}

.deal-offer{
font-family: Inter, system-ui, sans-serif;
font-weight: 900;
font-size: 22px;
color: #0b0b0b;
line-height: 1.25;
margin-bottom: 12px;
}

.deal-loc{
display:flex;
align-items:center;
flex-wrap: wrap;
gap: 8px;
font-family: Inter, system-ui, sans-serif;
font-weight: 800;
color: rgba(0,0,0,.72);
font-size: 16px;
margin-bottom: 10px;
}
.deal-loc .pin{ font-size: 18px; }
.deal-loc .sep{ opacity: .6; }
.deal-loc .dist{ color: rgba(0,0,0,.72); }

/* Directions link */
.deal-dir{
display:inline-flex;
align-items:center;
gap: 10px;
font-family: Inter, system-ui, sans-serif;
font-weight: 900;
font-size: 18px;
color: #0b0b0b;
text-decoration:none;
}
.deal-dir:hover{ text-decoration: underline; }

/* VIEW button like Belushi */
.go--poster{
border-radius: 0;
border: 3px solid #0b0b0b;
background: #0b0b0b;
color:#fff;
padding: 12px 18px;
min-width: 110px;
font-family: "Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
box-shadow: none;
}
.go--poster:hover{
background: var(--action-red);
border-color: var(--action-red);
}

@media (max-width: 820px){
.deal-title{ font-size: 28px; }
.deal-offer{ font-size: 18px; }
.deal-status{ font-size: 14px; }
.go--poster{ min-width: 96px; padding: 10px 14px; }
}

/* =======================================================================
NAVBAR (BELUSHI BLACK) + MOBILE BURGER
======================================================================= */
.dark-nav{
position: sticky;
top: 0;
z-index: 1200;
background: var(--nav-black);
border-bottom: 1px solid rgba(255,255,255,.08);
backdrop-filter: blur(6px);
height:88px;
display:flex;
align-items:center;
}
.nav-inner{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
padding: 14px 0;
position: relative;
}
.nav-logo{
justify-self: center;
display:flex;
align-items:center;
justify-content:center;
gap: 0px;
font-size: 30px;
font-weight: 650;
letter-spacing: -0.035em;
color:#ffffff;
text-transform: uppercase;
line-height: 1;
}
.nav-logo,
.go,
.btn,
.bn-item,
.nav-links a,
.action-text,
.action-btn{
font-family: "Anton", sans-serif;
letter-spacing: .08em;
text-transform: uppercase;
}
.logo-strong{ font-weight: 720; opacity: .98; }
.logo-light{ font-weight: 620; opacity: .92; }
.nav-icon{
width: 132px;
height: 132px;
object-fit: contain;
display: block;
margin: 0 2px;
opacity: .96;
}
.nav-links{
justify-self: end;
display:flex;
gap: 20px;
align-items:center;
}
.nav-links a{
color:#fff;
font-weight: 800;
font-size: 16px;
opacity: .9;
padding: 8px 6px;
border-radius: 12px;
}
.nav-links a:hover{
opacity: 1;
text-decoration: underline;
}
.nav-burger{
display:none;
justify-self: end;
width: 44px;
height: 44px;
border: 1px solid rgba(255,255,255,.18);
background: transparent;
border-radius: 0;
cursor:pointer;
padding: 10px;
}
.nav-burger span{
display:block;
height: 2px;
width: 100%;
background: #fff;
margin: 6px 0;
transition: transform .18s ease, opacity .18s ease;
}
.nav-burger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2){ opacity: 0; }
.nav-burger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.mobile-menu{
display:none;
background: #0b0b0b;
border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a{
display:block;
color:#fff;
padding: 14px 16px;
font-size: 16px;
letter-spacing: .10em;
border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:active{ background: rgba(255,255,255,.06); }
.mobile-menu.is-open{ display:block; }

/* =======================================================================
RED ACTION BAR
======================================================================= */
.action-bar{
background: var(--action-red);
border-bottom: 3px solid var(--action-red-dark);
padding: 10px 0;
}
.action-inner{
max-width:1120px;
margin:0 auto;
padding:10px 16px;
display:flex;
align-items:center;
justify-content:space-between;
gap: 12px;
}
.action-text{
color:#fff;
font-weight:900;
font-size:20px;
letter-spacing:.12em;
text-transform:uppercase;
}
.action-btn{
background:#ffffff;
color:#000;
border:2px solid #000;
padding:8px 18px;
font-weight:900;
font-size:13px;
letter-spacing:.08em;
cursor:pointer;
border-radius:0;
box-shadow:none;
min-width: 90px;
text-align:center;
}
.action-btn:hover{ background:#f5f5f5; }
.action-btn:active{ transform: translateY(1px); background:#ededed; }

/* =======================================================================
HOME CATEGORIES (SHARP)
======================================================================= */
.home-top{ margin: 14px 0 10px; display: grid; gap: 12px; }

.home-cats{
display:flex;
gap:10px;
overflow-x:auto;
padding-bottom:8px;
scrollbar-width: none;
}
.home-cats::-webkit-scrollbar{ display:none; }

.home-cat{
flex:0 0 auto;
padding:10px 16px;
border:2px solid #000;
background:#fff;
color:#000;
font-family:"Anton", sans-serif;
font-size:13px;
letter-spacing:.08em;
text-transform:uppercase;
cursor:pointer;
border-radius:0;
box-shadow:none;
white-space:nowrap;
}
.home-cat:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.home-cat.active{ transform: translateY(1px); }

/* =======================================================================
FEATURED (Belushi strip)
======================================================================= */
.home-featured{ margin: 10px 0 16px; }

.home-rowhead{
display:flex;
align-items:baseline;
justify-content:space-between;
gap:12px;
margin:0 0 10px;
}
.home-rowhead h2{
margin:0;
font-family: "Anton", sans-serif;
font-size:26px;
letter-spacing: .12em;
text-transform: uppercase;
color: #000;
border: 2px solid #000;
padding: 10px 14px;
border-radius: 0;
background: #fff;
font-weight: 900;
}

/* If your "See all" is a link in the rowhead, this keeps it Belushi (no blue look) */
.home-rowhead a{
border: 2px solid #000;
padding: 10px 14px;
border-radius: 0;
background: #fff;
font-family: "Anton", sans-serif;
letter-spacing: .12em;
text-transform: uppercase;
font-weight: 900;
color:#000;
text-decoration:none;
}
.home-rowhead a:hover{ color: #fff; border-color: var(--action-red); background: var(--action-red); text-decoration:none; }

.belu-track{
display:flex;
gap: 0;
overflow-x: auto;
border-top: 4px solid #060606;
background: #e10600;
padding: 18px 18px;
scroll-snap-type: x mandatory;
}
.belu-track::-webkit-scrollbar{ height: 8px; }
.belu-track::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.25); }

.featured-card{
flex: 0 0 auto;
width: 380px;
height: 320px;
position: relative;
overflow: hidden;
background: #000;
border-left: 4px solid;
scroll-snap-align: start;
cursor: pointer;
border-radius: 0;
}
.featured-card:first-child{ border-left: 0; }

.featured-img{
position:absolute;
inset:0;
background-size: cover;
background-position: center;
transform: scale(1.02);
}
.featured-img::after{
content:"";
position:absolute;
inset:0;
background: linear-gradient(to top, rgba(0,0,0,.90) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.10) 100%);
}
.featured-body{
position:absolute;
left:0; right:0; bottom:0;
padding: 18px 18px 16px;
background: rgba(0,0,0,.92);
border-top: 4px solid #7a0b0b;
display:flex;
align-items:flex-end;
justify-content: space-between;
gap: 16px;
}
.featured-name{
color:#fff;
font-family:"Anton", sans-serif;
text-transform: uppercase;
letter-spacing: .08em;
font-size: 20px;
line-height: 1.05;
margin:0;
}
.featured-sub{ display:none; }
.featured-pill{ display:none; }

.featured-body::after{
content:"→";
width: 44px;
height: 44px;
display:grid;
place-items:center;
color: var(--action-red);
font-size: 34px;
line-height: 1;
transform: translateY(2px);
}
.featured-card:hover .featured-img{
transform: scale(1.06);
transition: transform .25s ease;
}
.featured-card:hover .featured-body{
background: rgba(0,0,0,.96);
}

.featured-dots{
display:none;
justify-content:center;
gap: 10px;
margin-top: 12px;
}
.featured-dot{
width: 10px;
height: 10px;
border-radius: 999px;
background: rgba(0,0,0,.18);
border: 2px solid rgba(0,0,0,.22);
}
.featured-dot.is-active{
background: var(--action-red);
border-color: var(--action-red);
}

/* =======================================================================
LAYOUT (LIST LEFT, MAP RIGHT) + SHARP
======================================================================= */
.layout{
display:grid;
grid-template-columns: 420px 1fr; /* list fixed | map fill (when map visible) */
gap: 16px;
align-items:start;
width: 100%;
max-width: 1120px;
margin: 0 auto;
padding: 18px 0 18px;
}

/* IMPORTANT for CSS grid so map can shrink properly */
.map-card{ min-width: 0; }

/* SHARP CARDS */
.map-card, .list-card{
border-radius: 0;
border: 2px solid #000;
background:#0a0a0a;
box-shadow:none;
overflow:hidden;
}

/* MAP */
#map{
width: 100%;
height: 620px; /* desktop height */
min-height: 620px; /* prevents “map disappeared” */
}
#map .leaflet-tile-pane{
filter: none;
}

/* ✅ Make sure markers + popups are NOT filtered */
#map .leaflet-marker-pane,
#map .leaflet-shadow-pane,
#map .leaflet-popup-pane{
filter: none !important;
}

/* ✅ Remove Leaflet default marker shadow globally */
.leaflet-marker-shadow,
.leaflet-shadow-pane{
display:none !important;
}

.map-hint{
padding: 12px 14px;
color: var(--card);
font-weight:100;
font-size: small;
border-top: 2px solid #000;
background: #0b0b0b;
}

/* LIST */
.list-card{
height: 620px;
display:flex;
flex-direction: column;
}
.list-head{
display:flex;
align-items: baseline;
justify-content: space-between;
gap: 10px;
padding: 14px 14px 10px;
border-bottom: 2px solid #000;
background:#fafafa;
}
.list-head h2{
margin:0;
font-size: 18px;
font-family:"Anton", sans-serif;
letter-spacing: .10em;
text-transform: uppercase;
}

/* ✅ FIX: muted color was using --bg (too light / wrong) */
.muted{
color: var(--muted);
font-weight: 800;
font-size: 13px;
padding-left: 1px;
}

/* ✅ poster cards should “fill” the list: remove inner padding */
.deal-list{
padding: 12px;
display:flex;
flex-direction: column;
gap: 10px;
flex: 1;
overflow:auto;
}

/* legacy (if you still have any old .deal cards anywhere) */
.deal{
display:flex;
align-items: stretch;
justify-content: space-between;
gap: 12px;
border: 2px solid #000;
background: #fff;
border-radius: 0;
padding: 12px 12px;
box-shadow:none;
}
.deal .meta{ min-width: 0; }
.deal h3{
margin: 2px 0 4px;
font-size: 15px;
letter-spacing: -.01em;
font-weight: 900;
}
.time{
font-weight: 900;
color: rgba(15,23,42,.78);
font-size: 12px;
margin-bottom: 6px;
}
.price{
font-weight: 800;
color: var(--text);
font-size: 13px;
line-height: 1.25;
}
.small{
margin-top: 6px;
color: var(--muted);
font-weight: 700;
font-size: 12px;
}
.go{
flex: 0 0 auto;
border-radius: 0;
border: 2px solid #000;
background: #000;
color:#fff;
font-weight: 900;
padding: 10px 12px;
cursor:pointer;
box-shadow:none;
align-self: center;
}
.go:hover{ background: var(--action-red); border-color: var(--action-red); }
.go:active{ transform: translateY(1px); }

/* =========================
BADGES: FLAT (no shadow/3D)
========================= */
.badge{
display:inline-flex;
align-items:center;
gap: 8px;
padding: 6px 10px;
border: 2px solid #000;
border-radius: 0;
box-shadow:none !important;
background:#fff;
font-weight: 900;
font-size: 12px;
letter-spacing: .08em;
text-transform: uppercase;
}

/* =======================================================================
MOBILE TOGGLE (LIST / MAP) - SHARP
======================================================================= */
.mobile-toggle{ display:none; }

.mt-btn{
min-width: 140px;
height: 44px;
padding: 0 18px;
border: 2px solid #000;
background: #fff;
color: #000;
font-family: "Anton", sans-serif;
font-size: 14px;
letter-spacing: .10em;
text-transform: uppercase;
border-radius: 0;
cursor:pointer;
box-shadow:none;
display:flex;
align-items:center;
justify-content:center;
}
.mt-btn:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.mt-btn:active{ transform: translateY(1px); }

body.mobile-show-list .mt-btn#showListBtn,
body.mobile-show-map .mt-btn#showMapBtn{
background: #000;
color:#fff;
border-color:#000;
}

/* =======================================================================
MODAL
======================================================================= */
.modal{ position: fixed; inset: 0; display:none; z-index: 2000; }
.modal.is-open{ display:block; }
.modal-backdrop{ position:absolute; inset:0; background: rgba(2,6,23,.55); }
.modal-card{
position: relative;
width: min(520px, calc(100% - 24px));
margin: 10vh auto 0;
background: #fff;
border-radius: 20px;
box-shadow: 0 30px 80px rgba(2,6,23,.35);
border: 1px solid rgba(229,231,235,.95);
overflow:hidden;
}
.modal-head{
display:flex;
justify-content: space-between;
align-items:center;
padding: 14px 16px;
border-bottom: 1px solid rgba(229,231,235,.9);
background: rgba(248,250,252,.8);
}
.modal-head h3{ margin:0; font-weight: 900; letter-spacing: -.02em; }
.modal-x{
border:none;
background: rgba(15,23,42,.06);
color: var(--text);
font-weight: 900;
border-radius: 12px;
padding: 8px 10px;
cursor:pointer;
}
.modal-form{
padding: 14px 16px 16px;
display:flex;
flex-direction: column;
gap: 10px;
}
.modal-form label{
display:flex;
flex-direction: column;
gap: 6px;
font-weight: 900;
font-size: 13px;
color: rgba(15,23,42,.86);
}
.modal-form input,
.modal-form textarea{
border: 1px solid rgba(229,231,235,.95);
border-radius: 14px;
padding: 11px 12px;
font-weight: 700;
outline:none;
background: rgba(248,250,252,.8);
}
.modal-form input:focus,
.modal-form textarea:focus{
border-color: rgba(37,99,235,.55);
box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.modal-form .btn{
width: 100%;
padding: 12px 14px;
border-radius: 14px;
}

/* =======================================================================
BOTTOM NAV (MOBILE) ✅ SHARP
======================================================================= */
.bottom-nav{
position:fixed;
left:0; right:0; bottom:0;
background:#fff;
border-top:1px solid #e5e7eb;
display:none;
gap:8px;
padding:10px 12px;
z-index:9999;
}
.bn-item{
flex:1;
border:2px solid #000;
border-radius:0;
background:#fff;
padding:10px 12px;
font-weight:900;
letter-spacing:.08em;
text-transform: uppercase;
box-shadow:none;
}
.bn-item:hover{
background: var(--action-red);
border-color: var(--action-red);
color:#fff;
}
.bn-primary{
border-color:#000;
background:#000;
color:#fff;
}

/* Tap feel */
button, .home-cat, .bn-item, .go { -webkit-tap-highlight-color: transparent; }

/* Leaflet popup font */
.leaflet-popup-content{
margin: 10px 12px;
font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =======================================================================
MAP HIDE BEHIND "MAP" BUTTON (desktop + mobile)
- your JS toggles body class: .desktop-show-map on desktop
======================================================================= */

/* Desktop default: list-only */
@media (min-width: 821px){
body:not(.desktop-show-map) .map-card{ display:none; }
body:not(.desktop-show-map) .layout{ grid-template-columns: 1fr; }

body.desktop-show-map .map-card{ display:block; }
body.desktop-show-map .layout{ grid-template-columns: 420px 1fr; }
}

/* =======================================================================
MOBILE
======================================================================= */
@media (max-width: 820px){
/* collapse layout */
.layout{ grid-template-columns: 1fr; }
#map{ height: 52vh; min-height: 520px; }

.bottom-nav{ display:flex; box-shadow: none; }
body{ padding-bottom: 92px; }

/* Hide desktop links, show burger */
.nav-links{ display:none; }
.nav-burger{ display:block; }

/* ✅ You wanted List/Map toggle NOT to follow you => not sticky */
.mobile-toggle{
display:flex;
gap: 12px;
position: static; /* was sticky before */
z-index: 1100;
background: #fff;
padding: 12px 0;
border-bottom: 2px solid #000;
}

/* show dots on featured */
.featured-dots{ display:flex; }

/* featured strip smaller */
.belu-track{ padding: 14px 12px; }
.featured-card{ width: 280px; height: 230px; }
.featured-name{ font-size: 18px; }
}

/* =======================================================================
BELUSHI-STYLE FOOTER (your <footer class="belu-footer">)
======================================================================= */
.belu-footer{
background:#050707;
color:#fff;
padding: 46px 0;
border-top: 4px solid var(--action-red);

/* ✅ prevents bottom-nav from covering IG/TT at the bottom */
padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 820px){
.belu-footer{
padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
}
}

.belu-footer__inner{
width: min(1120px, calc(100% - 28px));
margin: 0 auto;
display:grid;
grid-template-columns: 1fr 1fr 1fr; /* desktop: links | circle | brand */
align-items:center;
gap: 26px;
}

.belu-footer__col{ min-width: 0; }

.belu-footer__col--left a{
display:block;
font-family:"Anton", sans-serif;
letter-spacing:.08em;
text-transform: uppercase;
font-size: 18px;
padding: 8px 0;
color:#fff;
text-decoration:none;
opacity:.95;
}
.belu-footer__col--left a:hover{ opacity:1; text-decoration: underline; }

.belu-footer__smallLinks{
margin-top: 10px;
display:flex;
flex-direction: column;
gap: 6px;
}
.belu-footer__smallLinks a{
font-family: Inter, system-ui, sans-serif;
text-transform:none;
letter-spacing:0;
font-size: 12px;
opacity:.8;
padding: 0;
}

/* RIGHT: brand/contact/social */
.belu-footer__brand{
font-family:"Anton", sans-serif;
letter-spacing:.10em;
text-transform: uppercase;
font-size: 34px;
margin-bottom: 10px;
}
.belu-footer__contactTitle{
font-family: Inter, system-ui, sans-serif;
font-weight: 800;
opacity:.9;
margin-bottom: 6px;
}
.belu-footer__email{
color:#fff;
font-family: Inter, system-ui, sans-serif;
font-weight: 700;
text-decoration:none;
opacity:.9;
}
.belu-footer__email:hover{ text-decoration: underline; opacity:1; }
.belu-footer__social{
margin-top: 14px;
display:flex;
gap: 10px;
}
.belu-ico{
width: 44px;
height: 44px;
display:grid;
place-items:center;
border: 2px solid rgba(255,255,255,.22);
border-radius: 0;
font-family:"Anton", sans-serif;
letter-spacing:.08em;
color:#fff;
text-decoration:none;
opacity:.92;
}
.belu-ico:hover{
border-color: var(--action-red);
background: var(--action-red);
opacity: 1;
}

/* CENTER: circle CTA (SVG text + photo) */
.belu-circle{
position: relative;
width: 260px;
height: 260px;
display: grid;
place-items: center;
margin: 0 auto;
text-decoration:none;
color: inherit;
}
.belu-circle__svg{
position:absolute;
inset:0;
width:100%;
height:100%;
z-index: 2;
pointer-events:none;
animation: beluSpin 10s linear infinite;
}
.belu-circle__text{
fill:#fff;
font-family:"Anton", sans-serif;
letter-spacing:.14em;
font-size: 14px;
text-transform: uppercase;
}
@keyframes beluSpin{
from{ transform: rotate(0deg); }
to{ transform: rotate(360deg); }
}

.belu-circle__core{
width: 170px;
height: 170px;
border-radius: 50%;
overflow: hidden;
position: relative;
z-index: 1;
border: 2px solid rgba(255,255,255,.25);
background: #000;
}

.belu-circle__photo{
width:100%;
height:100%;
position: relative;
background: url("../logo/logo.png") center/cover no-repeat; /* ✅ your image */
}
.belu-circle__photo::after{
content:"";
position:absolute;
inset:0;
background: radial-gradient(circle, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}

/* MOBILE footer layout */
@media (max-width: 820px){
.belu-footer__inner{
display:flex;
flex-direction: column;
gap: 36px;
}
.belu-footer__col--left{
order: 1;
width: 100%;
text-align:left;
}
.belu-footer__col--center{
order: 2;
width: 100%;
display:flex;
justify-content:center;
align-items:center;
}
.belu-footer__col--right{
order: 3;
width: 100%;
text-align:left;
}
}

bd-user-pulse{
width: 28px;
height: 28px;
border-radius: 50%;
background: rgba(225,6,0,.25);
display: grid;
place-items: center;
animation: userPulse 1.6s infinite;
}

.bd-user-core{
width: 14px;
height: 14px;
background: #fff;
border: 3px solid #e10600;
border-radius: 50%;
}

@keyframes userPulse{
0%{ transform: scale(.9); opacity: .9; }
70%{ transform: scale(1.6); opacity: 0; }
100%{ opacity: 0; }
}
