/* ================================================================
   TRANG CỬA HÀNG — layout 2 cột: list trái + Leaflet map phải
================================================================ */

/* ---------- BANNER TOP ---------- */
.store-banner {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  padding: 80px 0 60px;
  min-height: 220px;
}
.store-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.4), rgba(0,0,0,.7));
}
.store-banner .vlb-inner {
  position: relative; z-index: 1;
  max-width: 1000px; text-align: center; margin: 0 auto;
}
.store-banner .vlb-breadcrumb { font-size: 14px; margin-bottom: 12px; color: #ddd; }
.store-banner .vlb-breadcrumb a { color: #ddd; text-decoration: none; }
.store-banner .vlb-breadcrumb a:hover { color: #ff2626; }
.store-banner .vlb-breadcrumb span { margin: 0 6px; color: #888; }
.store-banner .vlb-breadcrumb strong { color: #ff2626; }
.store-banner .vlb-title {
  font-size: 36px; margin: 0 0 12px; text-transform: uppercase; line-height: 1.2;
}
.store-banner .vlb-meta { font-size: 14px; color: #ccc; }
.store-banner .vlb-count {
  color: #ff2626; font-weight: 700; font-size: 22px; margin-right: 6px;
}

/* ---------- MAIN SECTION ---------- */
.store-section { padding: 40px 0 60px; }
.store-section > .container-fluid { max-width: 1400px; margin: 0 auto; }

.store-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: stretch;
}

/* ---------- LEFT: LIST ---------- */
.store-list {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 18px;
  max-height: 700px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.store-list::-webkit-scrollbar { width: 6px; }
.store-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.store-list-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #121212;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff2626;
}

.store-item {
  display: flex;
  gap: 12px;
  padding: 14px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all .2s;
}
.store-item:hover {
  background: #fafafa;
  border-color: #eee;
}
.store-item.active {
  background: #fff5f5;
  border-color: #ff2626;
  box-shadow: 0 2px 8px rgba(255,38,38,.15);
}

.store-item-marker {
  position: relative;
  width: 32px; height: 42px;
  flex-shrink: 0;
}
.store-item-marker i {
  font-size: 32px;
  color: #ff2626;
  position: absolute;
  inset: 0;
}
.store-item-marker .store-item-num {
  position: absolute;
  top: 6px;
  left: 0; right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.store-item-body { flex: 1 1 auto; min-width: 0; }
.store-item-name {
  font-size: 15px;
  text-transform: uppercase;
  color: #121212;
  margin: 0 0 6px;
  line-height: 1.3;
}
.store-item.active .store-item-name { color: #ff2626; }
.store-item-meta {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  margin-bottom: 4px;
}
.store-item-meta i {
  color: #ff2626;
  width: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 12px;
}
.store-item-meta:last-child { margin-bottom: 0; }

/* ---------- RIGHT: MAP (iframe Google Maps) ---------- */
.store-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  min-height: 700px;
  background: #f3f3f3;
}
.store-map {
  width: 100%;
  height: 100%;
  min-height: 700px;
  border: 0;
  display: block;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .store-grid { grid-template-columns: 1fr; gap: 16px; }
  .store-list { max-height: 480px; }
  .store-map-wrap { min-height: 500px; }
  .store-map { min-height: 500px; }
}
@media (max-width: 600px) {
  .store-banner { padding: 50px 16px 40px; min-height: 180px; }
  .store-banner .vlb-title { font-size: 24px; }
  .store-section { padding-left: 16px; padding-right: 16px; }
  .store-list { max-height: 380px; padding: 14px; }
  .store-item { padding: 10px; gap: 10px; }
  .store-item-name { font-size: 14px; }
  .store-map-wrap { min-height: 420px; }
  .store-map { min-height: 420px; }
}
