
:root{
  --bg: #fff7f8;
  --card: #ffffff;
  --accent: #c94457;
  --muted: #666b75;
  --glass: rgba(255,255,255,0.7);
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;margin:0;background:linear-gradient(180deg,#fff,#fff7f8);color:#222}
.container{max-width:1000px;margin:24px auto;padding:18px}
header{margin-bottom:12px}
header h1{margin:0 0 6px;font-size:1.4rem;font-weight:600;color:#2b2b2b}
.lead{margin:0 0 14px;color:var(--muted);font-size:0.98rem}
.controls{display:flex;gap:16px;align-items:start}
.left{width:340px;background:var(--card);padding:14px;border-radius:12px;box-shadow:0 8px 28px rgba(178,58,72,0.06)}
.right{flex:1}
.map{height:460px;border-radius:12px;overflow:hidden;box-shadow:0 8px 28px rgba(0,0,0,0.06)}
.row{display:flex;gap:8px;align-items:center;margin-bottom:10px}
.row input[type="text"], .row input[type="range"], .row input[type="search"], .row select, .row input[type="email"]{flex:1;padding:10px;border-radius:10px;border:1px solid #f0e8e9;background:var(--glass)}
button.primary{background:var(--accent);color:#fff;border:0;padding:12px 16px;border-radius:12px;cursor:pointer;font-weight:700}
button{font:inherit}
.categories{display:flex;flex-wrap:wrap;gap:8px}
.categories label{flex:0 0 50%;font-size:0.95rem}
.status{padding:8px 10px;border-radius:10px;background:#fff;border:1px solid #fff;color:var(--muted);font-size:0.95rem}
.results{margin-top:18px;background:var(--card);padding:12px;border-radius:12px;box-shadow:0 6px 16px rgba(0,0,0,0.04)}
#resultsList{list-style:none;padding:0;margin:8px 0 0}
#resultsList li{padding:12px;border-bottom:1px solid #fbf0f2;display:flex;justify-content:space-between;gap:12px;align-items:center}
#resultsList li:last-child{border-bottom:0}
.place-title{font-weight:700}
.place-meta{color:var(--muted);font-size:0.92rem}
.small-btn{background:#fff;border:1px solid #f0e8e9;padding:8px;border-radius:8px;cursor:pointer}
footer{margin-top:12px;color:var(--muted);font-size:0.85rem}

@media (max-width:900px){
  .controls{flex-direction:column}
  .left{width:100%}
  .map{height:320px}
}

.leaflet-popup-content-wrapper{border-radius:10px}

details.more-cats summary{cursor:pointer;padding:6px 8px;border-radius:8px;border:1px solid #f0e8e9;background:var(--glass);font-weight:600}
details.more-cats[open] summary{background:#fff}

/* Icon styles */
.cat-icon{vertical-align:middle;fill:currentColor;margin-right:8px;opacity:0.95}
.icon{vertical-align:middle;fill:currentColor;margin-right:10px;display:inline-block}


