/* Layout kontenera */
.store-locator {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin: 20px 0;
  flex-wrap: wrap;
  position: relative;
}

/* Sidebar z listą sklepów */
.store-locator__sidebar {
  flex: 0 0 320px;
  max-width: 100%;
  border: 1px solid #e3e3e3;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #ffffff;
}

/* Select miast */
.store-locator__filter-city {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
  font-size: 14px;
}

/* Wyszukiwarka */
.store-locator__search {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Lista sklepów */
.store-locator__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 450px;
  overflow-y: auto;
}

.store-locator__item {
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
  margin-bottom: 8px;
  background: #fff;
}

.store-locator__item:hover {
  background: #f9fbff;
  border-color: #d0dcff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.store-locator__item-title {
  font-weight: 600;
  margin-bottom: 3px;
  color: #222;
}

.store-locator__item-meta {
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 8px;
  margin-bottom: 3px;
  flex-wrap: wrap;
  align-items: center;
}

.store-locator__item-address {
  font-size: 13px;
  color: #555;
}

/* Mapa */
.store-locator__map-wrapper {
  flex: 1 1 300px;
  min-width: 260px;
  position: relative;
}

.store-locator__map {
  width: 100%;
  height: 500px;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
}

/* KARTA SKLEPU */
.store-locator__shop-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border-radius: 18px;
  padding: 0;
  width: 340px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  display: none;
  animation: shopCardSlideUp 0.25s ease-out;
  z-index: 5000;
}

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

.store-shop-card__inner {
  padding: 18px 20px 16px;
}

.store-shop-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding-right: 10px;
  position: relative;
}

.store-shop-card__header h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.shop-city {
  font-size: 13px;
  color: #6b7280;
}

/* Status Otwarte/Zamknięte */
.shop-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.shop-status-pill--open {
  background: #ecfdf5;
  color: #16a34a;
}

.shop-status-pill--closed {
  background: #fef2f2;
  color: #b91c1c;
}

.store-shop-card__row {
  margin: 10px 0;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  align-items: center;
}

.store-shop-card__row i {
  width: 18px;
  color: #4b5563;
  text-align: center;
}

#shop-phone {
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
}

.store-shop-card__btn {
  margin-top: 10px;
  background: #111827;
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.store-shop-card__btn:hover {
  background: #0f172a;
  color: #fff;
}

.store-shop-card__close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* Mobile */
@media (max-width: 768px) {
  .store-locator {
    flex-direction: column;
  }

  .store-locator__sidebar {
    order: 2;
    width: 100%;
  }

  .store-locator__map-wrapper {
    order: 1;
    width: 100%;
  }

  .store-locator__map {
    height: 350px;
  }

  .store-locator__shop-card {
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
  }
}

/* Badge w liście */
.store-locator__item .shop-status-pill {
  margin-left: auto;
}
