body.scg-warehouse-locator-page .scg-content-box {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.scg-warehouse-locator {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.scg-warehouse-locator__shell {
  position: relative;
  min-height: 680px;
}

.scg-warehouse-locator__sidebar {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 500;
  width: min(340px, calc(100% - 40px));
  max-height: calc(100% - 40px);
  min-width: 0;
  pointer-events: none;
}

.scg-warehouse-locator__panel {
  height: 100%;
  max-height: calc(680px - 40px);
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid #dbe3eb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(16, 37, 68, 0.12);
  pointer-events: auto;
}

.scg-warehouse-locator__title {
  margin: 0 0 10px;
  color: #102544;
  font-size: 28px;
  line-height: 1.25;
}

.scg-warehouse-locator__intro {
  margin: 0 0 20px;
  color: #55657f;
  font-size: 14px;
  line-height: 1.6;
}

.scg-warehouse-locator__filters {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.scg-warehouse-locator__field {
  display: grid;
  gap: 6px;
}

.scg-warehouse-locator__field span {
  color: #102544;
  font-size: 13px;
  font-weight: 700;
}

.scg-warehouse-locator__select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d2dbe6;
  border-radius: 16px;
  background: #fff;
  color: #102544;
  font-size: 14px;
}

.scg-warehouse-locator__results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #102544;
  font-size: 15px;
}

.scg-warehouse-locator__count {
  color: #ed1b24;
  font-weight: 700;
}

.scg-warehouse-locator__results {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    gap: 10px;
    padding-right: 4px;
    overflow-y: auto;
    overflow-x: hidden;
}

.scg-warehouse-locator__result {
  width: 100%;
  padding: 14px 14px 13px;
  border: 1px solid #d8e0ea;
  border-radius: 18px;
  background: #fff;
  text-align: left;
  display: grid;
  gap: 6px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.scg-warehouse-locator__result:hover,
.scg-warehouse-locator__result.is-active {
  border-color: var(--primary-color);
  box-shadow: 0 18px 30px rgba(16, 37, 68, 0.08);
  transform: translateY(-1px);
}

.scg-warehouse-locator__result-title {
  color: #102544;
  line-height: 1.45;
  font-weight: 700;
}

.scg-warehouse-locator__result-meta,
.scg-warehouse-locator__result-detail {
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
}

.scg-warehouse-locator__result-address {
  color: #384860;
  font-size: 13px;
  line-height: 1.6;
}

.scg-warehouse-locator__empty {
  padding: 18px 16px;
  border: 1px dashed #d8e0ea;
  border-radius: 18px;
  color: #55657f;
  font-size: 13px;
  line-height: 1.6;
}

.scg-warehouse-locator__map-wrap {
  position: relative;
  min-width: 0;
  min-height: 680px;
}

.scg-warehouse-locator__map {
  width: 100%;
  min-height: 680px;
  border-radius: 28px;
  overflow: hidden;
}

.scg-warehouse-locator__map .leaflet-popup-content {
  margin: 12px 14px;
  color: #102544;
  font-size: 13px;
  line-height: 1.6;
}

.scg-warehouse-locator__map .leaflet-popup-content a {
  color: var(--primary-color);
  font-weight: 700;
}

@media (max-width: 1199px) {
  .scg-warehouse-locator__title {
    font-size: 24px;
  }
}

@media (max-width: 960px) {
  .scg-warehouse-locator__shell {
    display: grid;
    gap: 20px;
    min-height: 0;
  }

  .scg-warehouse-locator__shell {
    grid-template-columns: 1fr;
  }

  .scg-warehouse-locator__sidebar {
    position: static;
    width: 100%;
    max-height: none;
    pointer-events: auto;
  }

  .scg-warehouse-locator__panel {
    max-height: none;
    box-shadow: none;
  }

  .scg-warehouse-locator__results {
    max-height: 320px;
  }

  .scg-warehouse-locator__map-wrap {
    min-height: 0;
  }

  .scg-warehouse-locator__map {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  .scg-warehouse-locator {
    width: 100%;
  }

  .scg-warehouse-locator__panel {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .scg-warehouse-locator__title {
    font-size: 22px;
  }

  .scg-warehouse-locator__map {
    min-height: 380px;
    border-radius: 20px;
  }

}
