/* TWL Franchise Map — Frontend */
#twl-franchise-widget {
    display: flex;
    height: 580px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    direction: rtl;
}

#twl-fm-panel {
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e5e5;
    background: #fff;
}

#twl-fm-search-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-bottom: 1px solid #ebebeb;
    flex-shrink: 0;
}

#twl-fm-back-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; flex-shrink: 0;
    background: #fff; border: 1px solid #d0d0d0; border-radius: 4px;
    cursor: pointer; color: #111; transition: background 0.15s; padding: 0;
}
#twl-fm-back-btn:hover { background: #f5f5f5; }
#twl-fm-back-btn svg   { width: 14px; height: 14px; display: block; }

#twl-fm-search-input {
    flex: 1; height: 38px; padding: 0 12px;
    border: 1px solid #d0d0d0; border-radius: 4px;
    font-size: 14px; direction: rtl; outline: none;
    color: #111; font-family: inherit;
}
#twl-fm-search-input::placeholder { color: #aaa; }
#twl-fm-search-input:focus { border-color: #999; }

#twl-fm-list { flex: 1; overflow-y: auto; scroll-behavior: smooth; }
#twl-fm-list::-webkit-scrollbar { width: 4px; }
#twl-fm-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

#twl-fm-no-results { padding: 40px 20px; text-align: center; color: #aaa; font-size: 14px; display: none; }

/* ── Card ── */
.twl-fm-card {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px 14px; border-bottom: 1px solid #f0f0f0;
    cursor: pointer; transition: background 0.15s;
}
.twl-fm-card:hover  { background: #fafafa; }
.twl-fm-card.active { background: #f3f6ff; }

.twl-fm-card-pin { flex-shrink: 0; margin-top: 2px; width: 27px; }
.twl-fm-card-pin svg { display: block; }

.twl-fm-card-info { flex: 1; min-width: 0; }
.twl-fm-card-name { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 8px; line-height: 1.3; }

.twl-fm-card-row {
    display: flex; align-items: flex-start; gap: 6px;
    margin-bottom: 5px; font-size: 13px; color: #444; line-height: 1.4;
}
.twl-fm-card-row:last-child { margin-bottom: 0; }
.twl-fm-card-row svg { flex-shrink: 0; margin-top: 1px; width: 16px; height: 16px; }

/* ── Map ── */
#twl-fm-map { flex: 1; }

.leaflet-popup-content-wrapper { border-radius: 8px !important; }
.leaflet-popup-content {
    direction: rtl; text-align: right; min-width: 200px;
    margin: 14px 16px !important;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.twl-fm-popup-name { font-weight: 700; font-size: 14px; margin-bottom: 8px; color: #111; }
.twl-fm-popup-row  { font-size: 12px; color: #555; margin-bottom: 5px; display: flex; gap: 6px; align-items: flex-start; }
.twl-fm-popup-row:last-child { margin-bottom: 0; }
.twl-fm-popup-row svg { flex-shrink: 0; margin-top: 1px; width: 14px; height: 14px; }

/* ── Mobile ── */
@media (max-width: 700px) {
    #twl-franchise-widget { flex-direction: column; height: auto; border-radius: 0; }
    #twl-fm-map    { height: 280px; flex: none; order: -1; }
    #twl-fm-panel  { width: 100%; min-width: 0; border-left: none; border-top: 1px solid #e5e5e5; height: 400px; }
}
